/*
Theme Name: WIA
Author: Fandi Kurniawan - TigaMedia
Author URI: https://tigamediastudio.com
*/


*, *::before, *::after {
    box-sizing: border-box;
}

::selection {
  background: #f6e564; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #f6e564; /* Gecko Browsers */
}

html {	
    /* Font varient */
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    /* Smoothing */
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
	font-family: "Roboto", sans-serif;
	font-size:16px;
	line-height:1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
}

a{
	text-decoration:none;
	color:#008080;
}

a:hover{
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;	  
	text-decoration:none;
	color:#074A4A;
}

a.entry-title-link:hover{
	color:#008080;
}

p.has-text-color a{
	color:#DD2A2A;
}

/*Global layout*/
.alignwide{
    margin-left: -240px;
    margin-right: -240px;
    max-width: calc(100% + 480px);
    width: auto;
}

.txt-justify{
	text-align:justify;
}

.tm-btn-red{
	background-color:#DD2A2A !important;
	background: linear-gradient(180deg, #DD2A2A 0%, rgba(255, 73, 73, 0.4) 100%), #DD2A2A;
}

.reduce-marginbtm{
	margin-bottom:5px;
}

.pagination a{
	font-size: 20px;
	text-transform: uppercase;
	color: #008080;	
}


/*Header - Navigation*/
.site-header {
    background-color: #1f1f1f;
	position: relative;
}

.genesis-nav-menu{
	background-color:#1f1f1f;
}

.genesis-nav-menu a{
	font-family: "Poppins", sans-serif;
	font-size:15px;
	color:#c7c7c7;
	text-transform:uppercase;
}

.genesis-nav-menu a:focus, 
.genesis-nav-menu .sub-menu .current-menu-item > a:focus{
	color:#fff;
}

.genesis-nav-menu .current-menu-item > a{
	color:#fff;
	background-color:#1f1f1f;	
}

.genesis-nav-menu .current-menu-item > a:hover,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover{
	color:#fff;
}

.genesis-nav-menu .menu-item:hover a{
	color:#b3b3b3;
	background-color:#131313;	
}

.genesis-nav-menu .sub-menu {
   border-top: 1px solid #181818;
}

.genesis-nav-menu .sub-menu a{
	border: 1px solid #181818;
	text-transform:none;
	font-size:14px;
}

.genesis-nav-menu .sub-menu a:hover{
	color:#ffffff;
}

.menu-search-icon .dashicons, .dashicons-before::before{
	font-size:22px;
}

.header-sticky {
  position: fixed;
  top: 0;  
  width: 100%;
  z-index:99;
}

.site-header.header-sticky .genesis-responsive-menu{
	padding:15px 0;
}

.genesis-responsive-menu{
	padding-top:20px;
}

/*Back to top button*/
#btt-box{
	width:55px;
	height:55px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 9999;
    text-align: center;	
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;	
    background: #212121;	
	padding: 5px 0;
}

#btt-box.show {
    opacity: 0.6;
}

#btt-box.show:hover {
    background: #212121;
	opacity:0.9;
}

#btt {
    line-height: 30px;
    color: #efefef;
}

#btt span{
	display: block;
	font-size: 12px;
	line-height: 1.2;
}

/* Search */
#tm-fs-search { 
    position: fixed;
    top: 0px; 
    left: 0px; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.7);
    webkit-transition: all 0.5s ease-in-out; 
    -moz-transition: all 0.5s ease-in-out; 
    -o-transition: all 0.5s ease-in-out; 
    -ms-transition: all 0.5s ease-in-out; 
    transition: all 0.5s ease-in-out; 
    -webkit-transform: translate(0px, -100%) scale(0, 0); 
    -moz-transform: translate(0px, -100%) scale(0, 0); 
    -o-transform: translate(0px, -100%) scale(0, 0); 
    -ms-transform: translate(0px, -100%) scale(0, 0); 
    transform: translate(0px, -100%) scale(0, 0); 
	opacity: 0; 
} 

#tm-fs-search.open { 
    -webkit-transform: translate(0px, 0px) scale(1, 1); 
    -moz-transform: translate(0px, 0px) scale(1, 1); 
    -o-transform: translate(0px, 0px) scale(1, 1); 
    -ms-transform: translate(0px, 0px) scale(1, 1); 
    transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1; 
    background: rgba(0, 0, 0, 0.95); 
	z-index:99999;
} 

