@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900&display=swap');

@font-face {
	font-family: 'aileronregular';
	src: url('../fonts/aileron_regular/Aileron-Regular-webfont.eot');
	src: url('../fonts/aileron_regular/Aileron-Regular-webfont.eot?#iefix') format('embedded-opentype'),
		/*url('../fonts/aileron_regular/Aileron-Regular-webfont.woff2') format('woff2'),*/
		url('../fonts/aileron_regular/Aileron-Regular-webfont.woff') format('woff'),
		url('../fonts/aileron_regular/Aileron-Regular-webfont.ttf') format('truetype'),
		url('../fonts/aileron_regular/Aileron-Regular-webfont.svg#aileronregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
	color: #264150;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 800;
	letter-spacing: 2px;
}


header {
	position: relative;
	background-color: black;
	height: 100vh;
	min-height: 25rem;
	width: 100%;
	overflow: hidden;
}

header video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

header .container {
	position: relative;
	z-index: 2;
}

header .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.5;
	z-index: 0.1;
}

/*@media (pointer: coarse) and (hover: none) {
  header {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  }
  header video {
    display: none;
  }
}*/

.btn {
	font-weight: bold;
	letter-spacing: 3px;
	padding: 10px 30px;
	border-radius: 30px;
	border: none;
}

.btn-primary-white {
	color: #A95252;
	background-color: #ffffff;
}

.btn-primary-white:hover,
.btn-primary-white:active,
.btn-primary-white:focus,
.btn-primary-white:focus:active {
	color: #ffffff !important;
	background-color: #A95252 !important;
	box-shadow: none !important;
}

.btn-primary-red {
	color: #ffffff;
	background-color: #B01F24;
}

.btn-primary-red:hover,
.btn-primary-red:active,
.btn-primary-red:focus,
.btn-primary-red:focus:active {
	color: #ffffff !important;
	background-color: #B01F24 !important;
	box-shadow: none !important;
}

.btn-primary-blue {
	color: #ffffff;
	background-color: #264150;
}

.btn-primary-blue:hover,
.btn-primary-blue:active,
.btn-primary-blue:focus,
.btn-primary-blue:focus:active {
	color: #ffffff !important;
	background-color: #264150 !important;
	box-shadow: none !important;
}

.btn-primary-grey {
	color: #ffffff;
	background-color: #627077;
}

.btn-primary-grey:hover,
.btn-primary-grey:active,
.btn-primary-grey:focus,
.btn-primary-grey:focus:active {
	color: #ffffff !important;
	background-color: #627077 !important;
	box-shadow: none !important;
}

.btn-primary-transparent {
	color: rgba(98, 112, 119, 0.5) !important;
	background-color: transparent;
}

.btn-primary-transparent:hover,
.btn-primary-transparent:active,
.btn-primary-transparent:focus,
.btn-primary-transparent:focus:active {
	color: rgba(98, 112, 119, 0.5) !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.link-primary {
	color: #264150;
}

#btn-resend-sms .active {
	color: #264150 !important;
}

.link-primary:hover,
.link-primary:active,
.link-primary:focus,
.link-primary:focus:active {
	color: #264150 !important;
	text-decoration: none;
}


.link-red {
	color: #d35447;
}

.link-red:hover,
.link-red:active,
.link-red:focus,
.link-red:focus:active {
	color: #d35447 !important;
	text-decoration: none;
}

.form-check-custom {
	font-family: 'aileronregular', sans-serif;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.5px;
	color: #627077;
}

.w-30 {
	width: 30%;
}

.w-70 {
	width: 70%;
}

/* Customize the label (the form-check-custom) */
.form-check-custom {
	font-family: 'aileronregular', sans-serif;
	line-height: 1;
	letter-spacing: 0.5px;
	color: #627077;
	display: block;
	position: relative;
	padding-left: 50px;
	margin-bottom: 20px;
	cursor: pointer;
	font-size: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.form-check-custom input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #ffffff;
	border-radius: 50%;
	border: 1px solid #B01F24;
}

