@charset "utf-8";
/* CSS Document */

/* ============================================
   FONT IMPORTS
   ============================================ */
@import url('font.css');

/* ============================================
   SCROLLBAR STYLES
   ============================================ */

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

/* ============================================
   GLOBAL STYLES - NEW BRAND FONTS
   ============================================ */

html, body {
    margin: 0;
    padding: 60px 0 0 0;
    height: 100%;
    font-size: 14px;
    color: #000;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Headings - Roxborough CF (serif display font) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roxborough CF', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    margin: 0;
    padding: 0 0 20px 0;
    font-weight: 800;
    font-size: 2.5rem;
    font-family: 'Roxborough CF', serif;
}

h2 {
    margin: 0;
    color: #000;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Roxborough CF', serif;
}

h2 a:link, h2 a:visited {
    color: #2E2D2D;
    font-family: 'Roxborough CF', serif;
    font-size: 100%;
    text-decoration: none;
}

h2 a:hover {
    color: #A10305;
    font-family: 'Roxborough CF', serif;
    font-size: 100%;
    line-height: .95;
    text-decoration: none;
}

footer h2 {
    color: white;
}

h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    font-family: 'Roxborough CF', serif;
}

h4 {
    margin: 0px;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: 'Roxborough CF', serif;
}

h5 {
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Roxborough CF', serif;
}

h6 {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Roxborough CF', serif;
}

h7 {
    display: grid;
    width: 100%;
    align-items: center;
    text-align: center;
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    grid-gap: 80px;
    font-size: 20px;
    padding: 40px 0 40px 0;
    font-family: 'Roxborough CF', serif;
}

h7:before,
h7:after {
    content: '';
    border-top: 2px solid #DF0000;
}

/* Paragraphs and body text - Montserrat */
p, a, li, span, div, label, input, textarea, select, button {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

p {

    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 30px 0;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

/* Strong, bold elements */
strong, b {
    font-weight: 700;
}

/* Light text */
.light-text {
    font-weight: 300;
}

/* ============================================
   TEST CLASS
   ============================================ */

.test:after {
    content: '\2807';
    margin: 0;
    color: white;
    font-weight: bold;
}

.heeder {
	font-family: 'Roxborough CF', serif !important;
	color: #7c2a37;
}

/* ============================================
   LINK STYLES
   ============================================ */

.linkhref {
    background-color: #D80407;
    padding: 8px;
    text-decoration: none;
    color: white !important;
    border-radius: 2px;
    min-width: 150px !important;
    margin: 5px 0 5px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.col div ul li a:link, 
.col div ul li a:visited {
    color: #BB181B;
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
}

.col div ul li a:hover {
    color: #7B7B7B;
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
}

a.career-link:link, 
a.career-link:visited {
    color: #BB181B;
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
}

a.career-link:hover {
    color: black;
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
}

/* ============================================
   TO TOP BUTTON
   ============================================ */

#toTop {
    padding: 5px 3px;
    color: #fff;
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: none;
    z-index: 99999999999999999;
    cursor: pointer;
}

/* ============================================
   SPACING UTILITIES
   ============================================ */

.spacing {
    line-height: 1;
    letter-spacing: -0.03em;
}

.line-height {
    margin: 0px;
    line-height: 1;
    letter-spacing: -0.09em;
}

.align-mid {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
}

/* ============================================
   BOX SIZING & FOCUS
   ============================================ */

*:focus {
    outline: none;
}

* {
    box-sizing: border-box;
    pointer-events: auto;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid red;
}

.halloweenBat {
    z-index: 99999999999999999;
}

/* ============================================
   COLOR ANIMATION
   ============================================ */

#quotes {
    -webkit-animation: color-change 1.5s infinite;
    -moz-animation: color-change 1.5s infinite;
    -o-animation: color-change 1.5s infinite;
    -ms-animation: color-change 1.5s infinite;
    animation: color-change 1.5s infinite;
}

@-webkit-keyframes color-change {
    0% { color: white; }
    50% { color: black; }
    100% { color: grey; }
}
@-moz-keyframes color-change {
    0% { color: white; }
    50% { color: black; }
    100% { color: grey; }
}
@-ms-keyframes color-change {
    0% { color: white; }
    50% { color: black; }
    100% { color: grey; }
}
@-o-keyframes color-change {
    0% { color: white; }
    50% { color: black; }
    100% { color: grey; }
}
@keyframes color-change {
    0% { color: white; }
    50% { color: black; }
    100% { color: grey; }
}

/* ============================================
   ICON STYLES
   ============================================ */

.icon-name {
    background-image: url(https://www.bypeterandpauls.com/images/icon/name.png);
    background-repeat: no-repeat;
    background-position: 2px 3px;
    text-indent: 25px;
}

.icon-email {
    background-image: url(https://www.bypeterandpauls.com/images/icon/email.png);
    background-repeat: no-repeat;
    background-position: 2px 3px;
    text-indent: 25px;
}

.icon-tel {
    background-image: url(https://www.bypeterandpauls.com/images/icon/tel.png);
    background-repeat: no-repeat;
    background-position: 2px 3px;
    text-indent: 25px;
}

i {
    font-size: 80%;
    color: #676767;
}

/* ============================================
   ICON BAR
   ============================================ */

.icon-bar {
    margin-top: 60px;
    background-color: #f3f3f3;
    position: fixed;
    z-index: 999;
}

.icon-bar a:link, 
.icon-bar a:visited {
    display: block;
    text-align: center;
    padding: 11px;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
}

.icon-bar span {
    text-align: center;
    color: white;
    font-size: 16px;
    margin: 0px;
}

.icon-bar a:hover {
    background-color: #dedede;
}

.icon-bar i {
    color: black;
}

.active {
    background-color: #f00 !important;
}

.active i {
    color: white !important;
}

/* ============================================
   BRUNCH STYLES
   ============================================ */

.brunch {
    counter-reset: my-badass-counter;
}

.brunch dt {
    position: relative;
    font: bold 16px 'Montserrat', sans-serif;
    padding: 4px 0 3px 0;
    color: #9B9B9B;
    color: #b70909;
    line-height: .95;
}

.brunch dt:before {
    content: counter(my-badass-counter);
    counter-increment: my-badass-counter;
    position: absolute;
    left: 0;
    top: 0;
    font: bold 40px/1 'Roxborough CF', serif;
    color: #ccc;
}

.brunch dd {
    margin: 0 0 20px 0;
    line-height: .95;
}

.brunch dt, 
.brunch dd {
    padding-left: 55px;
}

/* ============================================
   PARALLELOGRAM
   ============================================ */

#parallelogram {
    width: 350px;
    height: 559px;
    margin-left: 850px;
    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
    background: black;
    color: #000;
    text-align: center;
    position: absolute;
    z-index: 2;
}

#banner-image {
    padding: 0px;
    width: 1000px;
    height: 559px;
    background-color: #000000;
}

/* ============================================
   THUMBNAILS
   ============================================ */

.thumb {
    width: 200px;
    height: 200px;
    background-position: center 10%;
    filter: grayscale(100%);
    background-size: cover;
    box-sizing: border-box;
}

.thumb:hover {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    filter: grayscale(0%);
}

/* ============================================
   TABLE CONTAINER
   ============================================ */

.table-container {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.table-row {
    display: table-row;
}

.table-column {
    display: table-cell;
    width: 100%;
    padding: 5px 20px 0 20px;
    box-sizing: border-box;
}

/* ============================================
   ITEM HOVER EFFECTS
   ============================================ */

.item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.item:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: grayscale(100%);
}

.item-gallery {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item-gallery img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.item-gallery:hover img {
    filter: grayscale(0%);
}

/* ============================================
   NEW GALLERY
   ============================================ */

@keyframes greyscale-fade-in {
    0% { -webkit-filter: grayscale(100%); }
    100% { -webkit-filter: grayscale(0%); }
}

@keyframes greyscale-fade-out {
    100% { -webkit-filter: grayscale(100%); }
    0% { -webkit-filter: grayscale(0%); }
}

.thumbnails img {
    width: 100%;
    box-sizing: border-box;
}

.thumbnails {
    animation: greyscale-fade-in 1.5s ease-in forwards;
}

.thumbnails div:hover {
    animation: greyscale-fade-out 0.3s ease-in forwards;
}

.img-container {
    background-repeat: no-repeat;
    background-size: cover;
    transition: border 0.3s linear;
    box-sizing: border-box;
    border-collapse: collapse;
    display: inline-table;
}

/* ============================================
   VENUE HEADERS
   ============================================ */

#venue-header-banner {
    background-color: #eeeeef;
    text-align: center;
    padding: 52px;
    color: black;
    font-size: 110%;
}

#venue-header {
    background-color: #363636;
    text-align: left;
    padding-left: 147px;
    height: 150px;
}

/* ============================================
   EVENTS
   ============================================ */

#events select {
    width: 100%;
    padding: 20px;
    font-size: 130%;
}

