
:root {
	--red : #112e8e;
	--yellow : #ebe823;
	--grey : #2c2c2e;
	--dark: #212121;
}

* {
	outline: none;
    -webkit-overflow-scrolling: touch;
}

@font-face {
  font-family: 'Gotham-Book';
  src: url(../fonts/Gotham-Book.ttf),
  	   url(../fonts/Gotham-Book.otf),
  	   url(../fonts/Gotham-Book.woff),
  	   url(../fonts/Gotham-Book.svg),
  	   url(../fonts/Gotham-Book.eot),
  	   url(../fonts/Gotham-Book.woff2);
}

@font-face {
  font-family: 'Gotham-Medium';
  src: url(../fonts/GothamMedium.ttf),
  	   url(../fonts/GothamMedium.otf),
  	   url(../fonts/GothamMedium.woff),
  	   url(../fonts/GothamMedium.svg),
  	   url(../fonts/GothamMedium.eot),
  	   url(../fonts/GothamMedium.woff2);
}

.mobile {
	display: none !important;
}
.mobile-flex {
	display: none !important;
}
.desktop {
	display: block !important;
}
.desktop-flex {
	display: flex !important;
}

img {
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}

* {
	outline: none;
    -webkit-overflow-scrolling: touch;
}
.add-transition {
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
a {
	text-decoration: none;
	cursor: pointer;
}
button {
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	cursor: pointer;
}

.video-responsive {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     }
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

html,body{
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	position: relative;
	padding: 0;
	margin: 0;
	font-size: 12px;
	font-family: 'Helvetica', Helvetica Neue, Arial, sans-serif;
	color: #fff;
	overflow-x: hidden;
}
#wrapper{
	width: 100%;
	position: relative;
	display: block;
	text-align: center;
	margin: 0;
	padding: 0;
}

/* ============================================ */

a.btn-login{
	display: block;
	margin: 10px 0;
	padding: 0;
	color: #fff;
	font-size: 20px;
}

button.yellow {
	font-family: 'Gotham-Book';
	color : #fff;
	background: var(--red);
	padding: 10px 20px;
	border-radius: 15px;
	font-size: 13px;
	border: none;
}
button.yellow:hover {
	opacity: 0.8;
	cursor: pointer;
}