#tm-fs-search input[type="text"] { 
    position: absolute; 
    top: 50%; 
    width: 100%; 
    color: #cecece; 
    background: #131313; 
    font-size: 60px; 
    font-weight: 300; 
    text-align: center; 
    border: 0px; 
    margin: 0px auto; 
    margin-top: -51px; 
    padding-left: 30px; 
    padding-right: 30px; 
    outline: none; 
	border:1px solid #111;
} 

#tm-fs-search .btn { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    margin-top: 61px; 
    margin-left: -45px; 
} 

#tm-fs-search .btn:hover,
#tm-fs-search .btn:active { 
    background-color:#222;
} 

#tm-fs-search .close { 
    position: fixed; 
    top: 15px; 
    right: 15px; 
	color: #ccc;
	background-color: #212121;
	border-color: #111;
    opacity: 1; 
    padding: 10px 17px; 
    font-size: 27px; 
}

#tm-fs-search .close:hover { 
	color: #fff;
	background-color: #131313;
}

.tm-search-page .site-inner article{
	border-bottom: 1px solid #cecece;
}

.tm-search-page .site-inner article .entry-title{
	font-size:25px;
	font-weight:400;
}
.tm-search-page .site-inner article .entry-content p{
	font-size:15px;
}

/*Homepage*/
.tm-hero-image{
	min-height:520px;
}

.homepage-sub-header{
	margin-top:-120px;
	box-shadow:  0px 5px 15px rgba(0, 0, 0, 0.65);
}

.homepage-sub-header.ab-block-container .ab-container-image-wrap{
	left: unset;
	top: unset;
	bottom: 3%;
	right: 1%;	
	height: auto;
}

.homepage-sub-header.ab-block-container .ab-container-image-wrap img{
	height: auto;
	width: auto;	
}

.homepage-sub-header .wp-block-media-text__content{
	padding-right:5px;
	padding-top:15px;
}

.homepage-sub-header .wp-block-media-text__content p{
	margin-bottom: 15px;
	text-align: justify;	
}

.tm-homepage-template .entry{
	margin-bottom:0;
}

.tm-homepage-template .tm-home-section h2 {
	font-size:45px;
	font-weight:700;
}

.tm-homepage-template .tm-home-section h2.h2-alt {
	font-size:60px;
	font-weight:300;
	font-family: "Roboto", sans-serif;
}


.tm-homepage-template .tm-home-section h6 {
	font-family: "Roboto", sans-serif;
	font-weight:100;
}

.tm-homepage-template .tm-home-section.section-our-mission img{
	-webkit-box-shadow: 0px 5px 45px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 5px 45px rgba(0,0,0,0.35);
	-o-box-shadow: 0px 5px 45px rgba(0,0,0,0.35);
	box-shadow: 0px 5px 45px rgba(0,0,0,0.35);
}

.tm-homepage-template .tm-home-section.section-our-mission img:hover{
	-webkit-box-shadow: 0px 5px 45px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 5px 45px rgba(0,0,0,0.45);
	-o-box-shadow: 0px 5px 45px rgba(0,0,0,0.45);
	box-shadow: 0px 5px 45px rgba(0,0,0,0.45);
}

.tm-homepage-template .tm-home-section.section-our-mission .right-indent{
	padding-left:55px;
}

/*Page - Category - Single - template*/
.tm-header-page,
.tm-header-archive{
	height: auto;
	min-height: 250px;
	background-color: #000;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow:  0px 5px 15px rgba(0, 0, 0, 0.65);
}

.tm-header-page > h1.entry-title,
.tm-header-archive > h1.archive-title{
	font-size: 45px;
	font-weight:bold;
	color:#008080;
}

.tm-header-page > h1.entry-title::after,
.tm-header-archive > h1.archive-title::after{
    width: 200px;
    margin: 15px auto 0;
    display: block;
    height: 2px;
    background-color: #074A4A;
    content: "";
}

.archive-post-grid,
.tm-single-content{
	width:100%;
}

.archive-post-grid article:hover  header a img{
	-moz-box-shadow:0 0 15px rgba(0,0,0,0.3);
	-webkit-box-shadow:0 0 15px rgba(0,0,0,0.3);
	-o-box-shadow:0 0 15px rgba(0,0,0,0.3);
	box-shadow:0 0 15px rgba(0,0,0,0.3);
}

.tm-single-content header > p.entry-meta{
	margin-bottom:15px;
	font-size:14px;
	color:#7b7b7b;	
}

.tm-single-content header > h1{
	margin-bottom: 30px;
	color: #000;	
	font-size:45px;
	font-weight:bold;
}