/* On mouse-over, add a grey background color */
.form-check-custom:hover input~.checkmark {
	background-color: #B01F24;
}

/* When the radio button is checked, add a blue background */
.form-check-custom input:checked~.checkmark {
	background-color: #ffffff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.form-check-custom input:checked~.checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.form-check-custom .checkmark:after {
	top: 3px;
	left: 3px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #B01F24;
}

.error {
	color: #dd4b39 !important;
}

.has-error,
.has-error label {
	color: #dd4b39 !important;
}

.has-error input {
	border-bottom-color: #dd4b39 !important;
}

.navbar-brand h2 {
	color: #ffffff;
}

#section-search {
	background-color: #264150;
	color: #ffffff;
	height: 35px;
	display: none;
}

.form-search {
	width: 75%;
}

.form-search .input-group-text {
	background-color: transparent;
	border: none;
	color: #ffffff;
	border-radius: 0;
}

.form-search input[type=text] {
	color: #ffffff;
	border: none;
	background-color: transparent;
	outline: none;
	border-radius: 0;
}

#section-search a {
	color: #ffffff;
	padding-left: 0;
}

#section-search a:hover,
#section-search a:active,
#section-search a:focus,
#section-search a:focus:active {
	color: #ffffff !important;
	box-shadow: none !important;
}

.navfa a {
	color: #ffffff;
	padding-left: 0;
}

.navfa a:hover,
.navfa a:active,
.navfa a:focus,
.navfa a:focus:active {
	color: #ffffff !important;
	background-color: unset;
	box-shadow: none !important;
}

.bg-nav-main-color {
	background-color: #B01F24;
}

.navbar .navbar-nav .nav-link {
	font-weight: normal;
	color: #ffffff;
	letter-spacing: -1px;
	font-size: 22px;
	line-height: 1.36;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
	color: #f3cd5b;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: #f3cd5b;
}

.fixed-top-35 {
	top: 35px;
}

.navfa {
	color: #ffffff;
	font-size: 22px;
}

.navfa {
	color: #ffffff;
	font-size: 22px;
}

.member-login-icon,
.navfa .navbar-search,
.navfa .navbar-member-name {
	margin-right: 10px;
	margin-top: 10px;
}

.navbar-member-name a {
	text-decoration: none;
}

.navfa .member-thumbnail {
	margin-right: 10px;
}

.navfa .fa-user {
	margin-left: 15px;
}

.member-thumbnail {
	width: 50px;
	padding: 0;
}

#nav-banner {
	height: 100%;
	padding-top: 1.9rem;
	padding-bottom: 1.9rem;
	background: #F3CD5B;
	position: absolute;
	top: 0;
	right: 0;
	width: 10%;
	text-align: center;
}

#nav-banner.active {
	background: #264150;
}

#nav-banner .navbar-brand {
	color: #264150;
	font-weight: 600;
	letter-spacing: 3px;
	margin-right: 0;
}

#nav-banner.active .navbar-brand {
	color: #F0CB5B;
}

.navfill {
	width: 210px;
}

.nav-dropdown-menu-member {
	background-color: #B01F24;
	color: #ffffff;
	border-radius: 0;
	top: 55px;
	border: none;
	padding: 15px;
}

.nav-dropdown-menu-member .dropdown-item {
	color: #ffffff;
	font-size: 21px;
}


.dropdown-member-menu .dropdown-item:hover,
.dropdown-member-menu .dropdown-item:active,
.dropdown-member-menu .dropdown-item:focus,
.dropdown-member-menu .dropdown-item:focus:active {
	background-color: transparent !important;
}

.hero-description {
	position: absolute;
	top: 290px;
}

.hero-description p {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.3px;
	min-height: 75px;
}

.info-box-title {
	font-weight: 900;
}

.info-box-content-1 {
	background-color: #EAEAE8;
	padding: 106px 80px;
	text-align: center;
	color: #264150;
	height: 512px;
}