header {
	position: fixed;
	top : 0;
	left: 0;
	width: 100%;
	background: #fff;
	padding: 10px 0;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	z-index: 99;
	box-shadow: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
header.on {
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
}
header .wrapper {
	width: 1200px;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .wrapper .logo {
	width: 200px;
}
header .wrapper .logo img {
	width: 100%;
}
header .wrapper .menu {
	text-align: right;
}
header .wrapper .menu a {
	color: #fff;
	font-size: 13px;
	font-family: 'Gotham-Book';
}
header .wrapper .menu button {
	margin-left: 10px;
}

footer {
	width: 100%;
	padding: 20px 0;
	background: var(--dark);
	background: #212121;
}
footer .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 90%;
	padding: 0 5%;
}
footer .wrapper .logo {
	width: 180px;
}
footer .wrapper .logo img {
	width: 100%;
}
footer .wrapper .sponsor {
	width: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
footer .wrapper .sponsor a {
	text-decoration: none;
}
footer .wrapper .sponsor .logo-container {
	height: 30px;
	padding: 5px;
	background: #fff;
	margin-left: 10px;
	border-radius: 5px;
}
footer .wrapper .sponsor .logo-container img {
	height: 30px;
}

.segment-upper {
	width: 100%;
	padding: 0%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.segment-upper .area {
	width: 90%;
	padding: 5%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	min-height: 200px;
	position: relative;
	flex-wrap: wrap;
}
.segment-upper .area.red {
	background: var(--red);
	padding-top: 100px;
	height: 270px;
}
.segment-upper .area .mockup-main {
	width: 40%;
}
.segment-upper .area .mockup-main img {
	width: 100%;
}
.segment-upper .area .mockup-main.offset {
	position: absolute;
	top : 20%;
	left: 5%;
	width: 35%;
}
.segment-upper .area .text-container {
	width: 55%;
	text-align: left;
	font-family: 'Gotham-Book';
	color: #444;
	font-size: 14px;
	line-height: 1.3;
}
.segment-upper .area.red .text-container {
	padding-top: 5%;

}
.segment {
	width: 90%;
	padding: 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.segment.red {
	background: var(--red);
}
.segment.grey {
	background: var(--grey);
	min-height: 400px;
}
.segment .balancer {
	height: 0;
	width: 1px;
}
.segment .text-area {
	width: 50%;
	text-align: left;
}
.segment .mockup-area {
	width: 30%;
}
.segment .mockup-area img {
	width: 100%;
}
.segment .form-area {
	width: 40%;
}
.segment .form-area form {
	width: 100%;
}
.segment .form-area form .field {
	width: 100%;
	margin-bottom: 15px;
	text-align: left;
}
.segment .form-area form .field input {
	width: 350px;
	padding: 15px;
	background: #fff;
	color : #333;
	font-family: 'Gotham-Book';
	border : none;
	outline: none;
	border-radius: 5px;
}
.segment .form-area form .field button {
	width: 150px;
}
.line {
	width: 50px;
	height: 5px;
	background: #fff;
	margin-bottom: 20px;
}
.line.black {
	background: #222;
}
h3 {
	font-family: 'Gotham-Medium';
	color: #222;
	margin-bottom: 20px;
	font-size: 18px;
}

h1.black {
	color: #222;
}
p {
	font-family: 'Gotham-Book';
	color: #444;
	font-size: 14px;
	line-height: 1.3;
}
p.white {
	font-family: 'Gotham-Book';
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
}
h1 b.yellow {
	color: var(--yellow);
}
h1 b.yellow.shade {
	text-shadow: 0 0 3px rgba(0,0,0,0.3);
	-moz-text-shadow: 0 0 3px rgba(0,0,0,0.3);
	-ms-text-shadow: 0 0 3px rgba(0,0,0,0.3);
	-webkit-text-shadow: 0 0 3px rgba(0,0,0,0.3);
	-o-text-shadow: 0 0 3px rgba(0,0,0,0.3);
}
h1 b.red {
	color: var(--red);
}


.cover-area {
	width: 100%;
	min-height: 440px;
	position: relative;
}
.cover-area .image-area {
	width: 100%;
	height: 270px;
	overflow: hidden;
	position: relative;
}
.cover-area .image-area .background {
	width: 100%;
	height: 270px;
	object-fit: cover;
	object-position: center;
}
.cover-area .image-area .logo {
	height: 80px;
	position: absolute;
	top : 40%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.cover-area .search-box {
	position: absolute;
	z-index: 2;
	top : 200px;
	left: 50%;
	background: #fff;
	width: 800px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	transform: translate(-50%,0);
}
.cover-area .search-box .input-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 10px;
	border : solid 1px #aaa;
}
.cover-area .search-box .input-box input {
	font-family: 'Gotham-Book';
	width: 90%;
	padding: 10px;
	background: none;
	outline: none;
	border : none;
	font-size: 16px;
}
.cover-area .search-box .input-box button {
	padding: 10px 15px;
	border : none;
	background: none;
	outline: none;
	color: #fff;
	font-size: 18px;
	background: var(--red);
	border-radius: 0 10px 10px 0;

}
.cover-area .search-box .advance {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 20px;
	flex-wrap: wrap;
}
.cover-area .search-box .advance .field {
	width: 30%;
	text-align: left;
}
.cover-area .search-box .advance .field label {
	font-family: 'Gotham-Book';
	color: #777;
	font-size: 11px;
}
.cover-area .search-box .advance .field select,
.cover-area .search-box .advance .field input {
	width: 100%;
	margin-top: 10px;
	background: #f8f8f8;
}
.cover-area .search-box .advance .field select {
	border : solid 1px #ccc;
	padding: 10px;
	font-family:'Gotham-Book';
	color: #666;
	height: 40px;
}
.cover-area .search-box .advance .field input {
	border : solid 1px #ccc;
	padding: 0 5%;
	font-family:'Gotham-Book';
	color: #666;
	height: 40px;
	width: 90%;
	border-radius: 5px;
}
.content-box {
	width: 100%;
	display: flex;
	justify-content: center;
}
.content-box .event-wrapper {
	width: 860px;
}
.content-box .event-wrapper fieldset {
	border-top: solid 1px #f0f0f0;
	margin-bottom: 30px;
}
.content-box .event-wrapper fieldset legend {
	padding-right: 10px;
	font-family: 'Gotham-Medium';
	color: #888;
	font-size: 18px;
}
.content-box .event-wrapper .item {
	width: 94%;
	padding: 3%;
	background: #fff;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-ms-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	flex-wrap: wrap;;
}
.content-box .event-wrapper .item:hover {
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	-ms-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
.content-box .event-wrapper .item img {
	width: 150px;
	height: 150px;
	object-position: center;
	object-fit: cover;
	border-radius: 10px;
}
.content-box .event-wrapper .item button {
	background: var(--red);
	color: #fff;
	padding: 10px 30px;
	border : none;
	outline: none;
	font-family: 'Gotham-Book';
	border-radius: 10px;
}
.content-box .event-wrapper .item button:hover {
	cursor: pointer;
	opacity: 0.8;
}
.content-box .event-wrapper .item .description {
	width: 60%;
	text-align: left;
	color: #888;
	font-family: 'Gotham-Book';
	line-height: 1.3;
	font-size: 12px;
}
.content-box .event-wrapper .item .description  b {
	font-family: 'Gotham-Medium';
	color: #555;
}
.content-box .event-wrapper .item .description h1 {
	font-size: 23px;
	color: #444;
	font-family: 'Gotham-Medium';
	margin-bottom: 10px;
}
.content-box .event-wrapper .item .description span.price {
	font-size: 16px;
	color: var(--red);
	font-family: 'Gotham-Medium';
}
.detail-container {
	width: 100%;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.detail-container .cover {
	width: 100%;
	position: relative;
}
.detail-container .cover  img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: top;
}
.detail-container .cover .text-container {
	width: 1200px;
	position: absolute;
	left: 50%;
	bottom: 0px;
	padding: 20px 5% 30px 5%;
	color: #fff;
	transform: translate(-50%,0);
	text-align: left;
	font-size: 16px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&0.78+0,0+100 */
	background: -moz-linear-gradient(bottom,  rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(bottom,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to top,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c71e5799', endColorstr='#007db9e8',GradientType=0 ); /* IE6-9 */
}

.detail-container .cover .text-container h1 {
	margin-bottom: 10px;
	font-family: 'Gotham-Medium';
	font-size: 32px;
}
.detail-container .body-area {
	width: 1200px;
	padding: 5% 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.detail-container .body-area .left-segment {
	width: 70%;
	text-align: left;
}
.detail-container .body-area .left-segment .list {
	margin-bottom: 10px;
	width: 100%;
	line-height: 1.2;
}
.detail-container .body-area .left-segment .list span {
	font-size: 11px;
	color: #888;
}
.detail-container .body-area .left-segment .list b {
	font-size: 18px;
	color: #666;
	font-family: 'Gotham-Medium';
}
.detail-container .body-area .left-segment .desc {
	margin: 20px 0;
	width: 100%;
	font-family: 'Gotham-Book';
	color: #777;
	font-size: 14px;
	line-height: 1.2;
}
.detail-container .body-area .left-segment .desc p {
	margin-bottom: 10px;
}
.detail-container .body-area .right-segment {
	width: 22%;
	padding: 2%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-ms-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	text-align: left;
}
.detail-container .body-area .right-segment .label {
	font-family: 'Gotham-Book';
	color: #666;
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 1.2;
}
.detail-container .body-area .right-segment .price {
	font-size: 18px;
	color: var(--red);
	font-family: 'Gotham-Medium';
	margin-bottom: 20px;
}
.detail-container .body-area .right-segment button {
	width: 100%;
	background: var(--red);
	color: #fff;
	font-family: 'Gotham-Medium';
	padding: 10px 0;
	border-radius: 10px;
	border : none;
	outline: none;
}
.detail-container .body-area .right-segment button:hover {
	cursor: pointer;
	opacity: 0.8;
}
.register-container {
	width: 100%;
	padding: 5% 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.register-container .tab {
	width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: solid 1px #ccc;
}
.register-container .tab .item {
	width: 29.333%;
	text-align: left;
	color: #777;
	padding: 2%;
	background: #f8f8f8;
	border: solid 1px #eee;
	margin-bottom: -1px;
}
.register-container .tab .item span {
	font-size: 12px;
	color: #aaa;
}
.register-container .tab .item .title {
	font-size: 14px;
	font-family: 'Gotham-Medium';
	color: #555;
	margin-top: 10px;
}
.register-container .tab .item.active {
	border-bottom: solid 1px var(--red);
	background: #fff;
}
.register-container .form-area {
	width: 1200px;
	margin: 20px 0;
}
.register-container .form-area form {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.register-container .form-area .field {
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
}
.register-container .form-area .field.half {
	width: 49%;
}
.register-container .form-area .field label {
	font-size: 12px;
	color: #999;
	font-family: 'Gotham-Book';
}
.register-container .form-area .field input[type=text] {
	width: 96%;
	margin-top: 10px;
	font-family: 'Gotham-Book';
	font-size: 12px;
	padding: 10px 2%;
	border : solid 1px #ccc;
}
.register-container .form-area .field .multiple {
	width: 100%;
	margin-top: 10px;
}
.register-container .form-area .field .multiple .item {
	width: 100%;
	color: #777;
	font-family: 'Gotham-Book';
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
}
.register-container .form-area hr {
	width: 100%;
	margin : 20px 0;
	background: #ccc;
	border : none;
	outline: none;
	height: 1px;
}
.register-container .form-area .field.button-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.register-container .form-area .field.button-right button.red {
	background: var(--red);
	color: #fff;
	font-family: 'Gotham-Book';
	font-size: 14px;
	padding: 15px 30px;
	border : none;
	outline: none;
	border-radius: 10px;
}
.register-container .form-area .field.button-right button.grey {
	background: #f0f0f0;
	color: #555;
	font-family: 'Gotham-Book';
	font-size: 14px;
	padding: 15px 30px;
	border : none;
	outline: none;
	border-radius: 10px;
}
.register-container .form-area .field.button-right button:hover {
	opacity: 0.8;
}
.payment-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 50px 0;

}
.common-box-panel {
	margin-top: 0;
	width: 1200px;
}
.common-box-panel .thank-you {
	width: 100%;
	text-align: center;
	margin: 3em 0 2em 0;
}
.common-box-panel .thank-you button.icon {
	width: 150px;
	height: 150px;
	border : solid 4px #42a046;
	background : none;
	outline: none;
	color: #42a046;
	font-size: 53px;
	border-radius: 79px;
}
.common-box-panel .thank-you button.icon.red {
	color: #f00;
	border-color: #f00;
}
.common-box-panel .thank-you .text {
	color: #aaa;
	margin: 10px 0;
	font-family: 'Gotham-Book';
	font-size: 14px;
}
.common-box-panel .thank-you .text.big {
	font-size: 18px;
	font-family: 'Gotham-Medium';
	color: #555;
	margin-top: 28px;
}
.common-box-panel .thank-you .text b {
	font-family: 'Gotham-Medium';
	color: #888;
}
.common-box-panel .thank-you .text b.orange {
	color: #000000;
}
.common-box-panel .thank-you .total {
	width: 300px;
	background: #f0f0f0;
	display: inline-block;
	margin: 20px 0;
}
.common-box-panel .thank-you .total .number {
	width: 90%;
	padding: 5%;
	color: #555;
	font-family: 'Gotham-Book';
	font-size: 23px;
}
.common-box-panel .thank-you .total .number b {
	font-family: 'Gotham-Medium';
}
.common-box-panel .thank-you .total .disclaimer {
	background: #000000;
	color: #fff;
	width: 90%;
	padding: 10px 5%;
	font-family: 'Gotham-Book';
	font-size: 11px;
}
.common-box-panel .button-area {
	text-align: center;
	width: 100%;
	margin: 20px 0;
}
.common-box-panel .button-area button {
	background: var(--red);
	color: #fff;
	font-family: 'Gotham-Book';
	font-size: 14px;
	padding: 12px 30px;
	border : none;
	outline: none;
	border-radius: 10px;
}
.common-box-panel .button-area button:hover {
	cursor: pointer;
	opacity: 0.8;
}

@media(max-width: 768px) {
	.mobile {
		display: block !important;
	}
	.mobile-flex {
		display: flex !important;
	}
	.desktop {
		display: none !important;
	}
	.desktop-flex {
		display: none !important;
	}
	footer .wrapper .logo {
		width: 100%;
		margin-bottom: 20px;
		order: 2;
		text-align: center;
	}
	footer .wrapper .logo img {
		width: 200px;
		display: inline-block;
	}
	footer .wrapper .sponsor {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		order: 1;
		margin-bottom: 20px;
	}
	.segment {
		padding: 50px 5%;
	}
	.segment .text-area {
		width: 100%;
		text-align: center;
	}
	.segment .text-area .line {
		display: inline-block;
	}
	.segment .mockup-area {
		width: 100%;
		text-align: center;
	}
	.segment .mockup-area img {
		width: 70%;
	}
	.segment .form-area {
	    width: 100%;
	    margin-top: 30px;
	}
	.segment .form-area form .field {
		width: 100%;
		margin-bottom: 15px;
		text-align: center;
	}
	.segment .form-area form .field input {
		width: 80%;
		padding: 15px;
		background: #fff;
		color : #333;
		font-family: 'Gotham-Book';
		border : none;
		outline: none;
		border-radius: 5px;
	}
	.segment .form-area form .field button {
		width: 150px;
	}
	.segment-upper .area .text-container {
		width: 100%;
		text-align: center;
	}
	.segment-upper .area .text-container h1 {
		font-size: 16px;
	}
	.segment-upper .area .text-container .line {
		display: inline-block;
	}
	.segment-upper .area .mockup-main {
		width: 100%;
	}
	.segment-upper .area.red {
	    background: var(--red);
	    padding-top: 100px;
	    height: 400px;
	}
	.segment-upper .area .mockup-main.offset {
	    position: absolute;
	    top: 45%;
	    left: 50%;
	    width: 250px;
	    transform: translate(-50%,0);
	}
	.segment-upper .area .text-container.special {
		padding-top: 50px;
	}
	.cover-area .image-area .logo {
	    height: auto;
	    position: absolute;
	    top: 40%;
	    left: 50%;
	    transform: translate(-50%,-50%);
	    width: 300px;
	}
	.cover-area .search-box {
	    position: absolute;
	    z-index: 2;
	    top: 200px;
	    left: 50%;
	    background: #fff;
	    width: 80%;
	    padding: 5%;
	}
	.cover-area .search-box .advance .field {
	    width: 100%;
	    text-align: left;
	    margin-bottom: 10px;
	}
	.cover-area {
	    width: 100%;
	    min-height: 550px;
	    position: relative;
	}
	.content-box .event-wrapper {
	    width: 90%;
	}
	.content-box .event-wrapper .item img {
	    width: 100%;
	    height: 150px;
	    object-position: center;
	    object-fit: cover;
	    border-radius: 10px;
	}
	.content-box .event-wrapper .item .description {
	    width: 100%;
	    text-align: left;
	    color: #888;
	    font-family: 'Gotham-Book';
	    line-height: 1.3;
	    font-size: 12px;
	    margin: 10px 0;
	}
	.content-box .event-wrapper .item button {
	    background: var(--red);
	    color: #fff;
	    padding: 15px 0;
	    border: none;
	    outline: none;
	    font-family: 'Gotham-Book';
	    border-radius: 10px;
	    width: 100%;
	    font-size: 18px;
	}
	.detail-container .body-area .left-segment {
	    width: 100%;
	    text-align: left;
	}
	.detail-container .body-area .right-segment {
	    width: 90%;
	    padding: 5%;
	}
	.detail-container .body-area .right-segment .label {
	    font-family: 'Gotham-Book';
	    color: #666;
	    font-size: 18px;
	    margin-bottom: 10px;
	    line-height: 1.2;
	}
	.detail-container .body-area .right-segment .price {
	    font-size: 23px;
	    color: var(--red);
	    font-family: 'Gotham-Medium';
	    margin-bottom: 20px;
	}
	.detail-container .body-area .right-segment button {
	    width: 100%;
	    background: var(--red);
	    color: #fff;
	    font-family: 'Gotham-Medium';
	    padding: 20px 0;
	    border-radius: 10px;
	    border: none;
	    outline: none;
	    font-size: 18px;
	}
	.register-container .form-area .field.button-right button.red {
		width: 100%;
	}
	.register-container .form-area .field.half {
	    width: 100%;
	}
	.common-box-panel {
		margin-top: 50px;
		width: 90%;
	}
	.detail-container .cover .text-container {
		width: 90%;
	}
	 {
		width: 90%;
	}
	.detail-container .body-area {
		width: 90%;
		justify-content: center;
	}
	.register-container .form-area {
		width: 90%;
	}
}
