/*-----------------------------------------------------------------------------------
	SummerSafeAlanta
	About: A Summer Safe Atlanta website.
	Author: x
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#000000;
    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;}}

/* = 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-xl{
	padding:150px 20px;
}
.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;
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-center{
	-webkit-background-size: auto;
}
.bg-repeat{
	background-repeat:repeat!important;
}
.bg-br-edge{
	background-position: bottom right!important;
	background-repeat: no-repeat;
}


/* 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);
}
.texture-darken-strong::before{
	background: rgba(0,0,0,0.8);
}


/* 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);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}


/* = 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;
}
/* 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}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.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-sq{
	border-radius: 0px;
}
.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-glossy{
	border:1px solid rgba(0,0,0,.09);
	border-bottom-color:rgba(0,0,0,.2);
	text-shadow:0 1px 0 rgba(0,0,1,.2);
	box-shadow: 0 1px 3px rgba(0,0,1,.35), inset 0 1px 0 0 rgba(255,255,255,.4), inset 0 1px 0 2px rgba(255,255,255,.08);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	 background-image: -o-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
}
.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;
}
.btn-xl{
	padding: 16px 40px;
	font-size: 28px;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}

/* = Icons
-------------------------------------------------------------- */
.icon-sm{
	font-size:18px!important;
}
.icon-md{
	font-size:30px!important;
}
.icon-round{
	margin:0 auto;
	border:2px solid transparent;
	border-radius: 50%;
	padding: 32px 30px 26px 30px;
	min-width:80px;
}
.icon-round.icon-md,.icon-square.icon-md,.icon-rounded.icon-md{
	min-width: 92px;
}
.icon-round.icon-lg,.icon-square.icon-lg,.icon-rounded.icon-lg{
	min-width: 122px;
}
.icon-round.icon-xl,.icon-square.icon-xl,.icon-rounded.icon-xl{
	min-width: 162px;
}

/*  Image Protection */
.img-protected{
	-webkit-touch-callout: none;
}

/* = Text & Icon Styles
-------------------------------------------------------------- */
.glow-t{
	text-shadow:0 0 10px #FFF;
}
.blockquote{
	padding:0 20px;
	border-left:2px solid;
}
.blockquote.text-end{
	border-left:0;
	border-right:2px solid;
}


/* = 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%;
}
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}


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

.carousel-indicators li::marker{
	font-size:0;
}


/* 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;
}

/* Framless */
.frameless-lb{
	border-radius: 0;
	border:none;
}
.frameless-lb .modal-body{
	padding:0;
}
.frameless-lb .lightbox-caption{
	left:0;
	right:0;
	bottom:-16px;
}

