@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap');

@font-face {
    font-family:"ChronicleDisplay-Black";
    src:url("../fonts/Chronicle Display Black.woff2") format("woff2"),url("../fonts/Chronicle Display Black.woff") format("woff"),url("../fonts/Chronicle Display Black.otf") format("opentype");
    font-style:normal;font-weight:400;
}

body {
    background: #000;
    color: #000;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
}

@media(min-width: 576px){
    body {
        font-size: 16px;
    }
}

.post, .page {
	margin: 0;
}

.widget {
	margin: 0 0 40px;
}

#page {
    position: relative;
}

@media(min-width: 768px){
    #page {
        padding: 0 50px 0 50px;
    }
}

.admin-bar .fixed-top {
    top: 46px;
}

@media(min-width: 783px){
    .admin-bar .fixed-top {
        top: 32px;
    }  
}

main {
    margin-top: 150px;
}

h1 {
    font-family:  ChronicleDisplay-Black, serif;
    font-size: 35px;
    line-height: 50px;
    letter-spacing: .02em;
    margin: 0;
}

@media(min-width: 576px){
    h1 {
        font-family:  ChronicleDisplay-Black, serif;
        font-size: 50px;
        line-height: 60px;
    }
}

h2 {
    font-family:  ChronicleDisplay-Black, serif;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: .02em;
    margin: 0;
}

h3 {
    font-family:  ChronicleDisplay-Black, serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 26px;
    letter-spacing: .1em;
    margin-bottom: 40px;
}

@media(min-width: 576px){
    h3 {
        font-size: 16px;
        letter-spacing: .2em;
    }
}

/*
HEADER
*/

.navbar {
    background: #000;
    /*box-shadow: 0 2px 4px 0 rgba(0,0,0,.3);*/
    min-height: 150px;
    padding: 0;
}

.navbar-brand svg {
    width: 200px;
}

@media(min-width: 576px){
    .navbar-brand svg {
        width: 242px;
    }   
}

#primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
BUTTON
*/
.button a, a.button {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .2em;
    padding: 20px 50px 20px 30px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .25s ease-in-out;
}

.button a::after, a.button::after {
    background-image: url("../images/button-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    content: '';
    position: absolute;
    right: 20px;
    top: 10px;
    height: 25px;
    width: 25px;
}

#inquiry .button a {
    background: #fff;
    color: #000;
    padding: 12px 12px;
}

@media(min-width: 576px){
    #inquiry .button a {
        padding: 12px 30px;
    }
}

#inquiry .button a::after {
    background-image: none;
}

.button a:hover, a.button:hover {
    opacity: .5;
}

/*
FOOTER
*/
#colophon {
    background: #000;
    color: #fff;
    font-weight: 500;
    font-size:18px;
    letter-spacing: .06em;
    line-height: 24px;
    padding: 80px 0 60px;
}

#colophon a{
    color: #fff;
    display: block;
    transition: all .25s ease-in-out;
    padding-top: 20px;
}

#colophon a:hover{
    opacity: .5;
}

@media(max-width: 575px){
    .address {
        display: block;
    }
}

@media(max-width: 575px){
    .seperator {
        display: none;
    }
}

#burnside-logo-footer {
    cursor: pointer;
    width: 175px;
}

@media(min-width: 576px){
    #burnside-logo-footer {
        width: 242px;
    }
}

/*
MODAL
*/
.modal {
	--bs-modal-zindex: 1055;
	--bs-modal-width: 90%;
	--bs-modal-padding: 5rem 1rem;
	--bs-modal-margin: 0.5rem;
	--bs-modal-color: #fff;
	--bs-modal-bg: #000;
	--bs-modal-border-color: var(--bs-border-color-translucent);
	--bs-modal-border-width: var(--bs-border-width);
	--bs-modal-border-radius: 0;
	--bs-modal-box-shadow: var(--bs-box-shadow-sm);
	--bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
	--bs-modal-header-padding-x: 1rem;
	--bs-modal-header-padding-y: 1rem;
	--bs-modal-header-padding: 1rem 1rem;
	--bs-modal-header-border-color: var(--bs-border-color);
	--bs-modal-header-border-width: var(--bs-border-width);
	--bs-modal-title-line-height: 1.5;
	--bs-modal-footer-gap: 0.5rem;
	--bs-modal-footer-bg: ;
	--bs-modal-footer-border-color: var(--bs-border-color);
	--bs-modal-footer-border-width: var(--bs-border-width);
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--bs-modal-zindex);
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}

@media(min-width: 576px){
    .modal {
        --bs-modal-padding: 5rem 2rem;
    }
}
@media(min-width: 1400px){
    .modal {
        --bs-modal-width: 1400px;
        --bs-modal-padding: 5rem ;
    }
}

.modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	padding: var(--bs-modal-header-padding);
	border-bottom: none;
	border-top-left-radius: var(--bs-modal-inner-border-radius);
	border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-header .btn-close {
	padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
	margin-top: calc(-.5 * var(--bs-modal-header-padding-y));
	margin-right: calc(-.5 * var(--bs-modal-header-padding-x));
	margin-bottom: calc(-.5 * var(--bs-modal-header-padding-y));
	margin-left: auto;
}

.btn-close {
	--bs-btn-close-color: #000;
	--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
	--bs-btn-close-opacity: 1;
	--bs-btn-close-hover-opacity: 0.75;
	--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	--bs-btn-close-focus-opacity: 1;
	--bs-btn-close-disabled-opacity: 0.25;
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: .25em .25em;
	color: var(--bs-btn-close-color);
	background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
	filter: var(--bs-btn-close-filter);
	border: 0;
	border-radius: .375rem;
	opacity: var(--bs-btn-close-opacity);
}

.modal-body {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .1em;
}

/*animate modal in from right*/
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
  
/*hide animations*/
.fade-content-in-down, .fade-content-in-left, .fade-content-in-up, .fade-content-in-right, .fade-content-in {
    opacity: 0;
}

:root {
  --animate-delay: 0.75s;
}

  