.social-logo {
    font-size: 500%;
}

.instalink {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table, td, th {
    border: 1px solid black;
    padding: 20px;
    vertical-align: top;
    color: white;
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

td {
    width: 14.28%;
}

#datecell {
    background: rgba(0, 0, 0, 0.6);
}

#calnav {
    margin-bottom: 5px;
}

#calnav td, th {
    border: none;
    background: rgba(0, 0, 0, 0.6);
}

#cal-num-date {
    font-weight: bold;
    font-size: 150%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    color: white;
}

#cal-num-date a:link, 
#cal-num-date a:visited {
    font-weight: bold;
    font-size: 150%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
    color: white;
}

#cal-num-date a:hover {
    font-weight: bold;
    font-size: 150%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
    color: black;
}

#calevent-link {
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
}

#calevent-link a:link, 
#calevent-link a:visited {
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
    color: black;
}

#calevent-link a:hover {
    font-weight: bold;
    font-size: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
    color: white;
}

.prev-next {
    font-size: 7em;
    color: white;
}

/* ============================================
   CAREER STYLES
   ============================================ */

.career-title {
    font-family: 'Roxborough CF', serif;
    font-weight: bold;
    font-size: 180%;
    color: black;
}

.package-links a:link, 
.package-links a:visited {
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    text-decoration: none;
}

.package-links a:hover {
    color: grey;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    text-decoration: none;
}

.team-name {
    color: black;
    font-family: 'Roxborough CF', serif;
    font-size: 18px;
    line-height: 1.5;
    text-decoration: none;
}

.team-href {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    text-decoration: none;
}

.team-title {
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    text-decoration: none;
}

.team-quote {
    color: grey;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    text-decoration: none;
    font-style: italic;
}

.team-bio {
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    text-decoration: none;
    display: none;
    text-align: left;
}

.job {
    display: none;
}

#career-video {
    padding-right: 5px;
}

.carreer {
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
}

/* ============================================
   BACKGROUNDS
   ============================================ */

.bg2023-faded {
    /* background-image: url('images/made-with-love-wallpaper-white-fade.webp'); */
    background-repeat: repeat-x;
}

.bg2023-black-faded {
    /* background-image: url('images/made-with-love-wallpaper-black-faded.webp'); */
    background-repeat: repeat-x;
}