.info-box-content-2 {
	background-color: #B01F24;
	padding: 100px;
	text-align: center;
	color: #ffffff;
	height: 512px;
}

.info-box-content-3 {
	background-color: #264150;
	padding: 100px;
	text-align: center;
	color: #ffffff;
	height: 512px;
}

.form-newsletter .input-group-text {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #ffffff;
	color: #ffffff;
	border-radius: 0;
}

.form-newsletter input[type=text] {
	color: #ffffff;
	border: none;
	border-bottom: 1px solid #ffffff;
	background-color: transparent;
	outline: none;
	border-radius: 0;
}

.form-newsletter button {
	color: #ffffff;
}

.form-newsletter button:hover,
.form-newsletter button:active,
.form-newsletter button:focus,
.form-newsletter button:focus:active {
	color: #ffffff;
	text-decoration: none;
}

footer .form-newsletter .input-group-text {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #264150;
	color: #264150;
	border-radius: 0;
}

footer .form-newsletter input[type=text] {
	color: #264150;
	border: none;
	border-bottom: 1px solid #264150;
	background-color: transparent;
	outline: none;
	border-radius: 0;
	padding: 22px 0px!important;
}

footer .form-newsletter button {
	color: #264150;
}

footer .form-newsletter button:hover,
footer .form-newsletter button:active,
footer .form-newsletter button:focus,
footer .form-newsletter button:focus:active {
	color: #264150;
	text-decoration: none;
}

.col-footer {
	margin-bottom: 40px;
}

.news-highlight a {
	color: #ffffff;
}

.news-highlight a:hover {
	color: #264150;
	text-decoration: none;
}

#news-section {
	margin-top: 100px;
}

.title-section {
	font-weight: 900;
	color: #264150;
}


.content {
	color: #3c3a45;
}

.content a,
.content a:hover {
	color: #d35447;
	text-decoration: none;
}

.content h2 {
	font-weight: 900;
	color: #d35447;
	letter-spacing: 1.4;
	text-align: center;
	margin-bottom: 20px;
}

.content h4 {
	font-weight: 600;
	letter-spacing: normal;
	margin-bottom: 10px;
}

.content p {
	font-family: 'aileronregular', sans-serif;
	font-size: 16px;
	line-height: 2rem;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

.sub-content {
	padding: 0px 30px;
}

#banner-section {
	margin: 100px 0;
}

.news-card {
	border: none;
	border-radius: 0;
	position: relative;
	min-height: 335px;
}

.news-card img{
	object-fit: cover;
	height: 250px!important;
	width: 10%%
}

.news-card .card-body h4.card-title {
	font-weight: bold;
	letter-spacing: 0.5px;
	line-height: 1.31;
	min-height:72px;
	font-size:18px;
}

.news-card .card-body h4.card-title:hover {
	color: #A95252;
}

.news-card .card-body a,
.news-card .card-body a:hover,
.news-card .card-body a:active,
.news-card .card-body a:focus,
.news-card .card-body a:focus:active {
	color: #3c3a45;
	text-decoration: none;
}

.news-card .card-body p.card-text {
	line-height: 1.64;
	letter-spacing: normal;
	color: #3c3a45;
	font-size: 15px;
	min-height: 100px;
}

.news-card .card-footer {
	margin-top: 1px solid #3c3a45;
	background-color: #ffffff;
	position: absolute;
	bottom: 0;
	width: 100%;
}

.news-card .card-footer a {
	color: #3c3a45;
}

.news-card .card-footer a:hover {
	color:#A95252;
}

.profile-thumbnail {
	max-width: 100px;
	padding: 0;
}

#home-banner {
	color: #ffffff;
}

#home-banner .banner-desc {
	width: 48%;
}

#home-banner h2 {
	font-weight: bold;
}

#section-footer h6 {
	letter-spacing: 0.3px;
}

#top-footer {
	background-color: #EAEAE8;
	padding: 50px 0;
}

#top-footer a {
	color: #264150;
	padding-left: 0;
}