.tm-featured-image{
	max-height: 600px;
	-webkit-box-shadow: inset 0px -62px 53px -7px rgba(255,255,255,0.98);
	-moz-box-shadow: inset 0px -62px 53px -7px rgba(255,255,255,0.98);
	-o-box-shadow: inset 0px -62px 53px -7px rgba(255,255,255,0.98);
	box-shadow: inset 0px -62px 53px -7px rgba(255,255,255,0.98);
}

.tm-featured-image > img{
	z-index:-1;
	position:relative;
}

.tm-single-content .entry-content{
	color:#131313;
}

.tm-single-content article{
	max-width:85%;
	margin:0 auto;
	display:block;
}

.tm-participate-section .alignwide .ab-container-inside{
	max-width: 100%;
}

.tm-local-group .tm-local-group-container .ab-container-inside{
	max-width: 100%;
}

.tm-local-group .tm-local-region {
	max-width: 95%;
	margin: 0 auto 30px;
}

.tm-local-group .tm-local-region .ab-block-layout-column{
	padding-top:15px;
}

.tm-local-group .tm-local-region .tm-local-list{
	margin-bottom: 30px;
}

.tm-local-group .tm-local-region .tm-local-list .wp-block-group{
	padding: 5px;
	margin-bottom: 15px;
}

.tm-local-group .tm-local-region .tm-local-list .wp-block-group:hover{
	background-color: #101010;
}

.tm-local-group .tm-local-region .tm-local-list .wp-block-group p{
	margin-bottom: 5px;
	padding-left: 5px !important;
	padding-right: 5px !important;
	text-align: center;
}

.tm-inner-donation .wp-block-cover__inner-container{
	width:100%;
}

.tm-donation-container{
	background-color:rgba(0,0,0,0.89);
	min-height:150px;
	width:100%;
}

.ab-block-profile{
	padding:1%;
}

.ab-block-profile .ab-profile-avatar-wrap{
	padding:5px;
	flex:2 0 0;
}

.ab-block-profile .ab-profile-content-wrap{
	padding:15px 10px;
	flex:3 0 0;
}

.ab-block-profile .ab-profile-name{
	font-size:16px;
}

.ab-block-profile .ab-profile-title{
	font-size:13px !important;
}

.tm-board-green .ab-block-profile,
.tm-board-black .ab-block-profile{
	background-color:transparent;
}

.tm-board-green .ab-profile-name{
	color:#074a4a;
}

.tm-board-green .ab-profile-title{
	color:#fefefe;
}

.tm-board-black .ab-profile-name{
	color:#008080;
}

.tm-board-black .ab-profile-title{
	color:#666;
}

.tm-donate-template .site-inner{
	padding-top:0;
}

.tm-donate-template .site-inner .content article{
	margin-bottom:0;
}

/* Landing Page */
.tm-landing-page .site-inner{
	padding-top:0;
	padding-bottom:0;
}

.tm-landing-page .site-inner article{
	margin-bottom:0;
}

.tm-landing-page .tm-hero-thankyou{
	height:95vh;
}

.tm-landing-page .tm-hero-thankyou h1{
	display:inline;
}

/* Related Posts*/
.tm-related-post{
	margin:80px 0 30px;
}

.tm-related-post-pretitle{
	font-size:24px;
	color:#008080;
}

.tm-related-post-list{
	margin:15px 0;
	display:inline-block;
}

.tm-related-post-col{
	margin-bottom:20px;
}

.tm-related-post-col a img{
	margin-bottom:10px;
}

.tm-related-post-title a{
	font-size:20px;
	color: #008080;
	font-weight:400;
	font-family:'Poppins',sans-serif;
}

.tm-related-post-title a:hover{
	color: #074A4A;
}

/* Plugins */

.share-after {
    margin-top: 85px;
}

input, select, textarea {
    font-size: 15px;
}

.tm-form-container > div{
	margin-bottom:25px;
}

.tm-form-container label{
	color:#131313;
	font-family:'Poppins', sans-serif;
}

.ast-required{
	color:#DD2A2A;
}

.tm-captcha{
	display:inline-block;
}

.tm-captcha.tm-captcha-char{
	width: 100px;
	margin-top: 7px;
}

.tm-captcha.tm-captcha-field{
	width: 225px;
	height: 45px;	
	margin-left:10px;
}

.tm-form-btn{
	text-align:right;
}

span.wpcf7-not-valid-tip {
    color: #DD2A2A;
    font-size: 12px;
}