.bg2023-white {
    /* background-image: url('images/made-with-love-wallpaper-white.webp'); */
    background-repeat: repeat-x;
}

/* ============================================
   CHEVRON STYLES
   ============================================ */

.chevron-venue {
    text-align: center;
    padding: 12px;
    height: 60px;
    width: 150px;
}

.chevron-venue:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    height: 100%;
    width: 50.5%;
    background: #e3e3e3;
    -webkit-transform: skew(0deg, 9deg);
    -moz-transform: skew(0deg, 9deg);
    -ms-transform: skew(0deg, 9deg);
    -o-transform: skew(0deg, 9deg);
    transform: skew(0deg, 9deg);
}

.chevron-venue:after {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    height: 100%;
    width: 50%;
    background: #e3e3e3;
    -webkit-transform: skew(0deg, -9deg);
    -moz-transform: skew(0deg, -9deg);
    -ms-transform: skew(0deg, -9deg);
    -o-transform: skew(0deg, -9deg);
    transform: skew(0deg, -9deg);
}

.chevron {
    text-align: center;
    padding: 12px;
    height: 60px;
    width: 150px;
}

.chevron:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    height: 100%;
    width: 50.5%;
    background: red;
    -webkit-transform: skew(0deg, 9deg);
    -moz-transform: skew(0deg, 9deg);
    -ms-transform: skew(0deg, 9deg);
    -o-transform: skew(0deg, 9deg);
    transform: skew(0deg, 9deg);
}

.chevron:after {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    height: 100%;
    width: 50%;
    background: red;
    -webkit-transform: skew(0deg, -9deg);
    -moz-transform: skew(0deg, -9deg);
    -ms-transform: skew(0deg, -9deg);
    -o-transform: skew(0deg, -9deg);
    transform: skew(0deg, -9deg);
}

/* ============================================
   SPECIAL DIV
   ============================================ */

.special-div {
    width: 275px;
    height: 60px;
    background-color: #000;
    font-size: 100%;
    color: white;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 99998;
    padding: 10px;
}

.special-div-pnp {
    height: 60px;
    background-color: #000;
    font-size: 100%;
    color: white;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 99998;
    padding: 10px;
}

.special-word {
    position: absolute;
    top: 0;
    color: black;
    z-index: 99999;
    padding: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 90%;
}

.special-title {
    font: bold 5em 'Roxborough CF', serif;
    line-height: 1.5;
    color: black;
}

.special-mini-title {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    color: black;
}

/* ============================================
   CIRCLE SHAPE
   ============================================ */

#circle-shape {
    margin: 2rem;
}

#circle-shape .curve {
    float: left;
    margin-right: 2rem;
    border-radius: 50%;
    -webkit-shape-outside: circle();
    shape-outside: circle();
}

/* ============================================
   CAPTION BOX
   ============================================ */

.caption-box {
    padding: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.7);
}

.caption-box span {
    color: black;
    font-size: 20px;
    letter-spacing: -1px;
    font-family: 'Roxborough CF', serif;
}

/* ============================================
   VENUE FADE
   ============================================ */

.venue-fade {
    transition: background .25s ease-in-out;
    -moz-transition: background .25s ease-in-out;
    -webkit-transition: background .25s ease-in-out;
}

.venue-fade :hover {
    background: #ddd;
}

/* ============================================
   VENUE CONTAINERS
   ============================================ */

.container-venue-left {
    position: relative;
    width: 50%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-left {
    position: absolute;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: #000;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.container-venue-left:hover .overlay-left {
    width: 100%;
    left: 0;
}

.container-venue-top {
    position: relative;
    width: 50%;
}

.overlay-top {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.container-venue-top:hover .overlay-top {
    bottom: 0;
    height: 100%;
}

.text {
    white-space: nowrap;
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 350%;
    font-family: 'Roxborough CF', serif;
}

.logo-venue {
    white-space: nowrap;
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.venue-image {
    /* display: inline-block; */
}

.center-vert-horz {
    display: block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.venue-image img {
    vertical-align: middle;
    width: 100%;
}

.container-venue-right {
    position: relative;
    width: 50%;
}

.overlay-right {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.container-venue-right:hover .overlay-right {
    width: 100%;
}

#triangle-topright {
    width: 0;
    height: 0;
    border-top: 100px solid red;
    border-left: 100px solid transparent;
    top: 0;
    right: 0;
}

.content {
    margin: 0 auto;
}

/* ============================================
   LISTS
   ============================================ */

ol li {
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */

.fullscreen-history-bg {
    margin-top: -400px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    padding: 0;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 767px) {
    .fullscreen-bg {
        background: url('./images/tour-bg.jpg') center center / cover no-repeat;
    }
    .fullscreen-bg__video {
        display: none;
    }
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

#otherfield {
    border-left: none;
}

select {
    -webkit-appearance: none;
    width: auto;
    box-sizing: border-box;
    padding: 15px;
    border: solid 1px #E7E7E7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 120%;
    margin-bottom: 5px;
}

input[type="date"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12.5px;
    border: solid 1px #E7E7E7;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    margin-bottom: 5px;
}

input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: solid 1px #E7E7E7;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    margin-bottom: 5px;
}

input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: solid 1px #E7E7E7;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    margin-bottom: 5px;
}

input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: solid 1px #E7E7E7;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    margin-bottom: 5px;
}

input[type="Submit"] {
    box-sizing: border-box;
    padding: 15px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
}

input[type="button"] {
    box-sizing: border-box;
    padding: 15px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
}

textarea {
    box-sizing: border-box;
    padding: 15px;
    width: 100%;
    resize: none;
    border: solid 1px #E7E7E7;
    font-size: 120%;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   SHADOWS
   ============================================ */

.shadow {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    -webkit-transition: background-color 0.6s;
    -moz-transition: background-color 0.6s;
    transition: background-color 0.6s;
}

div.border-collapse {
    box-shadow: 2px 0 0 0 #e4e4e4, 0 2px 0 0 #e4e4e4, 2px 2px 0 0 #e4e4e4, 2px 0 0 0 #e4e4e4 inset, 0 2px 0 0 #e4e4e4 inset;
}

.text-shadow {
    text-shadow: .7px 0px #333;
}

/* ============================================
   COLUMN STYLES
   ============================================ */

.col-form {
    float: left;
    padding-right: 5px;
    margin-top: 10px;
}

.col-pending {
    float: left;
    width: 70%;
    box-sizing: border-box;
}

.wrapper {
    padding: 25px;
    border-bottom: solid 1px #666;
    height: auto;
    background: #F3F3F3;
}

.col-pending-sidebar {
    float: left;
    width: 30%;
    box-sizing: border-box;
}

div.col-form select {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    margin-bottom: 10px;
    border: solid 1px #A7A7A7;
}

div.client-search input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    border: none;
}

div.col-form-client {
    float: left;
    margin-right: 10px;
}

div.col-client input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    border: solid 1px #A7A7A7;
}

div.col-client select {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    margin-bottom: 10px;
    border: solid 1px #A7A7A7;
}

/* ============================================
   CONTAINER
   ============================================ */

#container {
    min-height: 100%;
    position: relative;
    background-image: url(img/ofset.png);
    margin-top: 120px;
}