/* 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;
}

/* Hide Object */
.object-hidden{
	display:none;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
	color:#FEFFFF!important;
}
.container{
	max-width:1140px;
}
.hero-header-text{
	font-size:81px;
	font-weight:bold;
	line-height:100px;
}
.hero-subheader{
	font-size:29px;
	font-weight:normal;
}
.green-bg-gradient{
	background:linear-gradient(68deg, #61E1A3, #49AFFF);
}
.text-trans-gradient{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background:linear-gradient(0deg, var(--swatch-var-802)  0%, var(--swatch-var-1792) 96%);
	color:transparent!important;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.h4-style{
	font-size:22px;
}
.h4-bloc-1-style{
	font-size:22px;
}
.p-style{
	font-size:14px;
}
.p-bloc-1-style{
	font-size:14px;
}
.illustration-section-title{
	font-size:50px;
}
.h3-style{
	font-size:18px;
}
.h3-bloc-1-style{
	font-size:18px;
}
.text-purple-gradient{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background:linear-gradient(88deg, #FF7D5A, #9853F6);
	color:transparent!important;
}
.slider{
	height:120px;
	overflow:hidden;
	position:relative;
	display:flex;
	width:100%;
	margin:auto auto auto auto;
}
.slide{
	width:250px;
	height:100px;
	justify-content:space-between;
	min-width:250px;
	border-radius:10px 10px 10px 10px;
	background-color:#00B8AD;
	margin:5px 5px 5px 5px;
}
.slide-track{
	display:flex;
}
.slider::before{
	top:0px;
	content:"";
	left:0px;
	height:120px;
	position:absolute;
	width:200px;
	z-index:2;
}
.slider::after{
	top:0px;
	content:"";
	right:0px;
	height:120px;
	width:200px;
	z-index:2;
	position:absolute;
}
.slider .slide{
	height:100px;
	width:250px;
}
.slider .slide-track{
	display:flex;
}
.h1-style{
	color:var(--swatch-var-2928)!important;
	font-family:"MyriadPro-Bold";
}
.align{
	margin-top:5%;
	color:#FEFFFF!important;
	font-family:"MyriadPro-Black";
	font-size:4rem;
}
.img-style{
	width:424px;
	border-radius:5px 5px 5px 5px;
}
.img-29-style{
	width:130px;
}
.img-19-style{
	width:155px;
}
.img-24-style{
	width:155px;
}
.h3-bloc-4-35183-style{
	font-size:18px;
}
.img-bloc-0-style{
	width:78px;
}
.img-ss-pledge-style{
	width:479px;
}
.row-bloc-4-margin-top{
	margin-top:-122px;
}
.h5-style{
	font-size:18px;
}
.img-bloc-4-style{
	width:367px;
	border-radius:142px 142px 142px 142px;
}
.p-bloc-4-style{
	font-size:13px;
}
.h3-padding-top{
	padding-top:22px;
}
.h6-style{
	font-size:22px;
}
.h2-style{
	font-size:31px;
}
.menubak{
	background-color:var(--swatch-var-2869);
}
.roundvid{
	border-width:0px 0px 0px 0px;
	left:0px;
	right:0px;
	bottom:0px;
	z-index:1;
	border-radius:10px 10px 10px 10px;
	overflow:hidden;
}
.newtxt{
	color:#000000!important;
}
.tab{
	background-color:#FF2600;
}
.btn-bloc-4-style{
	width:61.38%;
	font-weight:normal;
}
.link-style{
	font-weight:bold;
}
.gakao-frame{
	border-color:var(--swatch-var-4224)!important;
}
.p-bloc-14-style{
	line-height:28px;
}
.p-11-style{
	line-height:28px;
}
.p-12-style{
	line-height:28px;
}
.p-13-style{
	line-height:28px;
}
.p-14-style{
	line-height:28px;
}
.img-bloc-14-style{
	width:545px;
	padding-left:190px;
}
.img-bloc-7-style{
	width:66px;
}
.h3-bloc-19-style{
	font-size:16px;
}
.carousel-bloc-7-style{
	width:100%;
}
.bloc-padding-bottom{
	padding-bottom:254px;
}
.vidcurve{
	overflow:visible;
	z-index:-;
}
.btn-submit-style{
	width:32.78%;
}
.img-106-style{
	width:155px;
}
.bloc-padding-top{
	padding-top:0px;
}
.option-select-style{
	opacity:0.7;
}
.img-bloc-25-style{
	width:412px;
}
.primary-gradient{
	background:linear-gradient(90deg, var(--swatch-var-4224)      0%, var(--swatch-var-417) 100%);
}
.bloc-fill{
	fill:rgba(255,255,255,0.08);
}
.menu-icon-stroke{
	stroke:var(--swatch-var-1792);
	fill:var(--swatch-var-1792);
}
.book-container{
	box-shadow:0.00px 26.00px 25px rgba(0,0,0,0.32);
	min-height:600px;
	background-color:var(--swatch-var-1792);
	background:linear-gradient(0deg, #000000 0%, #000000 100%);
	position:relative;
	display:inline-flex;
	justify-content:center;
	align-items:center;
	min-width:100%;
	border-top-left-radius:2px;
	border-bottom-left-radius:2px;
	padding:10px 10px 10px 10px;
}
.hero-heading{
	font-weight:bold;
	font-size:60px;
}
.hero-sub-heading{
	font-size:20px;
}
.hero-btn{
	min-width:200px;
}
.white-btn{
	color:var(--swatch-var-4224)!important;
}
.book-container::after{
	content:"";
	position:absolute;
	min-height:100%;
	left:0px;
	background:linear-gradient(270deg, rgba(0,0,0,0.23)    0%, transparent 48%, transparent 77%, rgba(0,0,0,0.46)  100%);
	min-width:20px;
	bottom:0px;
	border-top-left-radius:2px;
	border-bottom-left-radius:2px;
	box-shadow:1.00px 0.00px 0px rgba(255,255,255,0.77);
}
.primary-dot::after{
	content:".";
	color:var(--swatch-var-4224)!important;
	position:absolute;
}
.sample-chapter-p::first-letter{
	color:var(--swatch-var-3578)!important;
	line-height:45px;
	font-size:50px;
}
.img-lil-bankhead-style{
	width:202px;
}
.img-terr-style{
	width:200px;
}
.img-khaj-style{
	width:200px;
}
.img-bloc-24-style{
	width:200px;
}
.img-shaunt-style{
	width:200px;
}
.img-108-style{
	width:200px;
}
.img-dimo-style{
	width:200px;
}
.img-reggie-hall-style{
	width:200px;
}
.img-112-style{
	width:200px;
}
.img-keithmatthe-style{
	width:200px;
}
.img-zonquil-bailey-style{
	width:200px;
}
.img-114-style{
	width:200px;
}
.label-style{
	width:82.85%;
}
.tab:active{
	background-color:var(--swatch-var-2752);
}
.tab:hover{
	background-color:var(--swatch-var-2752);
}
.h2-bloc-2-style{
	font-size:31px;
}
.img-bloc-15-style{
	width:334px;
}
.h1-bloc-34-style{
	font-size:60px;
	line-height:47px;
	padding-bottom:8px;
	margin-bottom:8px;
	padding-top:0px;
}
.img-168-style{
	height:66px;
}
.img-18-style{
	width:110px;
}
.h4-bloc-16-style{
	font-size:22px;
}
.img-bloc-12-style{
	width:400px;
}
.img-bloc-13-style{
	width:400px;
}
.img-bloc-11-style{
	width:400px;
}
.p-3-style{
	font-size:14px;
}
.h3-5-style{
	font-size:28px;
}
.h3-bloc-2-style{
	font-size:28px;
}
.bloc-padding-right{
	padding-right:0px;
}
.html-widget-padding-right{
	padding-right:0px;
	margin-right:64px;
	width:100%;
}
.row-margin-bottom{
	margin-bottom:1px;
}
.card-body-margin-bottom{
	margin-bottom:-16px;
	padding-bottom:16px;
}
.carousel-style{
	width:100%;
	margin-bottom:543px;
	padding-bottom:0px;
}
.container-div-style{
	width:97.81%;
}
.list-padding-top{
	padding-top:0px;
	margin-top:-242px;
}
.list-margin-top{
	padding-top:0px;
	margin-bottom:-470px;
	padding-bottom:0px;
}
.p-61-style{
	line-height:14px;
}
.h3-meet-our-team-style{
	font-size:30px;
}
.cardbg{
	background-image:url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.png");
	background-image: -webkit-image-set(url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 2x);background-image: image-set(url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.png") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.png") 2x,url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 2x);
	background-image: -webkit-image-set(url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 2x);background-image: image-set(url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.png") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.png") 2x,url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Kid%20Stands%20On%20A%20Step%20Ladder%20Next%20To%20A%20Wall%20-%20Photo.webp") 2x);
	background-blend-mode:darken;
	width:100px;
}
.card-footer-style{
	width:100%;
	padding-right:0px;
	height:86px;
}
.h3-khajit-maat-style{
	width:100%;
}
.h3-zonquil-bailey-style{
	width:100%;
}
.h3-chef-marlo-style{
	width:100%;
}
.h3-micheal-cheek-style{
	width:100%;
}
.h3-92-style{
	width:100%;
}
.h3-reggie-hall-style{
	width:100%;
}
.h3-lil-bankhead-style{
	width:100%;
}
.h3-modal-heading-style{
	width:100%;
}
.img-5-style{
	width:450px;
}
.h1-bloc-1-style{
	font-size:36px;
	padding-top:0px;
	margin-top:35px;
	padding-bottom:2px;
}
.bloc-padding-left{
	padding-left:16px;
}
.headroom{
	padding-top:500px;
}
.h3-105-style{
	width:85.32%;
}
.p-bloc-35-style{
	font-size:30px;
}
.h3-resources-style{
	font-size:42px;
}
.btn-bloc-2-style{
	border-radius:0px 0px 0px 0px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-1792:rgba(255,255,255,1.00);
	
	--swatch-var-6521:rgba(255,255,255,0.498039);
	
	--swatch-var-2869:rgba(0,0,0,1.00);
	
	--swatch-var-4224:rgba(255,38,0,1.00);
	
	--swatch-var-2708:#00F900;
	
	--swatch-var-5276:rgba(86,158,249,1.00);
	
	--swatch-var-2752:rgba(24,58,86,1.00);
	
	--swatch-var-4448:rgba(87,117,146,1.00);
	
	--swatch-var-5783:rgba(0,0,0,0.2);
	
	--swatch-var-802:rgba(237,237,237,1.00);
	
	--swatch-var-3578:rgba(20,20,20,1.00);
	
	--swatch-var-257:rgba(255,255,255,0.5);
	
	--swatch-var-417:#269DEB;
	
	--swatch-var-5993:#282525;
	
}


/* Background colour styles */

.bgc-2869{
	background-color:var(--swatch-var-2869);
}
.bgc-3578{
	background-color:var(--swatch-var-3578);
}
.bgc-802{
	background-color:var(--swatch-var-802);
}
.bgc-1792{
	background-color:var(--swatch-var-1792);
}
.bgc-5993{
	background-color:var(--swatch-var-5993);
}

/* Text colour styles */

.tc-802{
	color:var(--swatch-var-802)!important;
}
.tc-2869{
	color:var(--swatch-var-2869)!important;
}
.tc-1792{
	color:var(--swatch-var-1792)!important;
}
.tc-5783{
	color:var(--swatch-var-5783)!important;
}
.tc-4224{
	color:var(--swatch-var-4224)!important;
}
.tc-257{
	color:var(--swatch-var-257)!important;
}

/* Button colour styles */

.btn-c-4224{
	background:var(--swatch-var-4224);
	color:#FFFFFF!important;
}
.btn-c-4224:hover{
	background:#CC0000!important;
	color:#FFFFFF!important;
}
.btn-c-2869{
	background:var(--swatch-var-2869);
	color:#FFFFFF!important;
}
.btn-c-2869:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}
.btn-c-5276{
	background:var(--swatch-var-5276);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-5276:hover{
	background:#236BC6!important;
	color:rgba(0,0,0,.5)!important;
}
.wire-btn-c-2708{
	color:var(--swatch-var-2708)!important;
	border-color:var(--swatch-var-2708)!important;
}
.wire-btn-c-5276{
	color:var(--swatch-var-5276)!important;
	border-color:var(--swatch-var-5276)!important;
}
.wire-btn-c-4224{
	color:var(--swatch-var-4224)!important;
	border-color:var(--swatch-var-4224)!important;
}
.wire-btn-c-1792{
	color:var(--swatch-var-1792)!important;
	border-color:var(--swatch-var-1792)!important;
}

/* Link colour styles */

.ltc-1792{
	color:var(--swatch-var-1792)!important;
}
.ltc-1792:hover{
	color:#CCCCCC!important;
}
.ltc-802{
	color:var(--swatch-var-802)!important;
}
.ltc-802:hover{
	color:#BABABA!important;
}
.ltc-4224{
	color:var(--swatch-var-4224)!important;
}
.ltc-4224:hover{
	color:#CC0000!important;
}

/* Icon colour styles */

.icon-1792{
	color:var(--swatch-var-1792)!important;
	border-color:var(--swatch-var-1792)!important;
}
.icon-4224{
	color:var(--swatch-var-4224)!important;
	border-color:var(--swatch-var-4224)!important;
}
.icon-802{
	color:var(--swatch-var-802)!important;
	border-color:var(--swatch-var-802)!important;
}
.icon-2869{
	color:var(--swatch-var-2869)!important;
	border-color:var(--swatch-var-2869)!important;
}

/* Bloc image backgrounds */

.bg-Summer-20Safe-20--20Background-20Logo-20{
	background-image:url("img/Summer%20Safe%20-%20Background%20Logo%20.png");
	background-image: -webkit-image-set(url("img/Summer%20Safe%20-%20Background%20Logo%20.webp") 1x,
url("img/Summer%20Safe%20-%20Background%20Logo%20.webp") 2x);background-image: image-set(url("img/Summer%20Safe%20-%20Background%20Logo%20.png") 1x,
url("img/Summer%20Safe%20-%20Background%20Logo%20.png") 2x,url("img/Summer%20Safe%20-%20Background%20Logo%20.webp") 1x,
url("img/Summer%20Safe%20-%20Background%20Logo%20.webp") 2x);
}
.bg-summer-20safe-20logo-20--20-28black-20for-20white-20background-29{
	background-image:url("img/summer%20safe%20logo%20-%20%28black%20for%20white%20background%29.png");
	background-image: -webkit-image-set(url("img/summer%20safe%20logo%20-%20%28black%20for%20white%20background%29.webp") 1x,
url("img/summer%20safe%20logo%20-%20%28black%20for%20white%20background%29.webp") 2x);background-image: image-set(url("img/summer%20safe%20logo%20-%20%28black%20for%20white%20background%29.png") 1x,
url("img/summer%20safe%20logo%20-%20%28black%20for%20white%20background%29.png") 2x,url("img/summer%20safe%20logo%20-%20%28black%20for%20white%20background%29.webp") 1x,
url("img/summer%20safe%20logo%20-%20%28black%20for%20white%20background%29.webp") 2x);
}
.bg-SST-logo-bLW-20-281-29{
	background-image:url("img/SST_logo_bLW%20%281%29.png");
}
.bg-SST-logo{
	background-image:url("img/SST_logo.jpg");
	background-image: -webkit-image-set(url("img/SST_logo.webp") 1x,
url("img/SST_logo.webp") 2x);background-image: image-set(url("img/SST_logo.jpg") 1x,
url("img/SST_logo.jpg") 2x,url("img/SST_logo.webp") 1x,
url("img/SST_logo.webp") 2x);
}
.bg-SST-logo-bLW-20-28Cropped-29{
	background-image:url("img/SST_logo_bLW%20%28Cropped%29.png");
	background-image: -webkit-image-set(url("img/SST_logo_bLW%20%28Cropped%29.webp") 1x,
url("img/SST_logo_bLW%20%28Cropped%29.webp") 2x);background-image: image-set(url("img/SST_logo_bLW%20%28Cropped%29.png") 1x,
url("img/SST_logo_bLW%20%28Cropped%29.png") 2x,url("img/SST_logo_bLW%20%28Cropped%29.webp") 1x,
url("img/SST_logo_bLW%20%28Cropped%29.webp") 2x);
}
.bg-SST-logo-bLW-20-281-29{
	background-image:url("img/SST_logo_bLW%20%281%29.png");
}
.bg-k-stove-high-key-photography-of-city-at-night-background-3d-Ill-db9c2494-aa6a-4061-aed8-444c727c5410{
	background-image:url("img/k.stove_high_key_photography_of_city_at_night_background_3d_Ill_db9c2494-aa6a-4061-aed8-444c727c5410.png");
	background-image: -webkit-image-set(url("img/k.stove_high_key_photography_of_city_at_night_background_3d_Ill_db9c2494-aa6a-4061-aed8-444c727c5410.webp") 1x,
url("img/k.stove_high_key_photography_of_city_at_night_background_3d_Ill_db9c2494-aa6a-4061-aed8-444c727c5410.webp") 2x);background-image: image-set(url("img/k.stove_high_key_photography_of_city_at_night_background_3d_Ill_db9c2494-aa6a-4061-aed8-444c727c5410.png") 1x,
url("img/k.stove_high_key_photography_of_city_at_night_background_3d_Ill_db9c2494-aa6a-4061-aed8-444c727c5410.png") 2x,url("img/k.stove_high_key_photography_of_city_at_night_background_3d_Ill_db9c2494-aa6a-4061-aed8-444c727c5410.webp") 1x,
url("img/k.stove_high_key_photography_of_city_at_night_background_3d_Ill_db9c2494-aa6a-4061-aed8-444c727c5410.webp") 2x);
}
.bg-Ride-20Don-27t-20Slide-202-20--20Group-20Gathering-20Photo-203{
	background-image:url("img/Ride%20Don%27t%20Slide%202%20-%20Group%20Gathering%20Photo%203.png");
	background-image: -webkit-image-set(url("img/Ride%20Don%27t%20Slide%202%20-%20Group%20Gathering%20Photo%203.webp") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Group%20Gathering%20Photo%203.webp") 2x);background-image: image-set(url("img/Ride%20Don%27t%20Slide%202%20-%20Group%20Gathering%20Photo%203.png") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Group%20Gathering%20Photo%203.png") 2x,url("img/Ride%20Don%27t%20Slide%202%20-%20Group%20Gathering%20Photo%203.webp") 1x,
url("img/Ride%20Don%27t%20Slide%202%20-%20Group%20Gathering%20Photo%203.webp") 2x);
}
.bg-Summer-20Safe-20Atlanta-20Camp-2023-20--20Classroom-20Photo{
	background-image:url("img/Summer%20Safe%20Atlanta%20Camp%2023%20-%20Classroom%20Photo.png");
	background-image: -webkit-image-set(url("img/Summer%20Safe%20Atlanta%20Camp%2023%20-%20Classroom%20Photo.webp") 1x,
url("img/Summer%20Safe%20Atlanta%20Camp%2023%20-%20Classroom%20Photo.webp") 2x);background-image: image-set(url("img/Summer%20Safe%20Atlanta%20Camp%2023%20-%20Classroom%20Photo.png") 1x,
url("img/Summer%20Safe%20Atlanta%20Camp%2023%20-%20Classroom%20Photo.png") 2x,url("img/Summer%20Safe%20Atlanta%20Camp%2023%20-%20Classroom%20Photo.webp") 1x,
url("img/Summer%20Safe%20Atlanta%20Camp%2023%20-%20Classroom%20Photo.webp") 2x);
}
.bg-Summer-20Safe-20Atlanta-20-20--20White-20--20Logo-20--20Black-20background-20--201500-20px-2072ppi{
	background-image:url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20-%201500%20px%2072ppi.png");
	background-image: -webkit-image-set(url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20-%201500%20px%2072ppi.webp") 1x,
url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20-%201500%20px%2072ppi.webp") 2x);background-image: image-set(url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20-%201500%20px%2072ppi.png") 1x,
url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20-%201500%20px%2072ppi.png") 2x,url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20-%201500%20px%2072ppi.webp") 1x,
url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20-%201500%20px%2072ppi.webp") 2x);
}
.bg-Summer-20Safe-20Atlanta-20-20--20White-20--20Logo-20--20Black-20background-20400px-2070ppi-28Blured-29{
	background-image:url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20400px%2070ppi%28Blured%29.png");
	background-image: -webkit-image-set(url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20400px%2070ppi%28Blured%29.webp") 1x,
url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20400px%2070ppi%28Blured%29.webp") 2x);background-image: image-set(url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20400px%2070ppi%28Blured%29.png") 1x,
url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20400px%2070ppi%28Blured%29.png") 2x,url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20400px%2070ppi%28Blured%29.webp") 1x,
url("img/Summer%20Safe%20Atlanta%20%20-%20White%20-%20Logo%20-%20Black%20background%20400px%2070ppi%28Blured%29.webp") 2x);
}