#top-footer a:hover,
#top-footer a:active,
#top-footer a:focus,
#top-footer a:focus:active {
	color: #264150 !important;
	box-shadow: none !important;
}

#bottom-footer a {
	color: #ffffff;
}

#bottom-footer a:hover,
#bottom-footer a:active,
#bottom-footer a:focus,
#bottom-footer a:focus:active {
	color: #ffffff !important;
	box-shadow: none !important;
}


#bottom-footer {
	color: #ffffff;
	background-color: #264150;
	padding: 20px 0;
}

.logo-footer-image {
	max-width: 85px;
}

.content h1,
.content-card h1 {
	color: #264150;
	font-weight: 900;
	letter-spacing: 1.4px;
	text-align: center;
}

.content-card {
	background-color: #ffffff;
}

.content-section {
	background-color: #EAEAE8;
	padding: 100px 0;
	margin-top: 97px;
}

.content {
	padding: 131px 120px;
	background-color: #ffffff;
}

#cara-membantu-card .card {
	color: #ffffff;
	border-radius: 0;
	border: none;
	padding: 20px 15px;
}

#cara-membantu-card .card i {
	font-size: 35px;
	margin-bottom: 20px;
}

#cara-membantu-card .card h5 {
	font-weight: 500;
	line-height: 1.5;
}

#cara-membantu-card .card p {
	font-family: 'aileronregular', sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 1.45;
	letter-spacing: 0.3px;
	margin-bottom: 30px;
}

#cara-membantu-card .card-1 {
	background-color: #d35447;
}

#cara-membantu-card .card-2 {
	background-color: #f3cd5b;
}

#cara-membantu-card .card-3 {
	background-color: #264150;
}

#cara-membantu-card .card-4 {
	background-color: #627077;
}

#cara-membantu-card .card-text {
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
}

.row-news-list {
	margin-bottom: 50px;
}

.content-back-link {
	position: absolute;
	top: 30px;
	left: 60px;
	color: #d35447;
	font-weight: 600;
	letter-spacing: normal;
}

.content-news {
	/* border: 1px solid #627077; */
	padding: 50px;
	color: #264150;
	font-family: 'aileronregular', sans-serif;
	font-size: 16px;
	line-height: 2rem;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

.content-news p {
	word-wrap: break-word;
	text-align: justify;
}

.content-news p > img{
	margin-right: 12px;
	margin-left: 12px;
	margin-bottom: 12px;
	width: 47% !important;
	
}

.content-news .title-news {
	font-weight: bold;
	line-height: 1.31;
	letter-spacing: 0.5px;
	font-size: 24px;
	margin-bottom: 30px;
	text-align: justify;
}

.content-news .content-share {
	border-top: 1px solid #627077;
	padding: 20px 0;
	font-size: 22px;
}

.content-news .content-share a,
.content-news .content-share a:hover,
.content-news .content-share a:active,
.content-news .content-share a:focus,
.content-news .content-share a:focus:active {
	color: #264150 !important;
	text-decoration: none;
}

.content-news .content-like {
	border-top: 1px solid #627077;
	padding: 10px 15px;
	font-size: 22px;
}

.content-comment {
	margin-top: 50px;
	border: 1px solid #627077;
	padding: 50px;
	color: #264150;
}

.content-comment h5 {
	font-weight: 300;
	letter-spacing: 1.3px;
	line-height: 1.9;
}

.content-link {
	padding: 50px 0;
}

.content-contact i {
	font-size: 30px;
}

.contact-description p {
	line-height: 1.5;
	letter-spacing: 0.5px;
}

.section-member {
	color: #264150;
}

.section-member h5 {
	font-weight: 600;
	letter-spacing: 2px;
	color: #264150;
}

.section-member p {
	font-size: 16px;
	letter-spacing: 0.4px;
	line-height: 1.13;
	color: #627077;
}

#accordion h5>button {
	font-family: 'aileronregular', sans-serif;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 0.5px;
	line-height: 1;
	color: #627077;
}

