
:root {
	--red : #ec3630;
	--dark-red : #ba1410;
	--blue : #194e9b;
	--grey : #d1d2d4;
	--dark : #272727;
	--text-title : #171717;
	--text-content : #454545;
}

@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;
}
.bgblack {
	position: fixed;
	z-index: 999998;
	top : 0;
	left: 0;
	width: 100%;
	height: 100%;
	background : rgba(0,0,0,0.6);
	display: none;
}
.sidebarmenu {
	position: fixed;
	z-index: 999999;
	top: 0;
	right:-81%;
	width: 80%;
	padding: 0;
	height: 100%;
	background: #fff;
	box-shadow: -3px 0 4px rgba(0,0,0,0.3);
	-moz-box-shadow: -3px 0 4px rgba(0,0,0,0.3);
	-ms-box-shadow: -3px 0 4px rgba(0,0,0,0.3);
	-webkit-box-shadow: -3px 0 4px rgba(0,0,0,0.3);
	-o-box-shadow: -3px 0 4px rgba(0,0,0,0.3);
	overflow-y: scroll;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.sidebarmenu.on {
	right: 0;
}
.sidebarmenu .back-menu {
	margin-bottom: 10px;
	text-align: right;
	width: 90%;
	padding: 5%;
}
.sidebarmenu .back-menu button {
	background: none;
	outline: none;
	border : none;
	color: #666;
	font-size: 23px;
}
.sidebarmenu .menu-area {
	width: 100%;
	margin: 20px 0;
	text-align: right;
}
.sidebarmenu .menu-area ul li {
	font-family: 'Gotham-Book';
	color: var(--text-content);
	padding: 5%;
	width: 90%;
	border-bottom: solid 1px #f0f0f0;
}
.sidebarmenu .menu-area ul li.dark {
	background: #f8f8f8;
}
* {
	font-family: sans-serif;
}
a {
	text-decoration: none;
	color: var(--text-content);
}
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;
}
button:hover {
	cursor: pointer;
}
button.red {
	padding: 10px 20px;
	background: var(--red);
	color: #fff;
	font-family: 'Gotham-Book';
	font-size: 14px;
	border : none;
	outline: none;
	border-radius: 10px;
}
button.red:hover {
	opacity: 0.8;
}
button.red:disabled {
	background: #aaa;
	opacity: 0.8;
	cursor: not-allowed;
}
button.hollow-white {
	color: #fff;
	font-family: 'Gotham-Book';
	font-size: 14px;
	padding: 10px 20px;
	border : solid 1px #fff;
	outline: none;
	background: none;
}
button.hollow-white:hover {
	background: #fff;
	color: #333;
}
body {
	background: #f8f8f8;
	padding: 0;
	margin: 0;
}

header {
	position: fixed;
	z-index: 9999;
	top : 5%;
	left: 50%;
	width: 90%;
	padding: 0;
	transform: translate(-50%,0);
	box-shadow: 1px 0 4px rgba(0,0,0,0.3);
	-moz-box-shadow: 1px 0 4px rgba(0,0,0,0.3);
	-ms-box-shadow: 1px 0 4px rgba(0,0,0,0.3);
	-webkit-box-shadow: 1px 0 4px rgba(0,0,0,0.3);
	background: #fff;
	border-radius: 10px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
}
header.on {
	top : 0px;
	border-radius: 0 0 10px 10px;
	box-shadow: 2px 0 10px rgba(0,0,0,0.4);
	-moz-box-shadow: 2px 0 10px rgba(0,0,0,0.4);
	-ms-box-shadow: 2px 0 10px rgba(0,0,0,0.4);
	-webkit-box-shadow: 2px 0 10px rgba(0,0,0,0.4);
}
header .wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .wrapper .logo-area {
	padding: 8px;
	width: 10%;
	text-align: center;
}
header .wrapper .logo-area img {
	width: 80px;
}
header .wrapper .menu-area {
	width: 65%;
	display: flex;
}
header .wrapper ul {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
header .wrapper ul li {
	padding: 27px 20px 24px 20px;
	margin: 0;
	border-left:  solid 1px #e0e0e0;
	position: relative;
	font-family: 'Gotham-Book';
	font-size: 10px;
	border-bottom: solid 3px var(--red);
	color: var(--text-content);
}
header .wrapper ul li:hover {
	border-bottom: solid 3px var(--blue);
	background: var(--blue);
	color: #fff !important;
}
header .wrapper ul a:last-child li {
	border-right: solid 1px #e0e0e0;
}
header .wrapper ul.dropdown {
	display: none;
	position: absolute;
	top : 100%;
	left: 0;
	background: #fff;
}
header .wrapper ul.dropdown li {
	border-bottom: solid 1px #e0e0e0;
	font-size: 10px;
	padding: 12px 10px;
}
header .wrapper ul li:hover ul.dropdown {
	display: block;
}
header .login-area {
	width: 25%;
	display: flex;
	justify-content: flex-end;
	padding: 20px;
	font-size: 10px;
	font-family: 'Gotham-Book';
	align-items: center;
	vertical-align: middle;
	align-items: center;
	position: relative;
}
header .login-area i {
	font-size: 23px;
}
header .login-area i.small {
	font-size: 12px;
	opacity: 0.8;
}
header .login-area:hover {
	cursor: pointer;
}
header .login-area:hover span {
	opacity: 0.8;
}
header .login-area:hover ul.dropdown {
	display: block;
}
header .login-area ul.dropdown {
	width: 200px;
	right: 0;
	left: auto;
}
header .login-area ul.dropdown li  {
	text-align: right;
}
footer {
	background: #171717;
	width: 90%;
	padding:  5%;
}
footer .wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Gotham-Book';
	color: #fff;
	flex-wrap: wrap;
}
footer .wrapper .logo-area {
	width: 50%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
footer .wrapper .logo-area img {
	width: 150px;
}
footer .wrapper .logo-area .separator {
	width: 1px;
	background: #fff;
	height: 100px;
	margin : 0 10px;
}
footer .wrapper .logo-area .text-footer {
	font-family: 'Gotham-Book';
	color: rgba(255,255,255,0.7);
	font-size: 11px;
	width: 50%;
}
footer .wrapper .logo-area .text-footer .big {
	width: 100%;
	text-align: left;
	font-size: 13px;
	color: #fff;
	margin-bottom: 10px;
}
footer .wrapper .socmed {
	width: 50%;
	text-align: right;
}
footer .wrapper .socmed button {
	background: #fff;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	outline: none;
	border : none;
	color: #222;
	margin-left: 5px;
}
footer .wrapper .socmed button:hover {
	opacity: 0.8;
}
.slider-area {
	width: 100%;
	position: relative;
	z-index: 1;
}
.slider-area .overlay {
	position: absolute;
	top : 0;
	left: 0;
	width: 100%;
	height: 30%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,ffffff+100&0.84+0,0+100 */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.84) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.84) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.84) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6000000', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}
