/*-----------------------------------------------------------------------------------
	Plant City Photo Archives
	About: We are a non-profit organization based in Plant City, Florida, dedicated to preserving the heritage of our community through the collection and digital archiving of historical photographs and documents. We also strive to share the stories behind these images with the public and foster a sense of appreciation for our past.
	Author: David Patton
	Version: 1.072023
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:var(--swatch-var-2941);
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'Cutive-Regular';
	src: url('./fonts/Cutive-Regular/cutive.woff2');
	src: url('./fonts/Cutive-Regular/cutive.woff2') format('woff2'),
	url('./fonts/Cutive-Regular/cutive.eot?#iefix') format('embedded-opentype'),
	url('./fonts/Cutive-Regular/cutive.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .dropdown-menu.show{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: absolute;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Side Bar Navigation */
.nav-special.sidebar-nav{
	position: fixed;
	right: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	z-index: 1000;
	transition: all .2s linear;
}
.nav-invert .nav-special.sidebar-nav{
	right: auto;
	left: -300px;
}
 .nav-special.sidebar-nav .site-navigation{
	margin-top:15px;
	padding-left:15px;
}
.nav-special.sidebar-nav .nav > li a{
	color:rgba(255,255,255,.8);
}
 .nav-special.sidebar-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.sidebar-nav{
	right: 0;
	transition: all .2s linear;
}
.nav-invert .open.nav-special.sidebar-nav{
	left: 0;
	transition: all .2s linear;
}
.navbar-toggler:focus{
	box-shadow:none;
}
;
	