#accordion h5>button {
	font-family: 'aileronregular', sans-serif;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 0.5px;
	line-height: 1;
	color: #627077;
}

#accordion h5>a {
	font-family: 'aileronregular', sans-serif;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 0.5px;
	line-height: 1;
	color: #627077;
}

#accordion i {
	margin-right: 10px;
}

#accordion h5>button:hover,
#accordion h5>button:active,
#accordion h5>button:focus,
#accordion h5>button:focus:active {
	color: #627077 !important;
	text-decoration: none;
}


#accordion .card {
	border-radius: 0;
}

#accordion .card-header {
	background: #ffffff;
	padding: 30px;
}

#accordion .card-body {
	padding: 50px;
}

.form-group.input-material {
	margin-top: 30px;
	margin-bottom: 30px;
}

.link-small {
	color: #d35447;
	text-decoration: underline;
}

.link-small:hover,
.link-small:active,
.link-small:focus,
.link-small:focus:active {
	color: #d35447 !important;
}

.content-login,
.content-reset {
	padding-left: 270px;
	padding-right: 270px;
}

.section-verification h5 {
	font-weight: 600;
	letter-spacing: 2px;
	color: #264150;

}

.section-verification p {
	font-size: 18px;
	letter-spacing: 0.5px;
	line-height: 1;
	color: #627077;
}

.section-verification .phone-number {
	color: #264150;
	text-decoration: underline;
}

.number-verification {
	margin: 0 145px;
}

#verification-code {
	border: none;
	width: 6ch;
	background:
		repeating-linear-gradient(90deg,
			dimgrey 0,
			dimgrey 1ch,
			transparent 0,
			transparent 1.5ch) 0 100%/100% 2px no-repeat;
	color: dimgrey;
	font: 5ch consolas, monospace;
	letter-spacing: .5ch;
}

#verification-code:focus {
	outline: none;
	color: #627077;
}

#verification-countdown {
	position: absolute;
	top: 8px;
}

#section-donasi {
	background: #EAEAE8;
}

#nav-top-donasi h5 {
	font-weight: 500;
	line-height: 1.5;
	margin-top: 5px;
}

.nav-donasi {
	padding: 10px 19px;
	color: #ffffff;
	background-color: #babdc0;
}

.nav-donasi.active {
	color: #264150;
	background-color: #F3CD5B;
}

.total-donasi-label {
	font-family: 'aileronregular', sans-serif;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.5;
}

.content-data-donatur {
	padding: 130px 260px;
}

#pembayaran-tab.nav-tabs {
	border: none;
}

#pembayaran-tab.nav-tabs .nav-link {
	border: none;
}

#pembayaran-tab.nav-tabs .nav-item.show .nav-link,
#pembayaran-tab.nav-tabs .nav-link.active {
	color: #627077;
	background: none;
	-webkit-box-shadow: 0px 0px 5px 5px rgba(211, 84, 71, 0.79);
	-moz-box-shadow: 0px 0px 5px 5px rgba(211, 84, 71, 0.79);
	box-shadow: 0px 0px 5px 5px rgba(211, 84, 71, 0.79);
}

.bank-logo {
	max-width: 100px;
}

.bank-row a {
	font-size: 41px;
	color: #babdc0;
}

.item-pembayaran {
	border: 1px solid #babdc0;
}

.item-pembayaran a {
	color: #627077;
}

.icon-pembayaran {
	border-right: 1px solid #babdc0;
	padding: 20px;
}

.label-pembayaran {
	padding: 25px;
}

.payment-note {
	color: #babdc0;
	margin-top: 30px;
}

.payment-note i {
	color: #114b5f;
}

.payment-note span {
	text-decoration: underline;
}

.list-riwayat {
	padding: 0 80px;
}

.v-ellipsis:after {
	content: '\2807';
}

.dropdown-toggle:hover {
	cursor: pointer
}

#dropdown-riwayat .dropdown-item:focus,
#dropdown-riwayat .dropdown-item:hover {
	color: #ffffff;
	text-decoration: none;
	background-color: #627077;
}

