/* ----------------------------------
        SHOWCASE STYLES
---------------------------------- */
:root {
    --default-width: calc(100% - 10vw);
}


* {
    margin: 0px;
    padding: 0px;
}

body {
    overflow-x: hidden;
	color: #111111;
}

.wrapper {
    position: relative;
    margin-inline: auto;
    padding-block: min(5.3125em, 10vw);
    box-sizing: border-box;
}

/* Font Styles ------------------------- */


.orange {color: #e26932;}
.white {color: #ffffff;}
.green {color: #717434;}


/* Misc Default Styles ------------------------- */
.nomargin { margin: 0 !important; }
.notopmargin, .nomargintop {margin-top: 0 !important;}
.nobottommargin, .nomarginbottom {margin-bottom: 0 !important;}

.left {text-align: left;}
.center {text-align: center;}
.right {text-align: right;}

.section {
	position: relative;
	width: 100%;
}

.left_half, .right_half {width: 49%;}

.full_img {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
}

/* ----------------------------------
            CUSTOM CODE
---------------------------------- */
#main_inner {
	min-height: 100vh;
	background: #ffffff;
	position: relative;
	z-index: 1;
	box-shadow: 0px 0.125em 0.3125em 0px rgba(0,0,0,0.21);
}
#box_1 .wrapper {
	width: min(720px, var(--default-width));
}
#box_1 {
	height: fit-content;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: flex-start;	
}

#box_2 {
    width: 100%;
    min-height: 40.5em;
    background: url(../images/2_Band.jpg) 50% 50% / cover no-repeat;
    padding-top: 5.3125em;
    margin-top: min(3.75em, 14vw);
}
#box_2 .wrapper {
	width: min(1065px, var(--default-width));
	padding-top: 0;
	margin-top: -9.5em;
}
#people_container_2 {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
    align-items: flex-start;
	margin-bottom: 4.0625em;
}
.people_2 {
	width: 23.5%;
	height: auto;
}

#textbox_2 {
    width: min(820px, 96%);
    background-color: #ffffff;
    padding: min(75px, 5vw);
    box-shadow: 6.018px 7.986px 20px 0px rgba(0, 0, 0, 0.35);
    height: fit-content;
    position: relative;
    margin: auto;
	margin-top:max(-9.5em, -10vw);
	box-sizing: border-box;
}

#box_3 .wrapper {
	width: min(1125px, var(--default-width));
}

#textbox_3 {
    width: min(900px, 100%);
	margin-inline: auto;
    margin-bottom: min(80px, 7vw);
}

.video-wrapper {
    position: relative;
    width: 100%;
}

video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

#bg_box_4 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../images/4_BG.jpg) 50% 50% / cover no-repeat;
    z-index: -1;
}
#box_4 .wrapper {
	width: min(835px, var(--default-width));
	margin: 190px auto;
}

#textbox_4 {
    background-color: #ffffff;
    padding: min(4.6875em, 5vw);
    box-shadow: 6.018px 7.986px 20px 0px rgba(0, 0, 0, 0.35);
    height: fit-content;
    position: relative;
    margin: auto;
}



#box_6 {
	width: 100%;
	height: fit-content;
	background-color: #717434;
	align-items: center;
	overflow: hidden;
}

#box_6 > .wrapper {
	width: min(1000px, var(--default-width));
	padding-top: 2.3125em;
    padding-bottom: 2.3125em;
}

#textbox_6 {
	position: relative;
	margin: auto;
	color:#fff;
	display: flex;
	flex-direction:row;
	text-align: left;
	justify-content: center;
	align-items: center;
	gap: 20px min(50px, 8vw);
}

.closing {
	max-width: 670px;
}




/* ----------------------------------
            MEDIA QUERIES
---------------------------------- */
/* TABLET */
@media only screen and (max-width: 1024px) {
	#box_2 {min-height: unset;}


	#box_4 .wrapper {margin: 140px auto;}

}


/* MOBILE */
@media only screen and (max-width: 768px) {
	
	#box_1 {
		height: auto;
		min-height: auto;
	}
	
	#people_container_2 {margin-bottom: 40px;}	

	#box_4 .wrapper {margin: 45px auto;}
	
	#textbox_6 {
	    flex-wrap: wrap;
        text-align: center;
	}
	
}

@media only screen and (max-width: 600px) {
	#people_container_2 {margin-bottom: 20px;}
	
	.closing {
		width: 100%;
		max-width: unset;
	}
	#textbox_2, #box_4 {
        text-align: start;
    }
	
}