/* Content Tint */
.content-tint{
	z-index: -1;
	transition: background .2s linear;
}
.content-tint.on{
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background: transparent;
	z-index: 1001;
	background:rgba(0,0,0,.4);
}
.content-tint.on:hover{
	background:rgba(0,0,0,.1);
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Open menus on hover
-------------------------------------------------------------- */
@media (min-width: 992px){
	.hover-open-submenu li:hover > .dropdown > .dropdown-menu, .hover-open-submenu .dropdown-menu > li:hover .dropdown-menu{
	display: block;
}
.hover-open-submenu li .dropdown .dropdown-menu{
	margin-top:0;
}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-rd{
	border-radius: 40px;
}
.btn-clean{
	border:1px solid rgba(0,0,0,.08);
	border-bottom-color:rgba(0,0,0,.1);
	text-shadow:0 1px 0 rgba(0,0,1,.1);
	box-shadow: 0 1px 3px rgba(0,0,1,.25), inset 0 1px 0 0 rgba(255,255,255,.15);
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.btn-wire{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-wire:hover{
	background:transparent!important;
	border:2px solid transparent;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.icon-spacer{
	margin-right:5px;
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}

/* Rounded Image */
.img-rd-md{
	border-radius:20px;
}
.img-rd-lg{
	border-radius:34px;
}

.text-justify{
	text-align: justify;
}
/* = Text Widths
-------------------------------------------------------------- */
.text-w-md{
	max-width:300px;
}
.text-w-lg{
	max-width:400px;
}
.text-center.text-w-sm, .text-center.text-w-md, .text-center.text-w-lg, .text-center.text-w-90, .text-center.text-w-80, .text-center.text-w-70, .text-center.text-w-60, .text-center.text-w-50{
	margin-left: auto;
	margin-right: auto;
}


/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.carousel-indicators li::marker{
	font-size:0;
}
/* Scroll FX */
.scroll-fx-in-range{
	will-change: opacity;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.close{
	color:#000;
	opacity:0.5;
}
.close:hover{
	opacity:1;
}
.modal-header > [data-bs-dismiss="modal"]{
	margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.10 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox]{
	position: relative;
	display: block;
	text-align: center;
}
a[data-lightbox]:hover::before{
	content:"+";
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
	font-size:32px;
	line-height: 42px;
	width:50px;
	height:50px;
	margin-left:-25px;
	border-radius: 50%;
	background:rgba(0,0,0,.5);
	color:#FFF;
	font-weight:100;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img{
	opacity: 0.6;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0px;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	background:rgba(0,0,0,.5);
}
.next-lightbox, .prev-lightbox,.close-lightbox{
	position: absolute;
	padding:6px;
	background:rgba(0,0,0,.3);
	line-height:0;
	transition: background .2s ease-in-out;
	border-radius:.25rem;
	border:none;
	z-index:20;
}
.next-lightbox, .prev-lightbox{
	top:45%;
}
.close-lightbox{
	top:20px;
	right:20px;
}
.next-lightbox{
	right:25px;
}
.prev-lightbox{
	left:25px;
}
.lightbox-prev-icon,.lightbox-next-icon,.lightbox-close-icon{
	fill:none;
	stroke: #fff;
	stroke-width: 3px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
.lightbox-close-svg{
	pointer-events:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Poppins";
	color:var(--swatch-var-2941)!important;
	font-weight:300;
}
.container{
	max-width:1140px;
}
.bloc-divider-b-style{
	height:40px;
	fill:var(--swatch-var-2941);
}
.bloc-margin-bottom{
	margin-bottom:10px;
	padding-bottom:9px;
	padding-top:0px;
}
.row-padding-bottom{
	padding-bottom:9px;
}
.navbar-brand img{
	height:45px;
	width:300px;
}
.link-padding-top{
	padding-top:1px;
	padding-bottom:1px;
}
.bloc-radius-001{
	border-radius:10px 10px 10px 10px;
}
.bloc-divider-b-fill{
	fill:var(--swatch-var-2941);
	height:33px;
}
.navbar-nav li a{
	font-family:"Montserrat";
	font-weight:700;
	font-size:12px;
	color:var(--swatch-var-2941)!important;
}
.h3-style{
	font-family:"Poppins";
	font-weight:700;
}
.h3-3-style{
	font-family:"Poppins";
	font-weight:700;
}
.h2-style{
	font-family:"Poppins";
	font-weight:800;
}
.h4-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-bloc-5-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-reservations-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-business-hours-style{
	font-family:"Poppins";
	font-weight:500;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-2990);
	height:62px;
}
.bloc-fill{
	fill:var(--swatch-var-2941);
}
.bloc-bloc-3-fill{
	fill:var(--swatch-var-2941);
}
.shadow{
	box-shadow:48.91px 32.99px 31px #000000;
}
.bloc-bloc-7-fill{
	fill:var(--swatch-var-3467);
}
.h3-bloc-7-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-8-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-9-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-lobby-gallery-style{
	font-family:"Poppins";
	font-weight:700;
}
.h3-bloc-10-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-12-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-13-style{
	font-family:"Poppins";
	font-weight:500;
}
.button-white{
	color:#FEFFFF!important;
	background-color:var(--swatch-var-5645);
}
.h3-bloc-1-style{
	font-size:16px;
	font-family:"Poppins";
	font-weight:500;
}
.bloc-divider-t-0-fill{
	fill:var(--swatch-var-5219);
}
.h3-bloc-14-style{
	font-family:"Poppins";
	font-weight:500;
}
.img-style{
	border-radius:16px 16px 16px 16px;
	width:315px;
}
.img-all-day-tours-style{
	width:200px;
}
.bloc-divider-b-bloc-13-fill{
	fill:var(--swatch-var-967);
	height:204px;
}
.bloc-divider-t-bloc-14-fill{
	fill:var(--swatch-var-967);
	height:100px;
}
.img-gallery-pic-style{
	width:700px;
	height:600px;
}
.bloc-divider-b-bloc-9-fill{
	fill:var(--swatch-var-2990);
	height:0px;
}
.bloc-divider-b-bloc-5-fill{
	fill:var(--swatch-var-2941);
}
.h2-4-style{
	font-family:"Poppins";
	font-weight:500;
	width:100%;
}
.img-events-pic-style{
	width:400px;
}
.bloc-divider-b-bloc-14-fill{
	fill:var(--swatch-var-967);
}
.img-exhib-style{
	width:300px;
}
.img-12-style{
	width:300px;
}
.img-11-style{
	width:300px;
}
a{
	color:var(--swatch-var-2511)!important;
}
.img-ticke-style{
	width:200px;
}
.bloc-divider-t-23320-fill{
	fill:var(--swatch-var-1597);
}
.h4-individual-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-11-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-10-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-9-style{
	font-family:"Poppins";
	font-weight:500;
}
.bloc-bloc-15-fill{
	fill:var(--swatch-var-3622);
}
.h3-individual-style{
	font-family:"Poppins";
	font-weight:800;
}
.h3-couple-style{
	font-family:"Poppins";
	font-weight:800;
}
.h3-patron-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-trustee-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-founder-style{
	font-family:"Poppins";
	font-weight:500;
}
.bloc-padding-right{
	padding-right:0px;
}
.bloc-divider-t-23037-fill{
	fill:var(--swatch-var-2941);
	width:100%;
	height:0px;
}
.h3-17-style{
	font-family:"Poppins";
	font-weight:800;
}
.bloc-divider-t-bloc-17-fill{
	fill:var(--swatch-var-2941);
	height:29px;
}
.h3-18-style{
	font-family:"Poppins";
	font-weight:800;
}
.bloc-divider-b-bloc-17-fill{
	fill:var(--swatch-var-5208);
	height:17px;
}
.bloc-divider-t-41673-fill{
	fill:var(--swatch-var-4372);
	height:42px;
}
.h2-bloc-15-style{
	font-family:"Poppins";
	font-weight:800;
	font-size:35px;
}
.h2-bloc-19-style{
	font-family:"Poppins";
	font-weight:500;
}
.card-style{
	width:100%;
}
.h2-5-style{
	font-family:"Poppins";
	font-weight:800;
	font-size:45px;
}
.bloc-divider-b-0-fill{
	fill:var(--swatch-var-4372);
}
.bloc-divider-t-8250-fill{
	fill:var(--swatch-var-2941);
	width:100%;
	height:19px;
}
.h3-basic-style{
	font-family:"Poppins";
	font-weight:700;
}
.img-qrcode-smi-style{
	width:150px;
}
.h3-bloc-16-style{
	font-family:"Poppins";
	font-weight:800;
}
.h3-amazon-smile-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-feature-title-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3--25-donation-style{
	font-family:"Poppins";
	font-weight:800;
}
.h3--100-donation-style{
	font-family:"Poppins";
	font-weight:800;
}
.btn-style{
	font-weight:normal;
}
.btn-donate-now-style{
	font-weight:bold;
}
.btn-9-style{
	font-weight:bold;
}
.link-style{
	font-family:"Squada One";
	font-weight:bold;
	font-size:35px;
	width:100%;
}
.h5-style{
	font-family:"Poppins";
	font-weight:800;
	font-size:30px;
}
.img-23-style{
	width:400px;
}
.bloc-divider-t-bloc-16-fill{
	fill:var(--swatch-var-183);
	height:63px;
}
.bloc-0-fill{
	fill:var(--swatch-var-5774);
}
.bloc-divider-t---fill{
	fill:var(--swatch-var-2990);
	height:48px;
}
.bloc-divider-t-bloc-19-fill{
	fill:var(--swatch-var-2941);
	height:29px;
}
.btn-purchase-style{
	font-weight:normal;
}
.btn-14-style{
	font-weight:bold;
}
.btn-15-style{
	font-weight:bold;
}
.btn-16-style{
	font-weight:bold;
}
.h3-bloc-17-style{
	font-family:"Poppins";
	font-weight:700;
}
.btn-bloc-10-style{
	font-weight:normal;
}
.btn-history-center-style{
	font-weight:normal;
}
.btn-bloc-5-style{
	font-weight:normal;
}
.p-bloc-3-style{
	width:100%;
}
.transparentbg{
	background-color:var(--swatch-var-5843);
}
.link-0-style{
	font-family:"Squada One";
	line-height:20px;
	font-size:50px;
}
.bloc-divider-t-bloc-6-fill{
	fill:var(--swatch-var-2941);
	height:42px;
}
.btn-bloc-6-style{
	font-weight:normal;
}
.bloc-divider-t-bloc-15-fill{
	fill:var(--swatch-var-2941);
	height:40px;
	width:100%;
}
.btn-bloc-2-style{
	font-weight:normal;
}
.btn-donate-style{
	font-weight:normal;
}
.bloc-divider-t-bloc-10-fill{
	fill:var(--swatch-var-2941);
	height:60px;
}
.bloc-divider-b-bloc-19-fill{
	fill:var(--swatch-var-3599);
	height:60px;
}
.bloc-divider-t-style{
	height:44px;
	fill:var(--swatch-var-2685);
}
.custom-lists{
	color:var(--swatch-var-5208)!important;
}
.custom-cards{
	border-color:var(--swatch-var-4675)!important;
	border-width:1px 1px 1px 1px;
	border-radius:5px 5px 5px 5px;
	border-style:solid;
}
.bloc-divider-b-bloc-1-fill{
	fill:var(--swatch-var-2941);
	height:25px;
}
.bloc-divider-t-bloc-1-fill{
	fill:var(--swatch-var-2941);
	height:25px;
}
.custom-radius1{
	border-radius:10px 10px 10px 10px;
}
.h2-bloc-12-style{
	font-family:"Poppins";
	font-weight:700;
}
.h2-26788-style{
	font-family:"Poppins";
	font-weight:500;
}
.bloc-divider-b-bloc-15-fill{
	fill:var(--swatch-var-1800);
	height:40px;
}
.bloc-divider-b-bloc-3-fill{
	fill:var(--swatch-var-6752);
	height:38px;
}
.bloc-divider-b-bloc-10-fill{
	fill:var(--swatch-var-2941);
}
.h3-13-bloc-10-style{
	font-family:"Poppins";
	font-weight:700;
}
.img-pic-bookshe-style{
	border-radius:7px 7px 7px 7px;
	width:625px;
}
.img-bloc-10-style{
	width:99px;
}
.img-bloc-2-style{
	height:170px;
}
.img-3-style{
	height:170px;
}
.img-4-style{
	height:170px;
}
.h3-bloc-15-style{
	font-size:18px;
	font-family:"Poppins";
	font-weight:500;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-family:"Cutive-Regular";
	color:var(--swatch-var-2990)!important;
	font-weight:400;
	font-size:24px;
}
.custom-col{
	border-radius:15px 15px 15px 15px;
	background-color:var(--swatch-var-1800);
}
.custom-gradient-1{
	background:linear-gradient(0deg, #4B402B 0%, #1F2B30 100%);
}
.custom-gradient-02{
	background:linear-gradient(0deg, #1F2B30  0%, #4B402B 100%);
}
.custom-gradient-03{
	background:linear-gradient(0deg, var(--swatch-var-6752) 0%, var(--swatch-var-2941)  100%);
}
.h4-bloc-10-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-6-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-14-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-15-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-16-style{
	font-family:"Poppins";
	font-weight:500;
}
.btn-bloc-15-style{
	font-weight:normal;
}
.h1-style{
	font-family:"Poppins";
	font-weight:700;
}
.h5-bloc-7-style{
	font-family:"Poppins";
	font-weight:500;
}
.custom-gradient-04{
	background:linear-gradient(0deg, #CBCBCB  0%, #939393 100%);
}
.h3-bloc-8-style{
	font-family:"Poppins";
	font-weight:500;
}
.h4-bloc-8-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-black-history-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-our-town-style{
	font-family:"Poppins";
	font-weight:500;
}
.h2-bloc-9-style{
	font-family:"Poppins";
	font-weight:700;
}
.btn-5-style{
	font-weight:normal;
}
.divider-0-bloc-15-background-color{
	background-color:var(--swatch-var-2941);
	height:10px;
}
.divider-44032-background-color{
	background-color:var(--swatch-var-2941);
	height:10px;
}
.h5---individual- -style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-14-bloc-15-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-22775-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3---founder-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3---trustee-style{
	font-family:"Poppins";
	font-weight:500;
}
.divider-bloc-15-background-color{
	background-color:var(--swatch-var-5208);
}
.h3-39938-style{
	font-family:"Poppins";
	font-weight:800;
}
.img-bloc-26-style{
	width:434px;
}
.custom-gradient-05{
	background:linear-gradient(0deg, #FDC830  0%, #F37335 100%);
}
.navbar-brand{
	font-family:"Merriweather";
}
.h3-19969-style{
	font-family:"Poppins";
	font-weight:800;
}
.h3-bloc-11-style{
	font-family:"Poppins";
	font-weight:500;
}
.h3-on-display-style{
	font-family:"Poppins";
	font-weight:700;
}
.h2-bloc-1-style{
	font-size:27px;
}
.button-join{
	color:var(--swatch-var-5208)!important;
}
.h3-bloc-36-style{
	font-family:"Poppins";
	font-weight:800;
}
.h4-bloc-15-style{
	font-family:"Poppins";
	font-weight:500;
}
.p-style{
	width:100%;
}
.divider-bloc-36-background-color{
	background-color:var(--swatch-var-2869);
	height:5px;
	width:50%;
	margin-left:auto;
	margin-right:auto;
}
.divider-style{
	width:60%;
	margin-left:auto;
	margin-right:auto;
}
.carousel-style{
	width:100%;
}
.custom-rounded-div{
	border-radius:10px 10px 10px 10px;
	padding:25px 25px 25px 25px;
}
.divider-bloc-9-background-color{
	background-color:var(--swatch-var-2941);
	height:3px;
	width:70%;
	margin-left:auto;
	margin-right:auto;
}
.divider-bloc-8-style{
	width:70%;
	height:7px;
	background-color:var(--swatch-var-2685);
	margin-left:auto;
	margin-right:auto;
}
.custom-font-allcap{
	text-transform:uppercase;
}
.responsive-iframe{
	width:100%;
	height:100%;
	position:relative;
	display:block;
	overflow:hidden;
	margin:0px 0px 0px 0px;
	min-height:1000px;
	padding:25px 25px 25px 25px;
	border-radius:10px 10px 10px 10px;
}
.h1-bloc-21-style{
	font-family:"Poppins";
	font-weight:700;
}
.divider-bloc-20-background-color{
	background-color:var(--swatch-var-2941);
	height:5px;
	width:55%;
	margin-left:auto;
	margin-right:auto;
}
.divider-0-style{
	width:50%;
	background-color:var(--swatch-var-2941);
	height:5px;
	margin-left:auto;
	margin-right:auto;
}
.h5-bloc-10-style{
	font-family:"Poppins";
	font-weight:800;
}
.p-bloc-36-style{
	width:51.75%;
}
.p-94-style{
	width:32.46%;
}
.h3-11-style{
	font-family:"Poppins";
	font-weight:700;
}
.divider-bloc-7-background-color{
	background-color:var(--swatch-var-2941);
	width:80%;
	height:10px;
	margin-left:auto;
	margin-right:auto;
}
.divider-bloc-15-style{
	width:70%;
	height:5px;
	background-color:var(--swatch-var-2941);
	margin-left:0;
	margin-right:auto;
}
.row-style{
	width:100%;
}
.btn-bloc-8-style{
	font-weight:bold;
}
.btn-10-style{
	font-weight:600;
}
.custom-button-set-01{
	font-weight:600;
	color:var(--swatch-var-2941)!important;
}
.img-bloc-28-style{
	width:358px;
}
.p-bloc-1-style{
	width:88.38%;
}
.img-79-style{
	width:376px;
}
.p-bloc-26-style{
	width:100%;
}
.p-bloc-28-style{
	width:100%;
}
.row-bloc-2-style{
	width:100%;
}
.row-bloc-8-style{
	width:102.02%;
}
.img-building-loc-style{
	width:752px;
	border-radius:0px 0px 0px 0px;
}
.img-gallery--style{
	width:627px;
}
.img-gallery-sv--style{
	width:627px;
}
.img-gallery-sf--style{
	width:627px;
}
.p-bloc-5-style{
	width:100%;
}
.img-bill-profile-0-style{
	width:283px;
}
.h1-bloc-33-style{
	font-family:"Poppins";
	font-weight:800;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-4675:rgba(239,234,223,1.00);
	
	--swatch-var-5208:rgba(5,9,13,1.00);
	
	--swatch-var-2869:rgba(0,0,0,1.00);
	
	--swatch-var-2941:rgba(254,254,254,1.00);
	
	--swatch-var-2990:rgba(250,245,239,1.00);
	
	--swatch-var-183:rgba(255,103,0,1.00);
	
	--swatch-var-1597:rgba(238,125,79,1.00);
	
	--swatch-var-2511:rgba(21,122,131,1.00);
	
	--swatch-var-3467:rgba(21,122,131,0.59);
	
	--swatch-var-4481:rgba(238,125,79,1.00);
	
	--swatch-var-2774:rgba(21,156,131,1.00);
	
	--swatch-var-3716:rgba(25,193,138,1.00);
	
	--swatch-var-5987:rgba(249,230,82,1.00);
	
	--swatch-var-5774:rgba(255,160,79,1.00);
	
	--swatch-var-5219:rgba(252,191,21,1.00);
	
	--swatch-var-967:rgba(255,26,83,1.00);
	
	--swatch-var-3599:rgba(113,123,111,1.00);
	
	--swatch-var-4372:rgba(248,248,248,1.00);
	
	--swatch-var-928:rgba(46,34,71,1.00);
	
	--swatch-var-165:rgba(4,51,255,1.00);
	
	--swatch-var-6331:rgba(255,160,79,0.24);
	
	--swatch-var-5843:rgba(255,255,255,0.00);
	
	--swatch-var-1746:rgba(243,245,246,1.00);
	
	--swatch-var-6172:rgba(219,236,229,1.00);
	
	--swatch-var-4540:#D2ECFE;
	
	--swatch-var-2503:rgba(255,243,235,1.00);
	
	--swatch-var-5514:rgba(0,0,0,0.50);
	
	--swatch-var-3622:rgba(21,27,29,1.00);
	
	--swatch-var-3812:rgba(40,45,51,1.00);
	
	--swatch-var-2685:rgba(188,124,114,1.00);
	
	--swatch-var-1800:rgba(239,172,108,1.00);
	
	--swatch-var-4247:#7D5583;
	
	--swatch-var-1344:rgba(255,214,5,1.00);
	
	--swatch-var-2080:rgba(252,162,18,1.00);
	
	--swatch-var-712:rgba(33,43,51,1.00);
	
	--swatch-var-6752:rgba(255,248,240,1.00);
	
	--swatch-var-7696:rgba(54,217,204,1.00);
	
	--swatch-var-7391:rgba(255,255,255,1.00);
	
	--swatch-var-2173:rgba(33,33,33,1.00);
	
	--swatch-var-6857:#CBCBCB;
	
	--swatch-var-7110:rgba(21,18,4,0.89);
	
	--swatch-var-5645:rgba(157,88,63,1.00);
	
	--swatch-var-2108:rgba(21,18,4,0.77);
	
	--swatch-var-1330:rgba(21,27,29,0.82);
	
}


/* Background colour styles */

.bgc-712{
	background-color:var(--swatch-var-712);
}
.bgc-3622{
	background-color:var(--swatch-var-3622);
}
.bgc-2941{
	background-color:var(--swatch-var-2941);
}
.bgc-5843{
	background-color:var(--swatch-var-5843);
}
.bgc-7110{
	background-color:var(--swatch-var-7110);
}
.bgc-1330{
	background-color:var(--swatch-var-1330);
}
.bgc-2990{
	background-color:var(--swatch-var-2990);
}
.bgc-3812{
	background-color:var(--swatch-var-3812);
}
.bgc-2173{
	background-color:var(--swatch-var-2173);
}
.bgc-6752{
	background-color:var(--swatch-var-6752);
}
.bgc-2108{
	background-color:var(--swatch-var-2108);
}
.bgc-2685{
	background-color:var(--swatch-var-2685);
}
.bgc-1746{
	background-color:var(--swatch-var-1746);
}

/* Text colour styles */

.tc-5208{
	color:var(--swatch-var-5208)!important;
}
.tc-928{
	color:var(--swatch-var-928)!important;
}
.tc-2990{
	color:var(--swatch-var-2990)!important;
}
.tc-2941{
	color:var(--swatch-var-2941)!important;
}
.tc-2869{
	color:var(--swatch-var-2869)!important;
}
.tc-2173{
	color:var(--swatch-var-2173)!important;
}

/* Button colour styles */

.btn-c-5645{
	background:var(--swatch-var-5645);
	color:#FFFFFF!important;
}
.btn-c-5645:hover{
	background:#6A250C!important;
	color:#FFFFFF!important;
}
.btn-c-2511{
	background:var(--swatch-var-2511);
	color:#FFFFFF!important;
}
.btn-c-2511:hover{
	background:#FFFFFFE34750!important;
	color:#FFFFFF!important;
}
.wire-btn-c-2941{
	color:var(--swatch-var-2941)!important;
	border-color:var(--swatch-var-2941)!important;
}

/* Bloc image backgrounds */

.bg-bg-001{
	background-image:url("img/bg-001.webp");
}
.bg-28803-3-20Reynolds-20St-20looking-20west-20circa-201924{
	background-image:url("img/28803.3%20Reynolds%20St.%20looking%20west%20circa%201924.jpg");
	background-image: -webkit-image-set(url("img/28803.3%20Reynolds%20St.%20looking%20west%20circa%201924.webp") 1x,
url("img/28803.3%20Reynolds%20St.%20looking%20west%20circa%201924.webp") 2x);background-image: image-set(url("img/28803.3%20Reynolds%20St.%20looking%20west%20circa%201924.jpg") 1x,
url("img/28803.3%20Reynolds%20St.%20looking%20west%20circa%201924.jpg") 2x,url("img/28803.3%20Reynolds%20St.%20looking%20west%20circa%201924.webp") 1x,
url("img/28803.3%20Reynolds%20St.%20looking%20west%20circa%201924.webp") 2x);
}
.bg-15914-20Hillsboro-20Branch-20Bank-20Reynolds-20St-201958{
	background-image:url("img/15914.%20Hillsboro%20Branch%20Bank,%20Reynolds%20St.%201958.jpg");
	background-image: -webkit-image-set(url("img/15914.%20Hillsboro%20Branch%20Bank,%20Reynolds%20St.%201958.webp") 1x,
url("img/15914.%20Hillsboro%20Branch%20Bank,%20Reynolds%20St.%201958.webp") 2x);background-image: image-set(url("img/15914.%20Hillsboro%20Branch%20Bank,%20Reynolds%20St.%201958.jpg") 1x,
url("img/15914.%20Hillsboro%20Branch%20Bank,%20Reynolds%20St.%201958.jpg") 2x,url("img/15914.%20Hillsboro%20Branch%20Bank,%20Reynolds%20St.%201958.webp") 1x,
url("img/15914.%20Hillsboro%20Branch%20Bank,%20Reynolds%20St.%201958.webp") 2x);
}
.bg-2118-1-20Bargain-20Days-20downtown-201962{
	background-image:url("img/2118.1%20Bargain%20Days%20downtown,%201962.jpg");
	background-image: -webkit-image-set(url("img/2118.1%20Bargain%20Days%20downtown,%201962.webp") 1x,
url("img/2118.1%20Bargain%20Days%20downtown,%201962.webp") 2x);background-image: image-set(url("img/2118.1%20Bargain%20Days%20downtown,%201962.jpg") 1x,
url("img/2118.1%20Bargain%20Days%20downtown,%201962.jpg") 2x,url("img/2118.1%20Bargain%20Days%20downtown,%201962.webp") 1x,
url("img/2118.1%20Bargain%20Days%20downtown,%201962.webp") 2x);
}
.bg-pic-012-maps{
	background-image:url("img/pic-012-maps.webp");
}
.bg-bg-inspect-03{
	background-image:url("img/bg-inspect-03.jpg");
	background-image: -webkit-image-set(url("img/bg-inspect-03.webp") 1x,
url("img/bg-inspect-03.webp") 2x);background-image: image-set(url("img/bg-inspect-03.jpg") 1x,
url("img/bg-inspect-03.jpg") 2x,url("img/bg-inspect-03.webp") 1x,
url("img/bg-inspect-03.webp") 2x);
}
.bg-bg-history-01{
	background-image:url("img/bg-history-01.jpg");
	background-image: -webkit-image-set(url("img/bg-history-01.webp") 1x,
url("img/bg-history-01.webp") 2x);background-image: image-set(url("img/bg-history-01.jpg") 1x,
url("img/bg-history-01.jpg") 2x,url("img/bg-history-01.webp") 1x,
url("img/bg-history-01.webp") 2x);
}
.bg-bg-donate-01{
	background-image:url("img/bg-donate-01.jpg");
	background-image: -webkit-image-set(url("img/bg-donate-01.webp") 1x,
url("img/bg-donate-01.webp") 2x);background-image: image-set(url("img/bg-donate-01.jpg") 1x,
url("img/bg-donate-01.jpg") 2x,url("img/bg-donate-01.webp") 1x,
url("img/bg-donate-01.webp") 2x);
}
.bg-bg-gallery-01{
	background-image:url("img/bg-gallery-01.jpg");
	background-image: -webkit-image-set(url("img/bg-gallery-01.webp") 1x,
url("img/bg-gallery-01.webp") 2x);background-image: image-set(url("img/bg-gallery-01.jpg") 1x,
url("img/bg-gallery-01.jpg") 2x,url("img/bg-gallery-01.webp") 1x,
url("img/bg-gallery-01.webp") 2x);
}
.bg-building-pic002{
	background-image:url("img/building-pic002.jpg");
	background-image: -webkit-image-set(url("img/building-pic002.webp") 1x,
url("img/building-pic002.webp") 2x);background-image: image-set(url("img/building-pic002.jpg") 1x,
url("img/building-pic002.jpg") 2x,url("img/building-pic002.webp") 1x,
url("img/building-pic002.webp") 2x);
}



/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.bloc-divider-b-bloc-13-fill{
		height:100px;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-2941)!important;
		fill:var(--swatch-var-2941)!important;
	}
	.link-0-style{
		font-size:50px;
	}
	.navbar-nav li a{
		font-size:12px;
		float:none;
	}
	.link-style{
		width:100%;
	}
	.navbar-logo{
		font-size:20px;
	}
	.h3-17-style{
		font-family:"Poppins";
		font-weight:700;
	}
	.h3-18-style{
		font-family:"Poppins";
		font-weight:700;
	}
	.h3-individual-style{
		font-family:"Poppins";
		font-weight:700;
	}
	.p-bloc-36-style{
		width:67.9%;
	}
	.p-94-style{
		width:54.05%;
	}
	.divider-bloc-15-style{
		margin-left:auto;
		margin-right:auto;
	}
	.h2-5-style{
		font-size:53px;
	}
	.h4-bloc-15-style{
		font-size:23px;
	}
	.img-bloc-15-style{
		width:238px;
	}
	
}

@media (max-width: 767px){
	.menu-icon-stroke{
		stroke:var(--swatch-var-2941)!important;
		fill:var(--swatch-var-2941)!important;
	}
	.link-0-style{
		font-size:50px;
	}
	.alignment-left{
		float:left;
	}
	.divider-bloc-15-style{
		margin-left:auto;
		margin-right:auto;
	}
	.p-bloc-36-style{
		width:79.14%;
	}
	.p-94-style{
		width:69.83%;
	}
	.p-bloc-2-style{
		width:100%;
	}
	.sidebar-nav{
		width:230px!important;
	}
	.nav-special.sidebar-nav .nav > li{
		width:80%;
	}
	.nav-invert .sidebar-nav .close-special-menu{
		left:200px;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.link-0-style{
		font-size:32px;
	}
	.h2-5-style{
		font-size:31px;
	}
	.navbar-logo{
		font-size:18px;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-2941)!important;
		fill:var(--swatch-var-2941)!important;
	}
	.p-bloc-36-style{
		width:100%;
	}
	.p-94-style{
		width:100%;
	}
	.p-87-style{
		width:100%;
	}
	.img-bloc-15-style{
		width:141px;
	}
	
}