div.wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #313131;
	clear: both;
}

div.wpcf7-mail-sent-ok {
	border: 2px solid #398f14;
	background-color:#efffe8;
}

div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
	border: 2px solid #ffa500;
	background-color: #fff5e4;
}

div.wpcf7-spam-blocked {
	border: 2px solid #ffa500;
	background-color: #fff5e4;
}

div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing {
    border: 2px solid #DD2A2A;
	background-color:#F9E5E5;
}

#mc4wp-MMERGE11 span.wpcf7-list-item {
    display: block;
}

.tm-form-container .tm-inside-container{
	max-width: 80%;
	margin: 0 auto;
}

.tm-form-container input[type="submit"]:disabled, 
.tm-form-container input[type="submit"]:disabled:hover{
	color:#E3C7C7;
}

.cn-button.bootstrap{
	color:#cecece;
	background-color:#074A4A;
	*background-color:#074A4A;
	background-image:-moz-linear-gradient(top,#008080,#074A4A);
	background-image:-webkit-gradient(linear,0 0,0 100%,from(#008080),to(#074A4A));
	background-image:-webkit-linear-gradient(top,#008080,#074A4A);
	background-image:-o-linear-gradient(top,#008080,#074A4A);
	background-image:linear-gradient(to bottom,#008080,#074A4A);
}

.cn-button.bootstrap:hover {
	color:#fff;
	background-color:#074A4A;
	*background-color:#074A4A;
}

.asp-stripe-form .asp_product_item_amount_input_container{
	max-width:250px;
}

.asp-stripe-form .asp_product_item_amount_input_container input{
	width:150px;
}

.asp_all_buttons_container {
    display: block;
    margin-top: 15px;
}

/*Popup*/
.hustle-popup-content{
	text-align:center !important;
}

.hustle-ui.module_id_2 .hustle-popup-content{
	overflow-y:unset !important;
}

.hustle-layout .hustle-group-title{
	padding-bottom:0 !important;
}

.hustle-layout .hustle-title{
	font-family: 'Poppins',sans-serif !important;
}

.hustle-layout .hustle-content-wrap{
	padding:5px 0 !important;
}

.hustle-layout .hustle-layout-content .hustle-group-content{
	margin-bottom:10px !important;
}
.hustle-layout .hustle-layout-content .hustle-group-content p {
	padding: 0 10% !important;
}
.hustle-layout .hustle-layout-footer .hustle-button.hustle-button-cta{
	margin-right:auto !important;
	margin-left:auto !important;
}
.hustle-button-close{}

.hustle-info .hustle-nsa-link{
	margin-top: 10px !important;
	font-size: 11px !important;
	text-decoration: underline !important;	
}

/*Block Posts*/
.ab-block-post-grid header,
.archive-post-grid header{
	margin-bottom:15px;
}

.ab-block-post-grid header .ab-block-post-grid-title,
.archive-post-grid header .entry-title{
	margin-bottom: 5px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
	text-align: left;	
}

.ab-block-post-grid .ab-block-post-grid-text,
.archive-post-grid .entry-content {
	font-size:14px;
}

.ab-block-post-grid .ab-block-post-grid-byline,
.archive-post-grid header .entry-meta{
	margin-bottom:5px;
	font-size:13px;
	color:#7b7b7b;
}

.ab-block-post-grid .is-grid article{
	margin-bottom:1em;
}

.archive-post-grid header a img{
	margin-bottom:15px;
}

.archive-post-grid header .entry-title{
	margin-bottom: 10px;
}

.archive-post-grid header .entry-title a{
	font-size:23px;
	font-weight:700;
}


/*Footer area*/
.site-footer{
	text-align: left;
	background-color: #121212;
	padding: 15px 0 0;
	color: #fefefe;
	font-size: 14px;
	border-top: #000;
}

.footer-widgets{
	border-top:0 none;
	background-color: transparent;
	padding:45px 0;
}

.footer-widget-area  a{
	color: #c7c7c7;
	
}

.footer-widget-area a:hover{
	color: #fff;
}

.footer-widget-area .widget-title{
	font-size: 16px;
}

.footer-widget-area .widget_text {
	font-size:13px;
}

.footer-widget-area .widget_text img.alignleft {
	margin-right:5px;
}

.footer-bottom{
	background-color: #000;
	display:block;
	margin:0 auto;
	padding: 15px 0;
}

.footer-bottom p{
	text-align:center;
	font-size:12px;
	margin-bottom: 0;
}