#dropdown-riwayat .dropdown-toggle::after {
	display: none;
}

#dropdown-riwayat .dropdown-menu {
	top: 20px !important;
}

.sub-content>a,
.sub-content>a:hover,
.sub-content>a:active,
.sub-content>a:focus,
.sub-content>a:focus:active {
	color: #3C3A5A !important;
	text-decoration: none;
	box-shadow: none !important;
}

#notification-modal .modal-body {
	padding-top: 50px;
	padding-bottom: 50px;
}

.pdfobject-container {
	height: 50rem;
	border: 1rem solid rgba(0, 0, 0, .1);
}

.title-komentar {
	font-size: 28px !important;
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.14 !important;
	letter-spacing: 1.5px !important;
	color: #3c3a45 !important;
}

.member-komentar p {
	font-size: 18px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1;
	letter-spacing: 0.5px;
	color: #627077;
}

.content-komentar p {
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: 0.44px;
	color: #627077;
}

.search-list {
	border-bottom: 1px dashed #3c3a45;
	padding-top: 10px;
}

.search-list a,
.search-list a:hover,
.search-list a:active,
.search-list a:focus,
.search-list a:focus:active {
	color: #3c3a45 !important;
	text-decoration: none;
}

#home-banner {
	width: 100%;
	height: 276px;
}

#form-contact {
	margin-bottom: 30px;
}

.nav-member-mobile .dropdown-item.active,
.nav-member-mobile .dropdown-item:active {
	color: #fff;
	text-decoration: none;
	background-color: #B01F24;
}

.content-komentar hr {
	border-color: #264150;
}

.info-box-image {
	height: 100%;
	width: 100%;
}

.like-button {
	cursor: pointer;
}

.like-button.fas {
	color: #B01F24;
}

#email-error {
	position: absolute;
	top: 37px;
}

.edit-picture {
	display: inline-block;
	border-radius: 60px;
	box-shadow: 0px 0px 2px #888;
	padding: 0.5em 0.6em;
	background-color: #B01F24;
	color: #ffffff;
	position: absolute;
	top: 65px;
	left: 95px;
	cursor: pointer;
}

.edit-picture-form {
	display: none;
}

.edit-picture-form p {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.29;
	letter-spacing: 1px;
	text-align: left;
	color: #3c3a45;
}

.member-custom-file-label {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: calc(2.25rem + 2px);
	padding: .375rem .75rem;
	line-height: 1.5;
	color: #B01F24;
	background-color: #fff;
	border: 1.3px solid #B01F24;
	border-radius: .25rem;
	width: 100px;
}

.member-profile-preview {
	height: 100px;
}

.status_paid {
	color: #4cad34;
}

.status_unpaid {
	color: #B01F24;
}

.status_expired {
	color: #d9d9d9;
}

.mini-logo {
	max-width: 100px;
}

ol>li {
	font-family: 'aileronregular', sans-serif;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.5px;

	/* margin-bottom: 70px; */
}


svg {
	width: 40px;
	height: 40px;
	transform: rotateY(-180deg) rotateZ(-90deg);
}

svg circle {
	stroke-dasharray: 113px;
	stroke-dashoffset: 0px;
	stroke-linecap: round;
	stroke-width: 2px;
	stroke: #007cbb;
	fill: none;
	animation: countdown 60s linear infinite forwards;
}

@keyframes countdown {
	from {
		stroke-dashoffset: 0px;
	}

	to {
		stroke-dashoffset: 113px;
	}
}