/* ============================================
   VIDEO
   ============================================ */

.video {
    height: auto;
    width: 100%;
}

.video-blur {
    /* -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -o-filter: blur(30px);
    -ms-filter: blur(30px);
    filter: blur(30px); */
}

#history-bg {
    background: url("images/peter-collage.jpg") no-repeat;
    background-size: 100%;
    background-clip: border-box;
    background-repeat: no-repeat;
    position: relative;
    height: 1000px;
}

#videoHistory-desktop {
    position: relative;
    width: 100%;
}

#history-vid {
    background-image: url("images/sp-bg-bk.jpg");
    width: 1000px;
    height: 600px;
    position: absolute;
    z-index: 99;
    bottom: 9px;
    right: 0;
}

/* ============================================
   BOX HEADING
   ============================================ */

.box-heading {
    padding: 10px;
    font-size: 150%;
}

.slide {
    width: 99%;
}

.slide-margin {
    /* margin-top: 100px; */
}

.box-fade {
    padding: 0 10px 0 50px;
    background-color: #000000;
    background: rgba(0, 0, 0, 0.5);
}

.slide-bg {
    background: url('/images/slide2.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 39.225%;
}

/* ============================================
   MAP
   ============================================ */

#map {
    height: 250px;
    width: 100%;
}

/* ============================================
   BANNER
   ============================================ */

.banner {
    padding: 100px;
    margin: 0;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* ============================================
   BIO
   ============================================ */

.bio-title {
    width: 100%;
    padding: 15px;
    color: grey;
    font-size: 90%;
}

/* ============================================
   TYPOGRAPHY - SLOGAN & HEADINGS
   ============================================ */

.slogan {
    font-family: 'Roxborough CF', serif;
    font-weight: 700;
    font-size: 200%;
    color: #000;
}

.sub-heading {
    font-family: 'Roxborough CF', serif;
    font-weight: 700;
    font-size: 250%;
    color: #fff;
}

.slogan-textual {
    font-weight: bold;
    font-size: 500%;
    font-family: 'Roxborough CF', serif;
    margin: 0px;
    color: #fff;
}

.quotes {
    display: none;
    color: white;
    font-size: 15em;
}

.quotes-event {
    display: none;
    color: white;
    font-size: 4em;
}

.footer-heading {
    padding: 200px;
    text-align: center;
    box-sizing: border-box;
}

/* ============================================
   HEADER
   ============================================ */

#header {
    background: #000;
    padding-top: 10px;
}

header {
    height: 120px;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    background-color: #fff;
}

/* ============================================
   BODY
   ============================================ */

#body {
    height: auto;
    margin-top: 30px;
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #000000 !important;
}

#footer a:link, 
#footer a:visited {
    font-family: 'Montserrat', sans-serif;
    font-size: 75%;
    color: #FFFFFF;
    text-decoration: none;
}

#footer a:hover {
    font-family: 'Montserrat', sans-serif;
    font-size: 75%;
    color: #CCC;
    text-decoration: none;
}

#footer span {
    font-family: 'Montserrat', sans-serif;
    color: #CCC;
}

/* ============================================
   SECTION
   ============================================ */

section {
    max-width: 90%;
    margin: 0 auto;
}

.title {
    float: left;
}

h1.logo {
    margin: 0px;
    color: #FFF;
}

h2.tagline {
    margin: 0px;
    color: #F90;
}

/* ============================================
   PETE IMAGE
   ============================================ */

#pete-im {
    float: left;
    padding: 0 20px 10px 0;
    width: 60%;
}

/* ============================================
   FIELD
   ============================================ */

.field {
    width: 300px;
    margin: 0 auto;
    display: block;
    padding: 5px;
}

/* ============================================
   VIDEO HISTORY - MOBILE
   ============================================ */

#videoHistory-mobile {
    width: 100%;
    height: auto;
    display: none;
}

/* ============================================
   PROMO STYLES
   ============================================ */

.promo-content {
    padding: 20px;
    color: white;
    text-align: center;
    display: none;
}