.slider-area .item {
	position: relative;
}
.slider-area .item img {
	width: 100%;
}
.slider-area .item .text-area {
	position: absolute;
	z-index: 3;
	top : 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
	text-align: center;
	display: inline-block;
}
.slider-area .item .text-area .line {
	font-size: 32px;
	color: #fff;
	font-family: 'Gotham-Medium';
	padding: 10px;
	border-radius: 8px;
	width: auto;
	margin-bottom: 5px;
	display: inline-block;
	margin-right: 50px;
	opacity: 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;
}
.slider-area .item .text-area .line.red {
	background: var(--red);
}
.slider-area .item .text-area .line.blue {
	background: var(--blue);
}
.slider-area .item .text-area .line.on {
	margin-right: 0;
	opacity: 1;
}
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}
.slide-body .slick-dots {
    position: absolute;
    bottom: -80px;
}
.slide-body .slick-dots li button {
	background: #f0f0f0;
}
.slide-body .slick-dots li.slick-active button {
	background: #272727 !important;
}
.segment {
	width: 100%;
	display: flex;
}
.segment.white {
	background: #fff;
}
.segment.blue {
	background: var(--blue);
}
.segment.red {
	background: var(--red);
}
.segment.grey {
	background: #f0f0f0;
}
.segment.development {
	background: url(../images/cs.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center right;
	min-height: 500px;
}
.segment .wrapper {
	padding: 5%;
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.segment .wrapper.center {
	justify-content: center;
}
.segment .wrapper.red {
	background: rgba(255,0,0,0.6);
}
.segment .wrapper.padding-bottom {
	padding-bottom: 150px;
}
.segment .wrapper .thumb-image {
	width: 250px;
	height: 250px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}
.segment .wrapper .thumb-image .bg {
	width: 250px;
	height: 250px;
	object-fit: cover;
	object-position: center;
}
.segment .wrapper .thumb-image .overlay {
	background: var(--blue);
	opacity: 0.7;
	position: absolute;
	top : 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.segment .wrapper .thumb-image .logo {
	position: absolute;
	top : 50%;
	left: 50%;
	width: 150px;
	z-index: 3;
	transform: translate(-50%,-50%);
}
.segment .wrapper .common-text-area {
	width: 100%;
	font-size: 14px;
	font-family: 'Gotham-Book';
	color: var(--text-content);
}
.segment .wrapper .common-text-area.white {
	color: #fff;
}
.segment .wrapper .common-text-area.center {
	text-align: center;
}
.segment .wrapper .common-text-area.padding-bottom {
	padding-bottom: 30px;
}
.segment .wrapper .common-text-area .heading-area {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.segment .wrapper .common-text-area .heading-area .search-box {
	width: 300px;
	background: #f0f0f0;
	border : none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
}
.segment .wrapper .common-text-area .heading-area .search-box input {
	width: 80%;
	padding: 10px;
	background: none;
	outline: none;
	border : none;
	font-size: 13px;
}
.segment .wrapper .common-text-area .heading-area .search-box button {
	background: none;
	outline: none;
	border : none;
	padding: 10px;
}
.segment .wrapper .common-text-area .heading-area .attribute {
	width: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.segment .wrapper .common-text-area .heading-area .attribute .item {
	padding: 5px 10px;
	border-radius: 5px;
	background: #f0f0f0;
	font-family: 'Gotham-Book';
	color: #333;
	font-size: 14px;
	margin-right: 5px;
}
.segment .wrapper .common-text-area h1 {
	width: 100%;
	font-size: 21px;
	font-family: 'Gotham-Medium';
	color: var(--text-title);
}
.segment .wrapper .common-text-area.white h1 {
	color: #fff;
}
.segment .wrapper .common-text-area h1 span {
	font-size: 16px;
	font-family: 'Gotham-Book';
}
.segment .wrapper .common-text-area .text-body {
	margin-top: 20px;
	line-height: 1.2;
}
.segment .wrapper .common-text-area .text-body p {
	margin-bottom: 15px;
}
.segment .wrapper .common-text-area.white .text-body p {
	color: #fff;
}
.segment .wrapper .common-text-area .text-body strong {
	font-family: 'Gotham-Medium';
}
.segment .wrapper .common-text-area .text-body ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.segment .wrapper .common-text-area hr {
	width: 100%;
	border : none;
	height: 1px;
	background: #f0f0f0;
}
.segment .wrapper .common-text-area .text-body ul li {
	list-style: disc;
	margin-bottom: 20px
}
.segment .wrapper .common-text-area.homepage {
	width: 75%;
}
.segment .wrapper .common-text-area.development {
	width: 50%;
}
.segment .wrapper .common-text-area .heading-common {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.segment .wrapper .common-text-area .heading-common h1 {
	width: 50%;
}
.segment .wrapper .common-text-area .heading-common .search-area {
	background: #f0f0f0;
	padding: 10px;
	border-radius: 5px;
}
.segment .wrapper .common-text-area .heading-common .search-area input {
	background: none;
	outline: none;
	border: none;
	width: 200px;
}
.segment .wrapper .common-text-area .heading-common .search-area button {
	background: none;
	outline: none;
	border: none;
}
.segment .wrapper .common-text-area .fasilitator-area {
	width: 100%;
	margin: 20px 0;
}
.segment .wrapper .common-text-area .fasilitator-area .content-area {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.segment .wrapper .common-text-area .fasilitator-area .content-area .item {
	width: 18%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.segment .wrapper .common-text-area .fasilitator-area .content-area .item .image-area {
	width: 180px;
	height: 180px;
	overflow: hidden;
	border-radius: 90px;
	margin-bottom: 20px;
}
.segment .wrapper .common-text-area .fasilitator-area .content-area .item .image-area img {
	width: 180px;
	height: 180px;
	object-position: center;
	object-fit: cover;
}
.segment .wrapper .common-text-area .fasilitator-area .content-area .item .name-area {
	width: 100%;
	text-align: center;
}
.segment .wrapper .common-text-area .fasilitator-area .content-area .item .name-area h3 {
	font-family: 'Gotham-Medium';
	margin-bottom: 5px;
}
.segment .wrapper .common-text-area .fasilitator-area .content-area .item .name-area span {
	font-size: 11px;
	color: #888;
	font-family: 'Gotham-Book';
}
.segment .wrapper .common-text-area .fasilitator-area .pagination-area {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.segment .wrapper .panel-box {
	width: 45%;
	min-height: 180px;
	background: #fff;
	padding: 2%;
	border-radius: 10px;
	margin-bottom: 20px;
}
.segment .wrapper .panel-box .button-area {
	margin-top: 20px;
}
.segment .wrapper .slide-body {
	width: 100%;
	margin : 40px 0 40px 0;
	display: inline-block;
}
.segment .wrapper .slide-body .item {
	display: inline-block;
	vertical-align: middle;
}
.segment .wrapper .slide-body .item img {
	width: 200px;
}
.image-cover-top {
	width: 100%;
	height: 150px;
	overflow: hidden;
	position: relative;
}
.image-cover-top.higher {
	height: 180px;
}
.image-cover-top.short {
	height: 120px;
}
.image-cover-top img {
	width: 100%;
	height: 150px;
	object-position: center;
	object-fit: cover;
}
.image-cover-top.higher img {
	width: 100%;
	height: 180px;
	object-position: center;
	object-fit: cover;
}
.image-cover-top .user-tabs-container {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	justify-content: center;
	background: none;
	display: flex;
}
.image-cover-top .user-tabs-container .wrapper {
	width: 90%;
	text-align: left;
}
.image-cover-top .user-tabs-container .wrapper ul.user-tabs {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	position: relative;
}
.image-cover-top .user-tabs-container .wrapper ul.user-tabs li {
	padding: 15px 25px;
	background: #f0f0f0;
	box-shadow: 0 -1px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 -1px 3px rgba(0,0,0,0.3);
	-ms-box-shadow: 0 -1px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 -1px 3px rgba(0,0,0,0.3);
	-o-box-shadow: 0 -1px 3px rgba(0,0,0,0.3);
	border-radius: 5px 5px 0 0;
	font-size: 14px;
	font-family: 'Gotham-Book';
	color: #555;
	z-index: 1;
}
.image-cover-top .user-tabs-container .wrapper ul.user-tabs li.pull-right {
	position: absolute;
	bottom: 0;
	right: 0;
}
.image-cover-top .user-tabs-container .wrapper ul.user-tabs li:hover {
	cursor: pointer;
	background: #e0e0e0;
}
.image-cover-top .user-tabs-container .wrapper ul.user-tabs li.active {
	background: #fff;
	z-index: 2;
}
.image-cover-top .user-tabs-container .wrapper ul.user-tabs li.red {
	background: var(--red);
	color: #fff;
}
.image-cover-page {
	width: 100%;
	height: 550px;
	overflow: hidden;
	position: relative;
}
.image-cover-page img {
	width: 100%;
	height: 550px;
	object-position: center;
	object-fit: cover;
}
.image-cover-page .overlay-black {
	background: rgba(0,0,0,0.6);
	position: absolute;
	top : 0;
	left: 0;
	width: 100%;
	height: 550px;
	z-index: 2;
}
.image-cover-page .box-area {
	position: absolute;
	top : 15%;
	left: 0;
	width: 100%;
	z-index: 3;
}
.form-area {
	margin : 20px 0;
	width: 100%;
}
.form-area fieldset {
	margin-bottom: 20px;
	border-top: solid 1px #ccc;
	margin-top: 40px;
}
.form-area fieldset legend {
	padding-right: 10px;
	font-family: 'Gotham-Medium';
	color : var(--blue);
	font-size: 18px;
}
.form-area .row-field {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.form-area .row-field .field-half {
	width: 48%;
}
.form-area .field {
	width: 100%;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.form-area.evenodd .field:nth-child(even) {
	background: #f8f8f8;
}
.form-area.evenodd .field {
	width: 98%;
	padding: 1%;
	padding-bottom: 20px;
}
.form-area .field.table-like {
	margin-bottom: 0;
	border: solid 1px #ccc;
}
.form-area .field label {
	width: 100%;
	font-family: 'Gotham-Book';
	color: var(--text-content);
	font-size: 12px;
}
.form-area .field label b {
	font-family: 'Gotham-Medium';
	font-style: 16px;
}
.form-area .field label.bigger {
	font-family: 'Gotham-Medium';
	font-size: 14px;
	margin-bottom: 0;
}
.form-area .field label sup {
	color : var(--red);
}
.form-area .field input {
	width: 100%;
	padding: 10px;
	margin-top: 10px;
	outline: none;
	border : solid 1px #ccc;
	border-radius: 5px;
}
.form-area .field input:disabled {
	background: #f0f0f0;
	color: #888;
}
.form-area .field textarea {
	width: 100%;
	height: 200px;
	padding: 10px;
	margin-top: 10px;
	outline: none;
	border : solid 1px #ccc;
	border-radius: 5px;
}
.form-area .field select {
	width: 100%;
	background: #fff;
	border : solid 1px #ccc;
	padding: 10px;
	margin-top: 10px;
	opacity: none;
	border-radius: 5px;
	height: 40px;
	font-size: 12px;
	outline: none;
}
.form-area .field select option {
	font-size: 12px;
}
.form-area .field .checkbox-group {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.form-area .field .checkbox-group.under {
	margin-top: 10px;
}
.form-area .field .checkbox-group .item {
	margin-right: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-family: 'Gotham-Book';
	font-size: 14px;
	min-width: 200px;
}
.form-area .field .checkbox-group.under .item {
	min-width: 10px;
}
.form-area .field p.help {
	width: 100%;
	margin-top: 5px;
	color: #999;
	font-size: 10px;
	font-family: 'Gotham-Book';
}
.form-area .field .checkbox-group .item input {
	margin-right: 10px;
	width: 15px;
}
.form-area .field .checkbox-group .item label {
	width: 80%;
	padding-top: 5px;
}
.form-area .field .group-fix {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 10px;
}
.form-area .field .group-fix input {
	width: 70%;
	border-radius: 5px 0 0 5px;
	margin-top: 0;
}
.form-area .field .group-fix button {
	padding: 10px;
	background: #f0f0f0;
	color : #333;
	border : solid 1px #ccc;
	border-radius: 0 5px 5px 0;
	cursor: auto;
	border-left: none;
}
.form-area .field .group-fix.reverse input {
	width: 70%;
	border-radius: 0 5px 5px 0;
	margin-top: 0;
}
.form-area .field .group-fix.reverse button {
	padding: 10px;
	background: #f0f0f0;
	color : #333;
	border : solid 1px #ccc;
	border-radius: 5px 0 0 5px;
	cursor: auto;
	border-right: none;
}
.form-area .field-check-group {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.form-area .field-check-group .caption {
	width: 20%;
	text-align: left;
	font-family: 'Gotham-Book';
	font-size: 12px;
	color : #333;
	margin-left: 10px;
	padding-top: 10px;
}
.form-area .field-check-group .caption.short {
	width: 10%;
	margin-left: 40px;
}
.form-area .field-check-group input[type=checkbox] {
	width: 15px;
}
.form-area .field-check-group input.short {
	width: 10%;
}
.form-area .field-check-group input.long {
	width: 30%;
}
.form-area .segment-3 {
	width: 3%;
}
.form-area .segment-5 {
	width: 5%;
}
.form-area .segment-15 {
	width: 12%;
}
.form-area .segment-33 {
	width: 30%;
}
.form-area .segment-20 {
	width: 17%;
}
.form-area .segment-25 {
	width: 22%;
}
.form-area .segment-50 {
	width: 47%;
}
.form-area .segment-75 {
	width: 73%;
}
.form-area .segment-80 {
	width: 77%;
}
.form-area .segment-85 {
	width: 83%;
}
.form-area .segment-5 input,
.form-area .segment-33 input,
.form-area .segment-20 input,
.form-area .segment-25 input,
.form-area .segment-75 input,
.form-area .segment-50 input,
.form-area .segment-80 input,
.form-area .segment-85 input {
	width: 90%;
}

.form-area hr {
	width: 100%;
	margin: 20px 0;
	height: 1px;
	border : none;
	background: #f0f0f0;
}
.list-area {
	margin: 30px 0 40px 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.list-area .alpha-separator {
	width: 100%;
	margin: 20px 0 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.list-area .alpha-separator div {
	padding: 10px;
	background: #f0f0f0;
	color: var(--text-title);
	font-family: 'Gotham-Medium';
	border-radius: 10px;
}
.list-area .name-area {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 40px;
}
.list-area .name-area .item {
	width: 33%;
	text-align: left;
	margin-bottom: 5px;
	color: var(--text-body);
	font-family: 'Gotham-Book';
}
.list-area .name-area .item a {
	text-decoration: none;
}
.list-area .name-area .item a:hover {
	text-decoration: underline;
}
.calendar-panel {
	width: 100%;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 20px;
}
.calendar-panel .section-header {
	background: var(--red);
	padding: 2%;
	width: 96%;
	color: #fff;
	font-family: 'Gotham-Medium';
	font-size: 16px;
	border-radius: 10px 10px 0 0;
}
.calendar-panel .left-segment {
	width: 80%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.calendar-panel .right-segment {
	width: 20%;
	text-align: right;
}
.calendar-panel .section-head-column {
	width: 96%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 2%;
	background: var(--dark-red);
}
.calendar-panel .section-head-column .column {
	color: #fff;
	font-family: 'Gotham-Book';
	font-size: 11px;
}
.calendar-panel .section-row {
	width: 96%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 2%;
	border-bottom: solid 1px #f0f0f0;
	flex-wrap: wrap;
}
.calendar-panel .section-row .column {
	font-family: 'Gotham-Book';
	font-size: 12px;
}
.calendar-panel .section-row button.red {
	font-size: 12px;
}
.calendar-panel.aepp .column:nth-child(1) {
	width: 15%;
}
.calendar-panel.aepp .column:nth-child(2) {
	width: 15%;
}
.calendar-panel.aepp .column:nth-child(3) {
	width: 30%;
}
.calendar-panel.aepp .column:nth-child(4) {
	width: 40%;
}
.calendar-panel.qwp .column:nth-child(1) {
	width: 20%;
}
.calendar-panel.qwp .column:nth-child(2) {
	width: 20%;
}
.calendar-panel.qwp .column:nth-child(3) {
	width: 60%;
}
.login-box {
	background: #fff;
	width: 300px;
	padding: 20px;
	display: flex;
	justify-content: left;
	align-items: left;
	flex-wrap: wrap;
	border : solid 1px #f0f0f0;
	border-radius: 10px;
}
.login-box h1 {
	width: 100%;
	font-size: 23px;
	font-family: 'Gotham-Medium';
	color: #666;
	text-align: left;
	margin-bottom: 20px;
}
.login-box .field {
	width: 100%;
	margin-bottom: 20px;
	display: flex;
	text-align: left;
}
.login-box .field input {
	width: 94%;
	padding: 10px 3%;
	background: #f8f8f8;
	border : none;
	border-bottom: solid 1px #f0f0f0;
	text-align: left;
	font-family: 'Gotham-Book';
	font-size: 14px;
	outline: none;
}
.login-box .field button {
	font-size: 16px;
	color: #fff;
	padding: 10px;
	background: var(--red);
	font-family: 'Gotham-Book';
	width: 100%;
	border : none;
	outline: none;
}
.login-box .field button:hover {
	cursor: pointer;
	opacity: 0.8;
}
.login-box .field label {
	font-size: 12px;
	font-family: 'Gotham-Book';
	color: #666;
	text-align: left;
	width: 100%;
}
.profile-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.profile-box .left-area {
	width: 19%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.profile-box .right-area {
	width: 78%;
}
.profile-box .left-area.full,
.profile-box .right-area.full {
	width: 100%;
}
.profile-box .left-area .avatar {
	width: 200px;
	height: 200px;
	overflow: hidden;
	border-radius: 100px;
	margin-bottom: 20px;
}
.profile-box .left-area .avatar img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	object-position: center;
}
.profile-box .left-area button {
	margin-bottom: 10px;
	background: #f0f0f0;
	border : none;
	padding: 10px 20px;
	width: 180px;
	border-radius: 10px;
	font-family: 'Gotham-Book';
	font-size: 12px;
}
.profile-box .left-area button:hover {
	background: #e0e0e0;
}
.profile-box .right-area .name-area {
	width: 100%;
	margin-bottom: 30px;
}
.profile-box .right-area .name-area h1 {
	font-family: 'Gotham-Medium';
	color : var(--red);
	font-size: 23px;
	margin-bottom: 5px;
}
.profile-box .right-area .name-area span {
	font-size: 14px;
	font-family: 'Gotham-Book';
	color: #888;
}
.profile-box .right-area .name-area span b {
	font-family: 'Gotham-Medium';
	color: #555;
}
.profile-box .right-area .tab-area {
	margin-bottom: 20px;
	border-bottom: solid 1px #ccc;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	position: relative;
}
.profile-box .right-area .tab-area button {
	position: absolute;
	bottom: 5px;
	right: 0;
	padding: 5px 10px;
	background: var(--red);
	color : #fff;
	border : none;
	outline: none;
	font-family: 'Gotham-Book';
	border-radius: 3px;
	font-size: 14px;
}
.profile-box .right-area .tab-area .tab-item {
	margin-right: 18px;
	font-size: 14px;
	font-family: 'Gotham-Book';
	color : #aaa;
	padding-bottom: 5px;
	border-bottom: solid 3px transparent;
	margin-bottom: -2px;
}
.profile-box .right-area .tab-area .tab-item:hover {
	cursor: pointer;
	color: #333;
}
.profile-box .right-area .tab-area .tab-item.active {
	border-bottom:  solid 3px var(--red);
	font-family: 'Gotham-Medium';
	color: var(--blue);
}
.profile-box .right-area .tab-body-area {
	width: 100%;
}
.profile-box .right-area select {
	width: 100%;
	padding: 0 3%;
	background: #f8f8f8;
	outline: none;
	border : solid 1px #ccc;
	border-radius: 0;
	font-family: 'Gotham-Book';
	font-size: 12px;
}
.profile-box .right-area .tab-body-area .body-item {
	width: 100%;
	font-family: 'Gotham-Book';
	color : #888;
	display: none;
}
.profile-box .right-area .tab-body-area .body-item.active {
	display: flex;
	flex-wrap: wrap;
}
.profile-box .right-area .row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.profile-box .right-area .row .col {
	text-align: left;
	font-family: 'Gotham-Book';
	color: #555;
	padding: 1%;
	font-size: 14px;
}
.profile-box .right-area .row .col.heading {
	width: 22%;
}
.profile-box .right-area .row .col.value {
	width: 74%;
}
.profile-box .right-area .row.even .col.heading {
	background: #e0e0e0;
}
.profile-box .right-area .row.even .col.value {
	background: #e8e8e8;
}
.profile-box .right-area .row.odd .col.heading {
	background: #f0f0f0;
}
.profile-box .right-area .row.odd .col.value {
	background: #f8f8f8;
}
.profile-box .button-area {
	margin-top: 20px;
	flex-wrap: wrap;
}
.profile-box .button-area a {
	width: 100%;
}
.profile-box .button-area button {
	width: 100%;
	padding: 5%;
	font-size: 16px;
}
.profile-box .button-area button.redbtn {
	color: #fff;
	background: var(--red);
}
.form-popup {
	position: fixed;
	top : 10%;
	left: 0;
	width: 100%;
	z-index: 999999;
}
.form-popup .wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-popup .wrapper .form-box {
	width: 500px;
	max-height: 500px;
	overflow-y: scroll;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.thank-you-page {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.thank-you-page button.check {
	background : none;
	border : solid 5px var(--blue);
	color: var(--blue);
	font-size: 45px;
	width: 150px;
	height: 150px;
	border-radius: 80px;
	margin-bottom: 20px;
}
.thank-you-page h1 {
	color: var(--blue) !important;
	font-size: 23px;
	font-family: 'Gotham-Medium';
	text-align: center;
	margin-bottom: 10px;
}
.thank-you-page p {
	width: 100%;
	text-align: center;
	color: #777;
}
.thank-you-page .box-wrapper {
	width: 100%;
	margin: 30px 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
.thank-you-page .box-wrapper .box-method {
	width: 300px;
	padding: 10px;
	border-radius: 10px;
	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);
	-o-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	margin: 5px;
	min-height: 80px;
}
.thank-you-page .box-wrapper .box-method .item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	font-size: 12px;
}
.thank-you-page .box-wrapper .box-method .item .icon {
	width: 23%;
}
.thank-you-page .box-wrapper .box-method .item .icon img {
	width: 100%;
	margin-top: 5px;
}
.thank-you-page .box-wrapper .box-method .item .info {
	width: 72%;
}
.thank-you-page .box-wrapper .box-method .item  b {
	font-family: 'Gotham-Medium';
	color: #333;
	font-size: 16px;
	line-height: 1.8;
}
.thank-you-page .box-wrapper .box-method .item .full {
	width: 100%;
}
.calc-wrapper {
	flex-wrap: wrap;
	justify-content: space-between;
}
.calc-wrapper .calc-box {
	width: 32%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,0.3);
	-ms-box-shadow: 0 0 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
	-o-box-shadow: 0 0 3px rgba(0,0,0,0.3);
}
.calc-wrapper .calc-box .form-area {
	width: 90%;
	padding: 5%;
}
.calc-wrapper .calc-box .title {
	margin-bottom: 20px;
	font-family: 'Gotham-Medium';
	font-size: 16px;
	color: #444;
}
.calc-wrapper .calc-box .result {
	width: 90%;
	padding: 5%;
	background: var(--blue);
	border-radius: 0 0 10px 10px;
	color: #fff;
}
.calc-wrapper .calc-box .result .label {
	font-family: 'Gotham-Book';
	font-size: 12px;
	margin-bottom: 10px;
}
.calc-wrapper .calc-box .result .number {
	font-family: 'Gotham-Medium';
	font-size: 23px;
}
.box-warning {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 94%;
	padding: 3%;
	border: solid 1px #f55e5d;
	background: #f8f8f8;
	margin-bottom: 10px;
	border-radius: 10px;
}
.box-warning .icon {
	background: none;
	outline: none;
	border : solid 2px var(--red);
	width: 80px;
	height: 80px;
	border-radius: 41px;
	color: var(--red);
	font-size: 23px;
	margin-right: 10px;
}
.box-warning .text {
	width: 90%;
}
.box-warning .text .title {
	margin-bottom: 10px;
	font-family: 'Gotham-Medium';
	font-size: 18px;
	color: var(--red);
}
.box-warning .text .body {
	margin-bottom: 10px;
	font-family: 'Gotham-Book';
	font-size: 14px;
	line-height: 1.3;
	color: #777;
}
.box-warning .text .button-area {
	margin-top: 20px;
}
.box-warning .button-area button {
	margin-bottom: 0;
	margin-right: 5px;
}
.info-box {
	width: 96%;
	padding:  2%;
	background: #f8f8f8;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
	border-bottom: solid 1px #ccc;
}
.info-box .attrib-area {
	width: 60%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.info-box .attrib-area .item {
	margin-right: 10px;
	width: 45%;
}
.info-box .attrib-area .item label {
	width: 100%;
	font-size: 12px;
	font-family: 'Gotham-Book';
	color: #777;
}
.info-box .attrib-area .item div {
	width: 100%;
	font-size: 18px;
	font-family: 'Gotham-Medium';
	color: #333;
	margin-top: 5px;
}
.info-box .attrib-area .item div input {
	width: 80%;
	padding: 5px;
}
.info-box .btn-area {
	width: 40%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
.info-box .btn-area button.red {
	font-size: 10px;
	margin-left: 5px;
}
div.risk-quest {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
div.risk-quest span.number {
	margin-right: 20px;
	line-height: 1.5;
}
.common-text-area button.back {
	margin-bottom: 20px;
	padding: 5px 30px;
	background: #f0f0f0;
	border: solid 1px #e0e0e0;
	font-family: 'Gotham-Book';
	color: #555;
}
.common-text-area a {
	font-weight: bold;
	font-family: 'Gotham-Medium';
	color: #272727;
	text-decoration: underline;
}
.common-text-area h2 {
	font-family: 'Gotham-Medium';
	columns: #272727;
	font-size: 16px;
	margin-bottom: 20px;
}
.common-text-area .contact-mentor {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.common-text-area .contact-mentor .avatar-area {
	width: 200px;
	padding: 20px;
	border: solid 1px #f0f0f0;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-right: 20px;
}
.common-text-area .contact-mentor .avatar-area img {
	width: 180px;
	height: 180px;
	border-radius: 91px;
	object-fit: cover;
	object-position: center;
	border: solid 1px #f0f0f0;
	margin-bottom: 20px;
}
.common-text-area .contact-mentor .avatar-area .name {
	text-align: center;
	color: #272727;
	font-family: 'Gotham-Medium';
	margin-bottom: 15px;
	width: 100%;
}
.common-text-area .contact-mentor .avatar-area span {
	font-size: 12px;
	color: #777;
}
.common-text-area .contact-mentor .event-area h1 {
	margin-bottom: 20px;
	font-family: 'Gotham-Medium';
}
.common-text-area .contact-mentor .event-area .info {
	font-family: 'Gotham-Book';
	line-height: 1.3;
	color: #777;
}
.common-text-area .contact-mentor .event-area .contact {
	margin: 20px 0;
	font-family: 'Gotham-Book';
	line-height: 1.3;
	color: #555;
}
.common-text-area .contact-mentor .event-area .contact b {
	font-family: 'Gotham-Medium';
	color: #222;
}
.common-text-area .contact-mentor .event-area .button-area {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.common-text-area .contact-mentor .event-area .button-area button {
	margin-right: 5px;
	padding: 10px 20px;
	font-family: 'Gotham-Book';
	font-size: 11px;
	color: #fff;
	border: none;
}
.common-text-area .contact-mentor .event-area .button-area button.wa {
	background: #009e36;
}
.common-text-area .contact-mentor .event-area .button-area button.telp {
	background: #0077b6;
}
.common-text-area .contact-mentor .event-area .button-area button.email {
	background: var(--red);
}
.segment .wrapper .common-text-area h1 span.number {
	color: #272727;
	font-family: 'Gotham-Book';
	font-size: 18px;
}
.segment .wrapper .common-text-area h1 span.number b {
	font-family: 'Gotham-Medium';
	color: var(--red);
}
.check-pointer {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.check-pointer .pointer {
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border-radius: 11px;
	position: relative;
	border: solid 1px #ccc;
	background: none;
}
.check-pointer .pointer.on::after {
	content: ' ';
	position: absolute;
	background: var(--blue);
	top : 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	border-radius: 8px;
}



@media(max-width: 768px) {
	.mobile {
		display: block !important;
	}
	.mobile-flex {
		display: flex !important;
	}
	.desktop {
		display: none !important;
	}
	.desktop-flex {
		display: none !important;
	}
	.segment .wrapper .common-text-area.homepage {
	    width: 100%;
	}
	.segment .wrapper .thumb-image {
	    width: 100%;
	    height: 200px;
	    border-radius: 10px;
	    position: relative;
	    overflow: hidden;
	    margin-bottom: 20px;
	}
	.segment .wrapper .thumb-image .bg {
	    width: 100%;
	    height: 200px;
	    object-fit: cover;
	    object-position: center;
	}
	.segment .wrapper .panel-box {
	    width: 90%;
	    min-height: 180px;
	    background: #fff;
	    padding: 5%;
	    border-radius: 10px;
	    margin-bottom: 20px;
	}
	.segment .wrapper .common-text-area.development {
	    width: 100%;
	}
	footer {
		padding: 30px 5%;
	}
	footer .wrapper .logo-area {
	    width: 100%;
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	}
	footer .wrapper .socmed {
	    width: 100%;
	    text-align: center;
	    margin-top: 20px;
	}
	.slider-area .item .text-area .line {
		font-size: 16px;
		color: #fff;
		font-family: 'Gotham-Medium';
		padding: 5px;
		border-radius: 8px;
		width: auto;
		margin-bottom: 5px;
		display: inline-block;
		margin-right: 50px;
		opacity: 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;
	}
	.slider-area .item .text-area {
		position: absolute;
		z-index: 3;
		top : 50%;
		left: 50%;
		width: 100%;
		transform: translate(-50%,-30%);
		text-align: center;
		display: inline-block;
	}
	header {
		width: 95%;
		top : 0px;
		padding: 5px 2%;
		border-radius: 0 0 10px 10px;
		box-shadow: 2px 0 10px rgba(0,0,0,0.4);
		-moz-box-shadow: 2px 0 10px rgba(0,0,0,0.4);
		-ms-box-shadow: 2px 0 10px rgba(0,0,0,0.4);
		-webkit-box-shadow: 2px 0 10px rgba(0,0,0,0.4);
	}
	header .menu-toggle button {
		font-size: 23px;
		border : none;
		outline: none;
		background : none;
	}
	.segment .wrapper .common-text-area .heading-area {
	    width: 100%;
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    flex-wrap: wrap;
	}
	.segment .wrapper .common-text-area .heading-area .search-box {
	    width: 90%;
	    background: #f0f0f0;
	    border: none;
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    border-radius: 10px;
	    margin-top: 10px;
	}
	.list-area .name-area .item {
	    width: 90%;
	    text-align: left;
	    margin-bottom: 5px;
	    color: var(--text-body);
	    font-family: 'Gotham-Book';
	    word-break:break-all;
	}
	.calendar-panel .left-segment {
		width: 70%;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.calendar-panel .right-segment {
		width: 30%;
		text-align: right;
	}
	.calendar-panel.aepp .column:nth-child(1) {
		width: 100%;
	}
	.calendar-panel.aepp .column:nth-child(2) {
		width: 100%;
	}
	.calendar-panel.aepp .column:nth-child(3) {
		width: 100%;
	}
	.calendar-panel.aepp .column:nth-child(4) {
		width: 100%;
	}
	.calendar-panel.qwp .column:nth-child(1) {
		width: 100%;
	}
	.calendar-panel.qwp .column:nth-child(2) {
		width: 100%;
	}
	.calendar-panel.qwp .column:nth-child(3) {
		width: 100%;
	}
	.profile-box .left-area,
	.profile-box .right-area {
	    width: 100%;
	}
	.profile-box .right-area .name-area {
	    width: 100%;
	    margin-bottom: 30px;
	    text-align: center;
	}
	.profile-box .right-area .row {
		flex-wrap: wrap;
	}
	.profile-box .right-area .row .col {
	    text-align: left;
	    font-family: 'Gotham-Book';
	    color: #555;
	    padding: 4%;
	    font-size: 14px;
	}
	.profile-box .right-area .row .col.heading,
	.profile-box .right-area .row .col.value {
	    width: 92%;
	}
	.profile-box .right-area .row .col.heading {
		font-family: 'Gotham-Medium';
	}
	.profile-box .right-area .row.even .col.heading {
		background: #e0e0e0;
	}
	.profile-box .right-area .row.even .col.value {
		background: #f0f0f0;
	}
	.profile-box .right-area .row.odd .col.heading {
		background: #e0e0e0;
	}
	.profile-box .right-area .row.odd .col.value {
		background: #f0f0f0;
	}
	.form-area button.red {
	    padding: 20px 0;
	    background: var(--red);
	    color: #fff;
	    font-family: 'Gotham-Book';
	    font-size: 14px;
	    border: none;
	    outline: none;
	    border-radius: 10px;
	    width: 100%;
	}
	.segment .wrapper .common-text-area .heading-area .attribute {
	    width: 100%;
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	    flex-wrap: wrap;
	    margin-top: 10px;
	}
	.segment .wrapper .common-text-area .heading-area .attribute .item {
	    padding: 5px 10px;
	    border-radius: 5px;
	    background: #f0f0f0;
	    font-family: 'Gotham-Book';
	    color: #333;
	    font-size: 14px;
	    margin-right: 5px;
	    margin-bottom: 5px;
	}
	.form-area .field-check-group {
	    width: 100%;
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	    flex-wrap: wrap;
	    border-top: dashed 1px #f0f0f0;
	}
	.form-area .row-field {
	    width: 100%;
	    display: flex;
	    justify-content: space-between;
	    align-items: flex-start;
	    flex-wrap: wrap;
	}
	.form-area .row-field .field-half {
	    width: 100%;
	}
	.form-area .field-check-group .caption {
	    width: 80%;
	    text-align: left;
	    font-family: 'Gotham-Book';
	    font-size: 12px;
	    color: #333;
	    margin-left: 10px;
	    padding-top: 10px;
	}
	.form-area .field-check-group input.long {
	    width: 100%;
	}
	.form-area .field-check-group .caption.short {
	    width: 25%;
	    margin-left: 0;
	}
	.form-area .field-check-group input.short {
	    width: 30%;
	}
	.calc-wrapper .calc-box {
		width: 100%;
		margin-bottom: 30px;
	}
	.box-warning {
	    justify-content: center;
	    flex-wrap: wrap;
	}
	.box-warning .text {
	    width: 100%;
	    margin-top: 20px;
	    text-align: center;
	}
	.box-warning .button-area button {
		margin-bottom: 10px;
		margin-right: 0;
	}
	.form-area .segment-33,
	.form-area .segment-20,
	.form-area .segment-25,
	.form-area .segment-5,
	.form-area .segment-75,
	.form-area .segment-50 {
		width: 100%;
	}
	.form-area .segment-33 label,
	.form-area .segment-20 label,
	.form-area .segment-25 label,
	.form-area .segment-5 label,
	.form-area .segment-75 label,
	.form-area .segment-50 label {
		width: 100%;
	}
	.form-area .field label.bigger {
		font-family: 'Gotham-Medium';
		font-size: 20px;
		line-height: 1.5;
	}
	.info-box .attrib-area {
	    width: 100%;
	    display: flex;
	    justify-content: flex-start;
	    align-items: flex-start;
	    flex-wrap: wrap;
	}
	.info-box .attrib-area .item {
	    margin-right: 10px;
	    width: 100%;
	    text-align: center;
	    margin-bottom: 10px;
	}
	.info-box .btn-area {
	    width: 100%;
	    display: flex;
	    justify-content: center;
	    align-items: flex-start;
	    flex-wrap: wrap;
	    margin-top: 30px;
	}
	.info-box .btn-area a {
		width: 100%;
		text-align: center;
	}
	.info-box .btn-area button {
		width: 90%;
		margin-bottom: 10px;
		padding: 20px 0;
		font-size: 16px;
	}
	.segment .wrapper .common-text-area .heading-common h1 {
	    width: 100%;
	    margin-bottom: 10px;
	}
	.segment .wrapper .common-text-area .heading-common form {
		width: 100%;
	}
	.segment .wrapper .common-text-area .heading-common form .search-area {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.segment .wrapper .common-text-area .heading-common .search-area input {
	    background: none;
	    outline: none;
	    border: none;
	    width: 85%;
	}
	.segment .wrapper .common-text-area .fasilitator-area .content-area .item {
		width: 48%;
	}
	.segment .wrapper .common-text-area .fasilitator-area .content-area .item .image-area {
	    width: 150px;
	    height: 150px;
	    overflow: hidden;
	    border-radius: 75px;
	    margin-bottom: 20px;
	}
	.segment .wrapper .common-text-area .fasilitator-area .content-area .item .image-area img {
	    width: 150px;
	    height: 150px;
	    object-position: center;
	    object-fit: cover;
	}
	.profile-box .right-area .tab-area {
		overflow-x: scroll;
		white-space: nowrap;
	}
	.image-cover-top .user-tabs-container .wrapper {
		width: 100%;
	}
	.image-cover-top .user-tabs-container .wrapper ul.user-tabs {
		overflow-x: scroll;
		justify-content: center;
	}
	.image-cover-top .user-tabs-container .wrapper ul.user-tabs li {
		white-space: nowrap;
		padding: 15px 12px;
		font-size: 11px;
	}
	.common-text-area .contact-mentor {
		justify-content: center;
	}
	.common-text-area .contact-mentor .avatar-area {
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.common-text-area .contact-mentor .event-area {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		flex-wrap: wrap;
		text-align: center;
	}
	.common-text-area .contact-mentor .event-area h1 {
		text-align: center;
	}
	.common-text-area .contact-mentor .event-area .button-area {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}
	.common-text-area .contact-mentor .event-area .button-area a {
		width: 100%;
	}
	.common-text-area .contact-mentor .event-area .button-area button {
		width: 100%;
		margin: 0 0 10px 0;
		padding: 15px;
		border-radius: 5px;
	}
}