/** Small devices (landscape phones, 576px and down) **/
@media (max-width: 576px) {
	.navbar-brand h2 {
		font-size: 1.5rem;
	}

	.hero-description {
		top: 160px;
	}

	.hero-description h1 {
		font-size: 2rem;
		letter-spacing: 0;
	}

	.hero-description p {
		font-size: 1rem;
		letter-spacing: 0;
	}

	.info-box-content-1,
	.info-box-content-2,
	.info-box-content-3 {
		padding: 35px 20px;
	}

	.content-section {
		margin-top: 0;
		padding-bottom: 0;
	}

	.content {
		padding: 45px 10px;
	}

	#home-banner h2 {
		font-size: 18px;
	}

	.list-riwayat {
		padding: 0 10px;
	}

	.content-back-link {
		top: 10px;
		left: 25px;
	}

	.content-news,
	.content-comment {
		padding: 20px 5px;
	}

	.content-news iframe {
		width: 100%;
	}

	#accordion .card-body {
		padding: 10px;
	}

	.number-verification {
		margin: 0 10px;
	}

	#dropdown-riwayat .dropdown-menu {
		left: -60px !important;
	}

	.info-box-image {
		height: 400px;
	}

	.newsletter-title {
		font-size: 30px;
	}

	#accordion .card-header {
		padding: 15px;
	}
}


/** Small devices (landscape phones, 576px and up) **/
@media (min-width: 576px) {
	.content {
		padding: 30px 20px;
	}

	.content-section {
		margin-top: 0;
		padding-bottom: 0;
	}

	.list-riwayat {
		padding: 0 10px;
	}

	.content-back-link {
		top: 10px;
		left: 25px;
	}

	.content-news,
	.content-comment {
		padding: 20px 5px;
	}

	.content-news iframe {
		width: 100%;
	}

	#accordion .card-body {
		padding: 10px;
	}

	.number-verification {
		margin: 0 10px;
	}

	#dropdown-riwayat .dropdown-menu {
		left: -60px !important;
	}

	.info-box-image {
		height: 400px;
	}

	.hero-description {
		position: absolute;
		top: 120px;
	}

	.hero-description h1 {
		font-size: 25px;
	}

	.hero-description p {
		font-size: 17px;
	}
}

/** Medium devices (tablets, 768px and up) **/
@media (min-width: 768px) {
	.dropdown-member-menu {
		top: 45px;
	}

	.content {
		padding: 131px 120px;
	}

	.content-login,
	.content-reset {
		padding-left: 270px;
		padding-right: 270px;
	}

	.content-section {
		padding: 100px 0;
		margin-top: 97px;
	}

	.hero-description {
		top: 400px;
		padding: 10px;
		background-color: rgba(0,0,0,0.4);
	}

	.info-box-image {
		height: 515px;
	}

	.list-riwayat {
		padding: 0 15px;
	}
}

/** Large devices (desktops, 992px and up) **/
@media screen and (min-width: 992px) and (max-width: 1200px) {
	.navbar-brand h2 {
		font-size: 1.5rem;
	}

	.navbar .navbar-nav .nav-link {
		font-size: 16px;
	}

	.navfill {
		width: 60px;
	}

	#nav-banner {
		width: 7%;
	}

	#nav-banner .navbar-brand {
		font-size: 13px;
		letter-spacing: 1px;
	}

	.dropdown-member-menu {
		top: 46px;
	}

	.news-container {
		max-width: 1349px;
		margin: auto;
		margin-top: 50px;
	}

	#main-nav {
		height: 97px;
	}

	#hero-section {
		margin-top: 97px;
		padding-top: 225px;
		height: 1517px;
	}

	.info-box-image {
		height: 515px;
	}

	.info-box-content-1,
	.info-box-content-2,
	.info-box-content-3 {
		padding: 50px;
	}
}

/** Extra large devices (large desktops, 1200px and up) **/
@media (min-width: 1200px) {
	.navbar-brand h2 {
		font-size: 21px;
	}

	.navbar .navbar-nav .nav-link {
		font-size: 19px;
	}

	.navfill {
		width: 140px;
	}

	#main-nav {
		height: 97px;
	}
}

/** Extra large devices (large desktops, 1366px and up) **/
@media (min-width: 1366px) {
	.navbar-brand h2 {
		font-size: 2rem;
	}

	.navfill {
		width: 210px;
	}
}

/** Extra large devices (large desktops, 1366px and up) **/
@media (min-width: 2100px) {
	.navfill {
		width: 250px;
	}
}