#mobile_promo {
    opacity: .8;
    padding: 40px;
    bottom: 45%;
    left: 0;
    background-color: #fff;
    position: absolute;
    z-index: 200;
    display: none;
}

#desktop_promo_right {
    padding: 20px;
    background-color: #000;
    text-align: right;
    z-index: 200;
    height: auto;
}

#desktop_promo_left {
    padding: 20px;
    background-color: #000;
    z-index: 200;
    height: auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.block-btn {
    display: inline-block;
    padding: 10px 18px;
    width: 100%;
    font-size: 90%;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    background-color: #F8F8F8;
    color: #333;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
}

.btn-wrap {
    float: left;
    margin-right: 8px;
}

.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    transition: background 0.5s linear;
}

.btn:hover {
    background-color: #CC0003;
    color: #fff;
}

.btn2 {
    display: inline-block;
    background-image: url('venues/davidduncanhouse/images/DuncanWood-dark.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: #282828;
    color: #fff;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    transition: background 0.5s linear;
}

.btn2:hover {
    background-repeat: repeat;
    background-color: #000;
    color: #fff;
}

.btn-venue {
    display: inline-block;
    background-color: #CC0003;
    color: #fff;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
}

.btn-venue:hover {
    background-color: #000;
    color: #fff;
}

.btn-click-copy {
    display: inline-block;
    padding: 10px;
    font-size: 100%;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    background-color: #ff0000;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-click-copy:hover {
    background-color: #999999;
    color: #fff;
}

.news-msg {
    font-size: 150%;
    font-family: 'Montserrat', sans-serif;
}

#iconic {
    font-size: 150%;
    font-family: 'Montserrat', sans-serif;
}

#copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: grey;
}

/* ============================================
   MENUBAR
   ============================================ */

#Menubar img {
    padding: 10px;
}

ul li .btn {
    margin-top: 5px;
}

/* ============================================
   BOX
   ============================================ */

.box {
    background-color: #CCC;
    padding: 10px;
}

.box-heading {
    background-color: white;
    padding: 10px;
    font-weight: bold;
    color: #FFF;
    font-family: 'Roxborough CF', serif;
    font-size: 85%;
}

/* ============================================
   PENDING
   ============================================ */

#pending {
    display: none;
    background-color: #FFF;
    margin-bottom: 20px;
    border-bottom: solid 5px #4caf50;
}

.center {
    text-align: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

#testimonials {
    float: right;
    width: 50%;
    position: relative;
    z-index: 2000;
}

.messageBox {
    padding: 10px;
    background-color: #FFF;
    text-align: center;
}

/* ============================================
   MY BUTTON
   ============================================ */

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #0C0;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 0px;
}

#myBtn:hover {
    background-color: #F90;
}

/* ============================================
   IMAGES
   ============================================ */

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   COLUMNS
   ============================================ */