/* = Custom Bric Data
-------------------------------------------------------------- */



/* = 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){
	.hero-header-text{
		font-size:56px;
		line-height:75px;
	}
	.hero-subheader{
		font-size:22px;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		color:#FEFFFF!important;
	}
	.h2-style{
		font-size:26px;
	}
	.h2-bloc-2-style{
		font-size:26px;
	}
	.h3-bloc-2-style{
		font-size:22px;
	}
	.h3-5-style{
		font-size:22px;
	}
	.roundvid{
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-802)!important;
		fill:var(--swatch-var-802)!important;
	}
	.img-bloc-7-style{
		width:99px;
	}
	.book-container{
		min-height:450px;
	}
	.hero-heading{
		font-size:50px;
	}
	.p-bloc-1-style{
		font-size:14px;
	}
	.h4-style{
		font-size:20px;
	}
	.illustration-section-title{
		font-size:55px;
	}
	.p-3-style{
		font-size:14px;
	}
	.row-style{
		width:100%;
	}
	
}

@media (max-width: 767px){
	.hero-header-text{
		font-size:42px;
		line-height:65px;
	}
	.hero-subheader{
		font-size:15px;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		color:#FEFFFF!important;
	}
	.p-style{
		width:100%;
		font-size:12px;
	}
	.container-div-bloc-4-style{
		width:100%;
	}
	.roundvid{
		border-radius:-10px -10px -10px -10px;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-802)!important;
		fill:var(--swatch-var-802)!important;
	}
	.book-container{
		min-height:440px;
	}
	.hero-heading{
		font-size:50px;
	}
	.img-45-style{
		width:295px;
	}
	.h3-style{
		width:100%;
		font-size:18px;
	}
	.h3-bloc-1-style{
		font-size:18px;
	}
	.img-168-style{
		height:56px;
	}
	.img-29-style{
		height:60px;
	}
	.img-19-style{
		height:50px;
		width:50px;
	}
	.h1-45-style{
		font-size:28px;
	}
	.h1-44-style{
		font-size:28px;
	}
	.h1-43-style{
		font-size:28px;
	}
	.h1-41-style{
		font-size:28px;
	}
	.h1-39-style{
		font-size:28px;
	}
	.h1-36-style{
		font-size:28px;
	}
	.h1-fox-5-atlanta-style{
		font-size:28px;
	}
	.h1-31-style{
		font-size:28px;
	}
	.h1-29-style{
		font-size:28px;
	}
	.h1-golf-not-guns-style{
		font-size:28px;
	}
	.h1-hbcu-tour-style{
		font-size:28px;
	}
	.h1-bloc-18-style{
		font-size:28px;
	}
	.h1-23-style{
		font-size:28px;
	}
	.h1-21-style{
		font-size:28px;
	}
	.h1-19-style{
		font-size:28px;
	}
	.h1-mental-health-style{
		font-size:28px;
	}
	.h1-style{
		font-size:28px;
	}
	.h1-41-bloc-18-style{
		font-size:28px;
	}
	.h1-46-style{
		font-size:28px;
	}
	.h1-47-style{
		font-size:28px;
	}
	.h3-25-style{
		font-size:20px;
	}
	.h3-bloc-18-style{
		font-size:20px;
	}
	.h3-23-style{
		font-size:20px;
	}
	.img-bloc-18-style{
		width:114px;
	}
	.img-14-style{
		width:114px;
	}
	.img-15-style{
		width:114px;
	}
	.img-39-style{
		width:114px;
	}
	.img-40-style{
		width:114px;
	}
	.img-41-style{
		width:114px;
	}
	.img-38-style{
		height:114px;
		width:114px;
	}
	.img-bloc-14-style{
		margin-left:-55px;
		width:207px;
	}
	
}

@media (max-width: 575px){
	.hero-header-text{
		font-size:36px;
		line-height:40px;
	}
	.navbar-logo{
		font-size:18px;
	}
	.footer-link{
		text-align:center;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		color:#FEFFFF!important;
	}
	.illustration-section-title{
		font-size:45px;
		line-height:50px;
	}
	.h5-style{
		font-size:21px;
	}
	.h3-bloc-14-style{
		font-size:13px;
	}
	.bloc-style{
		width:100%;
	}
	.link-style{
		width:100%;
	}
	.link-0-style{
		width:100%;
	}
	.p-16-style{
		font-size:12px;
	}
	.h3-13-style{
		font-size:16px;
	}
	.link-options-style{
		width:100%;
	}
	.link-field-trips-style{
		width:100%;
	}
	.link-activities-style{
		width:100%;
	}
	.link-bloc-14-style{
		width:100%;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-802)!important;
		fill:var(--swatch-var-802)!important;
	}
	.btn-style{
		width:75%;
	}
	.btn-donate-now-style{
		width:75%;
	}
	.hero-subheader{
		font-size:11px;
	}
	.book-container{
		min-height:350px;
	}
	.hero-heading{
		font-size:30px;
	}
	.hero-sub-heading{
		font-size:16px;
	}
	.hero-btn{
		width:100%;
	}
	.img-bloc-18-style{
		width:50px;
	}
	.img-14-style{
		width:50px;
	}
	.img-15-style{
		width:123px;
	}
	.img-16-style{
		width:123px;
	}
	.checkbox-style{
		width:100%;
		font-size:12px;
	}
	.h3-bloc-0-style{
		font-size:18px;
	}
	.h3-2-style{
		font-size:18px;
	}
	.carousel-bloc-7-style{
		width:100%;
	}
	.img-168-style{
		height:56px;
	}
	.text-trans-gradient{
	}
	.img-29-style{
		height:40px;
		width:60px;
	}
	.h1-bloc-18-style{
		font-size:21px;
	}
	.h1-39-style{
		font-size:28px;
	}
	.h1-40-style{
		font-size:21px;
	}
	.h1-41-style{
		font-size:28px;
	}
	.h3-bloc-18-style{
		font-size:21px;
	}
	.h1-33-style{
		font-size:19px;
	}
	.h1-golf-not-guns-style{
		font-size:27px;
	}
	.h1-hbcu-tour-style{
		font-size:28px;
	}
	.h1-48-style{
		font-size:28px;
	}
	.h1-47-style{
		font-size:28px;
	}
	.h4-bloc-7-style{
		font-size:16px;
	}
	.img-bloc-1-style{
		width:270px;
	}
	.img-4-style{
		width:270px;
	}
	.img-3-style{
		width:270px;
	}
	.h1-bloc-34-style{
		line-height:47px;
		font-size:44px;
	}
	.text-purple-gradient{
		background:linear-gradient(183deg, #FF7D5A 39%, #9853F6 95%);
	}
	.img-19-style{
		width:50px;
	}
	.img-135-style{
		width:50px;
	}
	.img-143-style{
		width:50px;
	}
	.img-147-style{
		width:50px;
	}
	.img-bloc-7-style{
		width:50px;
	}
	.h1-bloc-1-style{
		font-size:18px;
	}
	.h3-keith-matthews-style{
		width:66.95%;
	}
	.row-style{
		width:100%;
	}
	
}

