/* ----------------------------------
        SHOWCASE STYLES
---------------------------------- */

:root {
    --default-width: calc(100% - 10vw);
    --default-block-padding: min(110px, 10vw);
    --default-inline-padding: min(50px, 5vw);
    --thin-width: min(774px, 100%);
    --bs: 6px 8px 20px 0px rgba(0, 0, 0, 0.35);
}

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

html {
    background: #fff;
}

body {
    overflow-x: hidden;
    color: #000;
	width: 100vw;
}

.section {
	position: relative;
	padding-block: var(--default-block-padding);
    padding-inline: var(--default-inline-padding);
    box-sizing: border-box;
	overflow-x: clip;
}

.wrapper {
    margin-inline: auto;
    position: relative;
}


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

.vhc {
	display: flex;
	align-items: center;
	justify-content: center;
}
.vc {
	display: flex;
	align-items: center;
}
.hc {
	display: flex;
	justify-content: center;
}



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


/* NEW VIDEO STYLES */
.video-container {
  position: relative;
  max-width: 1700px;
  width: 100%;
}

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


/* ----------------------------------
        	MARK: COLORS
---------------------------------- */
.red {color: #ff0735;}
.blue {color: #2294b8;}
.white {color: #ffffff;}
.orange {color: #e87f07;}
.green {color: #6fbe49;}

.white_bg {background: #fff;}
.green_bg {background: #6fbe49;}


/* ----------------------------------
        MARK: CUSTOM CODE
---------------------------------- */
.fixed_bg {
	width: 100vw;
	height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	display: block;
} 

.balance {text-wrap: balance;}

.textbox {
	width: 100%;
	position: relative;
	margin-inline: auto;
}

.box_style {
	background-color: #fff;
	padding: min(70px, 6vw) min(70px, 6vw);
    box-sizing: border-box;
    box-shadow: var(--bs);
}

h5 {
	--min-font-size: 39;
}

/* ----------------------------------
        	MARK: Box #1
---------------------------------- */
#box_1 .wrapper {width: min(900px, 100%);}


/* ----------------------------------
        	MARK: Box #2
---------------------------------- */
#bg_2 {background: url(../images/Image1_HD.jpg) 50% 50% / cover no-repeat;}
#box_2 {min-height: min(1024px, 95dvh);}
#box_2 .wrapper {width: var(--thin-width);}


/* ----------------------------------
        	MARK: Box #3
---------------------------------- */
#box_3::before {
	content: '';
	width: 100%;
	height: min(20px, 3vw);
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent);
}
#box_3 .wrapper {
	width: min(1490px, 100%);
	min-height: min(1221px, 114dvh);
	background: url(../images/Image2_HD.jpg) 50% 50% / cover no-repeat;
	box-shadow: var(--bs);
	padding: var(--default-inline-padding);
	box-sizing: border-box;
}
#textbox_3 {width: var(--thin-width);}


/* ----------------------------------
        	MARK: Box #4
---------------------------------- */
#box_4 {
	padding-top: 0;
	margin-top: -1px;
}
#box_4 .wrapper {width: min(1498px, 100%);}
#textbox_4 {
	width: min(998px, 100%);
	margin-bottom: var(--default-block-padding);
}
#box_4 .bottom_container {
	width: 100%;
	position: relative;
	display: block;
}


/* ----------------------------------
        	MARK: Box #5
---------------------------------- */
#box_5 {
	min-height: min(983px, 92dvh);
	background: url(../images/Image4_HD.jpg) 50% 50% / cover no-repeat;
}
#box_5 .wrapper {width: var(--thin-width);}


/* ----------------------------------
        	MARK: Box #6
---------------------------------- */
#box_6 {background-color: #000;}
.chat_layout .wrapper {width: min(1210px, 100%);}
.chat_layout .textbox {
	width: 100%;
	position: relative;
	margin: auto;
	color:#fff;
	gap: min(50px, 5vw);
}
.closing {
	max-width: 70%;
	flex-shrink: 0;
}


/* Keep these near the bottom to make sure your custom code doesn't accidentally overwrite these classes */
.show_on_HD {display: block;}
.show_on_4K, .show_on_MOB {display: none;}



/* ----------------------------------
        MARK: Medie Queries
---------------------------------- */

/* TABLET */
@media only screen and (max-width: 1024px) {
	.show_on_MOB {display: block;}
    .show_on_HD, .show_on_4K {display: none;}
}

/* MOBILE */
@media only screen and (max-width: 768px) {
	#bg_2 {background: url(../images/Image1_MOB.jpg) 50% 50% / cover no-repeat;}
	#box_3 .wrapper {background: url(../images/Image2_MOB.jpg) 50% 50% / cover no-repeat;}
	#box_5 {background: url(../images/Image4_MOB.jpg) 50% 50% / cover no-repeat;}
	#box_2, #box_3 .wrapper, #box_5 {min-height: 78dvh;}
}

@media only screen and (max-width: 600px) {
	#box_2, #box_3 .wrapper, #box_5 {
        min-height: unset;
        padding-block: calc(var(--default-block-padding) * 2.5);
    }
	.box_style {text-align: start;}
	.chat_layout {padding-bottom: calc(var(--default-block-padding) + 4vw);}
	.chat_layout .textbox {
		gap: 7vw;
		flex-direction: column;
		text-align: center;
	}
	.closing {max-width: 100%;}
}