.col {
    float: left;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.cols {
    float: left;
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
}

.row:before, 
.row:after, 
.group:before, 
.group.after {
    content: "";
    display: table;
    word-wrap: break-word;
}

.row:after, 
.group:after {
    clear: both;
    word-wrap: break-word;
}

.row, 
.group {
    zoom: 1;
    word-wrap: break-word;
}

.fix-menu {
    position: fixed;
    z-index: 999;
}

/* ============================================
   NAVIGATION - RESPONSIVE
   ============================================ */

ul.topnav li.icon {
    display: none;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@-ms-keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================ */

@media screen and (max-width: 1020px) {
    .chevron:before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        height: 100%;
        width: 50%;
        background: red;
        -webkit-transform: skew(0deg, 4deg);
        -moz-transform: skew(0deg, 4deg);
        -ms-transform: skew(0deg, 4deg);
        -o-transform: skew(0deg, 4deg);
        transform: skew(0deg, 4deg);
    }
    
    .chevron:after {
        content: '';
        position: absolute;
        top: -20px;
        right: 0;
        height: 100%;
        width: 50%;
        background: red;
        -webkit-transform: skew(0deg, -4deg);
        -moz-transform: skew(0deg, -4deg);
        -ms-transform: skew(0deg, -4deg);
        -o-transform: skew(0deg, -4deg);
        transform: skew(0deg, -4deg);
    }
    
    .chevron-venue:before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        height: 100%;
        width: 50%;
        background: #E3E3E3;
        -webkit-transform: skew(0deg, 4deg);
        -moz-transform: skew(0deg, 4deg);
        -ms-transform: skew(0deg, 4deg);
        -o-transform: skew(0deg, 4deg);
        transform: skew(0deg, 4deg);
    }
    
    .chevron-venue:after {
        content: '';
        position: absolute;
        top: -20px;
        right: 0;
        height: 100%;
        width: 50%;
        background: #E3E3E3;
        -webkit-transform: skew(0deg, -4deg);
        -moz-transform: skew(0deg, -4deg);
        -ms-transform: skew(0deg, -4deg);
        -o-transform: skew(0deg, -4deg);
        transform: skew(0deg, -4deg);
    }
    
    .special-div-pnp {
        position: relative;
        right: 0px;
        border-right: none;
        background-color: #1d1b1b;
        width: 100%;
        z-index: 0;
    }
    
    .special-div {
        position: relative;
        right: 0px;
        border-right: none;
        background-color: #1d1b1b;
        width: 100%;
        z-index: 0;
    }
    
    .fix-menu {
        position: static;
    }
    
    .strand {
        position: absolute !important;
        margin: -15px 0 0 0 !important;
    }
    
    #body {
        margin-top: 0;
    }
    
    .icon-bar {
        /* display: none; */
    }
    
    ul.topnav li:not(:first-child) {
        display: none;
    }
    
    ul.topnav.responsive {
        position: relative;
        -webkit-animation: fadein 2s;
        -moz-animation: fadein 2s;
        -ms-animation: fadein 2s;
        -o-animation: fadein 2s;
        animation: fadein 2s;
    }
    
    ul.topnav.responsive li {
        float: none;
        display: block;
    }
    
    .children {
        width: 100%;
    }
    
    ul.topnav.responsive li a:link, 
    ul.topnav.responsive li a:visited {
        display: block;
        text-align: left;
        font-size: 85%;
    }
    
    #div-nav {
        position: relative !important;
        margin: 0px !important;
        width: 100%;
        height: auto;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        z-index: 9998 !important;
    }
    
    ul.topnav li.icon {
        display: block !important;
    }
    
    nav ul li {
        width: 100% !important;
    }
    
    nav ul {
        text-align: left !important;
        width: 100%;
    }
    
    #download-brochure {
        font-size: 14px;
    }
    
    #mid-li {
        margin-right: 0 !important;
    }
    
    .media-type {
        padding-right: 0px !important;
    }
    
    nav ul li ul li {
        padding: 10px 0;
        border-bottom: solid 1px #ccc;
    }
    
    nav ul li ul li:last-child {
        border-bottom: none;
    }
    
    nav ul a {
        padding: 10px 10px;
    }
    
    .removeBorder {
        border-right: solid 1px #fff !important;
    }
    
    #career-video {
        padding: 0;
    }
    
    #otherfield {
        border-left: solid 1px #E7E7E7;
    }
    
    #more {
        margin-left: 0px;
    }
    
    #para-page {
        margin-top: 0px;
    }
    
    .col {
        padding: 20px;
    }
    
    .banner {
        padding: 5px;
    }
    
    .box-fade {
        padding: 0 0 0 0;
    }
    
    .slogan {
        font-size: 150%;
    }
    
    .slogan-textual {
        font-size: 300%;
    }
    
    #quotes {
        font-size: 150%;
    }
    
    .caption-box span {
        color: white;
        font: 20px;
        letter-spacing: -1px;
    }
    
    h1 {
        margin: 0;
        padding: 0 0 10px 0;
        font-size: 20px;
        font-family: 'Roxborough CF', serif;
    }
    
    .menu-trigger {
        display: block;
        color: #fff;
        padding: 10px;
        text-align: right;
        font-size: 83%;
        cursor: pointer;
        font-weight: bold;
    }
    
    nav.nav-menu {
        display: none;
    }
    
    nav.nav-expanded {
        display: block;
        background-color: #000;
        position: relative !important;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: 100000000;
    }
    
    nav {
        width: 90%;
    }
    
    nav.nav-menu ul li {
        float: none;
        border-bottom: 1px solid #1B1B1B;
    }
    
    nav ul li ul {
        display: block;
        position: relative;
        z-index: 999;
        background: none;
        width: 100%;
    }
    
    nav.nav-menu ul li:last-child {
        border-bottom: none;
    }
    
    .col-pending {
        float: none;
        width: 100%;
    }
    
    .col-pending-sidebar {
        float: none;
        width: 100%;
        margin-top: 50px;
    }
    
    .col-form input[type="Submit"] {
        box-sizing: border-box;
        padding: 15px;
        border: none;
    }
    
    .col-form input[type="button"] {
        box-sizing: border-box;
        padding: 15px;
        border: none;
    }
    
    div.client-search input[type="Submit"] {
        box-sizing: border-box;
        padding: 15px;
        border: none;
    }
    
    div.client-search input[type="button"] {
        box-sizing: border-box;
        padding: 15px;
        border: none;
    }
    
    div.client-search input[type="text"] {
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
        border: none;
        font-size: 150%;
    }
    
    div.col-form select {
        box-sizing: border-box;
        padding: 20px;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        font-size: 150%;
        border: none;
        margin-bottom: 10px;
    }
    
    #pete-im {
        width: 40%;
    }
}

#theking {
    width: 40%;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media screen and (max-width: 480px) {
    p {
        font-size: 1.3em;
    }
    
    .heeder {
        line-height: 1;
		padding: 10px 0;
    }
    
    #download-brochure {
        font-size: 11px !important;
    }
    
    nav {
        width: 100% !important;
        font-size: 19.2px !important;
    }
    
    nav ul a {
        display: flex !important;
    }
    
    nav ul li a {
        border-top: solid 1px #ccc;
    }
    
    nav ul ul li a {
        border-top: none;
    }
    
    #subb li {
        position: relative;
        list-style: none;
        padding-left: 20px;
    }
    
    #subb li::before {
        content: '●';
        position: absolute;
        top: 46%;
        left: 7px;
        transform: translateY(-50%);
        border: 5px solid transparent;
        color: red;
        font-size: 1.4em;
    }
    
    .nav-heading {
        background-color: #ffefef;
    }
    
    h7 {
        font-size: 13px !important;
        padding: 20px 0 20px 0 !important;
        grid-gap: 15px !important;
    }
    
    #mid-li {
        margin-right: 0 !important;
    }
    
    .venue-avail {
        font-size: 8vw !important;
    }
    
    .caption-box span {
        font: 20px;
    }
    
    .removeBorder {
        border-right: solid 1px #fff !important;
    }
    
    .happening h1 {
        font-size: 15px;
    }
    
    .happening h3 {
        font-size: 12px;
    }
    
    .sharethis-inline-share-buttons {
        text-align: center !important;
    }
    
    #career-video {
        padding: 0;
    }
    
    .stuck {
        width: 160px !important;
    }
    
    .stuck video {
        border: solid 4px white !important;
    }
    
    #close_video_btn {
        font-size: 10px;
        padding: 0;
        width: 50px !important;
    }
    
    #career-logo {
        text-align: center;
    }
    
    .career-title {
        text-align: center;
        font-size: 150%;
    }
    
    #promoHolder img {
        width: 80%;
    }
    
    #Menubar {
        text-align: center;
    }
    
    #hiddenMenubar {
        text-align: center;
    }
    
    #body {
        height: auto !important;
    }
    
    #para-page {
        margin-top: 0px;
    }
    
    #hotelx-venue {
        display: none;
    }
    
    .clock {
        display: none;
    }
    
    .btn-wrap {
        margin-bottom: 3px;
    }
    
    .btn {
        background-color: #521416;
    }
    
    #insta-img {
        width: 50%;
        height: auto;
    }
    
    #circle-shape .curve {
        width: 100%;
        float: none;
        margin: 0;
        padding: 0;
    }
    
    #pete-im {
        float: none;
        width: 100%;
        padding: 0px;
    }
    
    #timeline-im {
        margin: auto;
    }
    
    #circle-shape {
        margin: 0;
    }
    
    #title-head {
        text-align: center;
        font-size: 200%;
    }
    
    .col {
        padding: 10px;
    }
    
    h1 {
        text-align: center;
        font-size: 85%;
    }
    
    .col-pending {
        padding: 20px;
    }
    
    #venue-header {
        padding-left: 0;
        text-align: center;
    }
    
    .slogan {
        font-size: 80%;
    }
    
    .banner {
        padding: 20px;
    }
    
    #newsletterformholder {
        padding: 0 20px 0 20px;
    }
    
    .news-msg {
        padding: 0 20px 0 20px;
        font-size: 100%;
    }
    
    #inconic {
        padding: 0 20px 0 20px;
        font-size: 100%;
    }
    
    .popup-inner {
        width: 90%;
        margin-top: 10px;
    }
    
    #copyright {
        text-align: left;
        padding-top: 20px;
    }
    
    .mobile-align-center {
        text-align: center;
    }
    
    .popup {
        padding: 5%;
    }
}

/* ============================================
   COLUMN GRID SYSTEM
   ============================================ */

.col-xs-11 { width: 91.662%; }
.col-xs-10 { width: 83.332%; }
.col-xs-9 { width: 75%; }
.col-xs-8 { width: 66.662%; }
.col-xs-7 { width: 58.331%; }
.col-xs-6 { width: 50%; }
.col-xs-5 { width: 41.662%; }
.col-xs-4 { width: 33.332%; }
.col-xs-3 { width: 25%; }
.col-xs-2 { width: 16.662%; }
.col-xs-1 { width: 8.332%; }

@media screen and (min-width: 768px) {
    .col-sm-11 { width: 91.662%; }
    .col-sm-10 { width: 83.332%; }
    .col-sm-9 { width: 75%; }
    .col-sm-8 { width: 66.662%; }
    .col-sm-7 { width: 58.331%; }
    .col-sm-6 { width: 50%; }
    .col-sm-5 { width: 41.662%; }
    .col-sm-4 { width: 33.332%; }
    .col-sm-3 { width: 25%; }
    .col-sm-2 { width: 16.662%; }
    .col-sm-1 { width: 8.332%; }
}

@media screen and (min-width: 1024px) {
    .col-md-11 { width: 91.662%; }
    .col-md-10 { width: 83.332%; }
    .col-md-9 { width: 75%; }
    .col-md-8 { width: 66.662%; }
    .col-md-7 { width: 58.331%; }
    .col-md-6 { width: 50%; }
    .col-md-5 { width: 41.662%; }
    .col-md-4 { width: 33.332%; }
    .col-md-3 { width: 25%; }
    .col-md-2 { width: 16.662%; }
    .col-md-1 { width: 8.332%; }
    .col-lg-11 { width: 91.662%; }
    .col-lg-10 { width: 83.332%; }
    .col-lg-9 { width: 75%; }
    .col-lg-8 { width: 66.662%; }
    .col-lg-7 { width: 58.331%; }
    .col-lg-6 { width: 50%; }
    .col-lg-5 { width: 41.662%; }
    .col-lg-4 { width: 33.332%; }
    .col-lg-3 { width: 25%; }
    .col-lg-2 { width: 16.662%; }
    .col-lg-1 { width: 8.332%; }
}

/* ============================================
   DIV-NAV (PRESERVED)
   ============================================ */

#div-nav {
    float: right;
    margin-top: 70px;
    padding-bottom: 15px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9998;
    font-size: 90%;
}

/* ============================================
   HIDDEN MENU
   ============================================ */

.hide {
    opacity: 0;
    left: -100%;
}

/* ============================================
   NAVIGATION PRESERVED
   ============================================ */

nav {
    padding: 0;
    top: 0;
    right: 0;
    position: static;
    height: auto;
    z-index: 100;
}

nav ul {
    list-style: none;
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}

nav ul a {
    display: block;
    color: #000;
    padding: 10px 11px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
}

nav ul li {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}

nav ul li.current-menu-item {
    background: #ddd;
}

nav ul li a:hover {
    color: #ccc;
}

nav ul ul li a:hover {
    color: #fff;
}

nav ul ul li:hover {
    background-color: #CCCCCC;
}

nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    z-index: 9999999;
    background: rgba(230, 231, 232, 0.9);
    border-top: solid 1px red;
}

nav ul ul li {
    float: none;
    width: 300px;
    text-align: left;
}

nav ul ul a:link, 
nav ul ul a:visited {
    line-height: 0%;
    padding: 15px 12px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

nav ul li:hover > ul {
    display: block;
}

#more {
    margin-left: -230px;
}

/* ============================================
   POPUP STYLES
   ============================================ */

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 999999999;
    width: 100%;
    height: 100%;
}

.popup {
    margin: 0 auto;
    position: relative;
    z-index: 99999;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    text-align: center;
    padding: 20%;
}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    z-index: 99999;
}

.popup .close:hover {
    color: #06D85F;
    z-index: 99999;
}

.popup .content {
    height: auto;
    z-index: 99999;
    text-align: center;
}

.popup-career {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.75);
}

.popup-inner {
    max-width: 700px;
    width: 100%;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 0px;
    background: #e6e7e8;
}

.popup-close {
    width: 30px;
    height: 30px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: rgba(0, 0, 0, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}

.popup-close:hover {
    -webkit-transform: translate(50%, -50%) rotate(180deg);
    transform: translate(50%, -50%) rotate(180deg);
    background: rgba(0, 0, 0, 1);
    text-decoration: none;
}

/* ============================================
   COPYRIGHT
   ============================================ */

#copyright {
    padding-top: 20px;
    text-align: right;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
    position: absolute;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;

}

.openbtn:hover {
    background-color: #444;
}

#main {
    transition: margin-left .5s;
}

@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }
    .sidebar a {
        font-size: 18px;
    }
}

/* ============================================
   BOUNCING ARROWS
   ============================================ */

@-moz-keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounceLeft {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    40% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    60% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
}

@-moz-keyframes bounceLeft {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(30px);
    }
    60% {
        transform: translateX(15px);
    }
}

@keyframes bounceLeft {
    0%, 20%, 50%, 80%, 100% {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    40% {
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }
    60% {
        -ms-transform: translateX(15px);
        transform: translateX(15px);
    }
}

@-webkit-keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    40% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    60% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
}

@-moz-keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-30px);
    }
    60% {
        transform: translateX(-15px);
    }
}

@keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    40% {
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    60% {
        -ms-transform: translateX(-15px);
        transform: translateX(-15px);
    }
}

.fa-arrow-right {
    -webkit-animation: bounceRight 2s infinite;
    animation: bounceRight 2s infinite;
}

.fa-arrow-left {
    -webkit-animation: bounceLeft 2s infinite;
    animation: bounceLeft 2s infinite;
}

.fa-chevron-down {
    -moz-animation: bounceDown 2s infinite;
    -webkit-animation: bounceDown 2s infinite;
    animation: bounceDown 2s infinite;
    text-align: center;
    display: block;
}

.credits {
    padding-top: 50px;
    display: block;
    clear: both;
}

.div-center {
    -webkit-align-items: center;
    -webkit-justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

/* ============================================
   LARGE SCREEN
   ============================================ */

@media only screen and (min-width: 1020px) {
    .footer-heading .slogan {
        color: #ffffff;
        font-size: 250%;
    }
    
    #div-nav {
        position: fixed;
        z-index: 100000;
    }
    
    #happening-banner {
        margin-top: 41px;
    }
}

/* ============================================
   EXTRA LARGE SCREEN
   ============================================ */

@media screen and (min-width: 2450px) {
    #para-page {
        margin-top: 10%;
    }
    
    #div-nav {
        font-size: 120%;
    }
    
    h1 {
        margin: 0;
        padding: 0 0 20px 0;
        font-size: 200%;
        font-family: 'Roxborough CF', serif;
    }
    
    h3 {
        font-size: 200%;
    }
    
    .caption-box span {
        color: white;
        font: 20px;
        letter-spacing: -1px;
    }
    
    #video {
        height: 500px !important;
    }
}

/* ============================================
   LAPTOP
   ============================================ */

@media screen and (max-width: 1380px) {
    #mid-li {
        margin-right: 69px !important;
    }
    
    #promoHolder img {
        width: 60%;
    }
    
    #video {
        height: 500px !important;
    }
}

/* ============================================
   FONT UTILITY CLASSES
   ============================================ */

/* Montserrat Utility Classes */
.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.montserrat-thin { font-weight: 100; }
.montserrat-extralight { font-weight: 200; }
.montserrat-light { font-weight: 300; }
.montserrat-regular { font-weight: 400; }
.montserrat-medium { font-weight: 500; }
.montserrat-semibold { font-weight: 600; }
.montserrat-bold { font-weight: 700; }
.montserrat-extrabold { font-weight: 800; }
.montserrat-black { font-weight: 900; }

/* Roxborough CF Utility Classes */
.roxborough {
    font-family: 'Roxborough CF', serif;
}

.roxborough-thin { font-weight: 100; }
.roxborough-light { font-weight: 300; }
.roxborough-regular { font-weight: 400; }
.roxborough-medium { font-weight: 500; }
.roxborough-demibold { font-weight: 600; }
.roxborough-bold { font-weight: 700; }
.roxborough-extrabold { font-weight: 800; }
.roxborough-heavy { font-weight: 900; }

.roxborough-italic {
    font-style: italic;
}

/* Add this to your independent-style.css or style section */
.divider-column {
    position: relative;
}

.divider-column::after {
    content: '';
    position: absolute;
right: -76px;
    top: 50%;
    transform: translateY(-50%);
    width: 144px;
    height: 250px;
    background-image: url('images/decor-3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    pointer-events: none;
}

/* Remove divider from the last column */
.divider-column:last-child::after {
    display: none;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .divider-column::after {
        right: -10px;
        width: 30px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .divider-column::after {
        display: none;
    }
}


@media screen and (max-width: 768px) {
    .col-sm-4 .divider-image {
        display: none !important;
    }
}

