/*  #d61a27 - red
	#5f8a36 - green , life
	#f3b551 - orange , fire
	#805e44 - brown , hvac
	#32a8c5 - blue , elec


*/

* {
	/* font-size: 16px; */
	
}

body{
	font-family: Arial, Helvetica, sans-serif;
	overflow-x: hidden;
	font-size: 16px;
}

:root {
  --thered: #d61a27;
  --elec: #32a8c5;
  --fire: #f3b551;
  --hvac: #805e44;
  --lift: #5f8a36;
  --gas: #0D99B5;
  --vehicle: #007200;
  --sphoto: #1F4FFF;
  --swater: #FF8800;
}
.notallow{
	cursor: not-allowed!important;	opacity: 0.5;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.tooltips{
	text-decoration: underline;
	color: #0072FF;
	font-style: italic;
	cursor: pointer;
}
.line-clamp1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-color-blue{
	color: #0072FF!important;
	font-weight: 600;
}
.text-color-orange{
	color: #f3b551!important;
}
.text-color-brown{
	color: #5f8a36!important;
}
.text-color-green{
	color: #805e44!important;
}
footer{
	background:#d61a27;
	padding:24px;
}
#mobile-header-search-bar-wrapper{
	display:none;
}
#mobile-header-search-bar{
	width: 100%;
	display:flex;
	background:#ededed;
	border-radius: 16px;
	height: 32px;

	justify-content: center;
	margin: 0 auto;
}
#mobile-header-search-bar-input-wrapper{
	flex: 1 1 0;

}
#mobile-header-search-button{
	flex: 0 0 38px;
	display:flex;
	align-items: center;
	justify-content: center;
	background-image: url('/assets/images/icons/search.svg');
	background-size: 16px;
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-color:rgba(0,0,0,0);
	border: 0px solid #000;
	cursor: pointer;
}
#mobile-header-search-bar-input-wrapper input{
	width: 100%;
	border:0px solid #000;
	outline: none;
	background:rgba(0,0,0,0);
	height: 32px;
	padding-left:12px;
}

#desktop-header-search-bar{
	max-width: 600px;
	min-width:400px;
	width: 100%;
	display:flex;
	background:#ededed;
	border-radius: 16px;
	height: 32px;

	justify-content: center;
	margin: 0 auto;
}
#desktop-header-search-bar-input-wrapper{
	flex: 1 1 0;
}
#desktop-header-search-button{
	flex: 0 0 38px;
	display:flex;
	align-items: center;
	justify-content: center;
	background-image: url('/assets/images/icons/search.svg');
	background-size: 16px;
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-color:rgba(0,0,0,0);
	border: 0px solid #000;
	cursor: pointer;
}
#desktop-header-search-bar-input-wrapper input{
	width: 100%;
	border:0px solid #000;
	outline: none;
	background:rgba(0,0,0,0);
	height: 32px;
	padding-left:12px;
}

#desktop-footer-logo-wrapper{
	align-items: center;
	justify-content: center;
	margin-bottom:24px;
	flex-wrap: wrap;
}
#desktop-footer-logo-wrapper div{
	padding-left:18px;
	padding-right:18px;
}
#desktop-footer-wrapper{
	justify-content: center;
	flex-wrap: wrap;
}

#desktop-footer-wrapper div{
	font-size:0.8em !important;
	color:white;
	padding-left:12px;
	padding-right:12px;
	border-right:1px solid white;
}
#desktop-footer-wrapper div a{
	color: white;
	text-decoration: none;
}
.round_button_whitebg{
	height: 42px;
	border-radius: 21px;
	text-align: center;
	line-height: 42px;
	width: 212px;
	background:white;
	color:#d61a27;
	margin:0 auto;
	font-weight: 600;
}
.thered{
	color:#d61a27;
}

.electrical_name{
	color:#32a8c5;
	font-weight: bold;
}
.fireservice_name{
	color:#f3b551;
	font-weight: bold;
}
.hvac_name{
	color:#805e44;
	font-weight: bold;
}
.lift_name{
	color:#5f8a36;
	font-weight: bold;
}
.gas_name{
	color:#0D99B5;
	font-weight: bold;
}
.vehicle_name {
	color:#007200;
	font-weight: bold;
}
.sphoto_name {
	color:#1F4FFF;
	font-weight: bold;
}
.swater_name {
	color:#FF8800;
	font-weight: bold;
}

.flexbox{
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flexalignright{
	justify-content: flex-end;
}
#logo{
	align-items: center;
	padding-left: 6px;
}
#landing-banner{
	margin:0 auto;
	position: relative;
}
#bannerPause{
	position: absolute;
	bottom:12px;
	right:12px;
	width: 32px;
	height: 32px;
	background-color:rgba(250,250,250,0.4);
	z-index: 99;
	background-size:50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url("/assets/images/pause.png");


}
.bannerPlay{
	background-image: url("/assets/images/play.png")!important;
}

#membermenu{
	align-items: center;
}
#membermenu-pic{
	width: 28px;
	height: 28px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	padding:0px;
	margin-right:12px;
}
#desktop-user-menu{
	/* padding-top:12px;
	padding-bottom:0px;
	margin-bottom:12px; */
	min-width:20%;
	justify-content: space-between;
	align-items: center;
}

#desktop-user-menu div{
	padding: 0 4px;
}

#desktop-header{
	display:none;
	height: 90px;
	align-items: center;
	border-bottom: 3px solid #d61a27;
	position: relative;
}
#desktop-header-menu{
	align-items: flex-end;
	justify-content: space-around;
	flex-direction: column;
	font-size:1em !important;
	flex-grow: 2;
}
#desktop-header-wrapper{
	width: 100%;
	height: 100%;
	justify-content: space-between;
	max-width: 1920px;
	width: 85%;
	margin:0 auto;
}
#desktop-navigation-menu{
	display: flex;
	justify-content: space-between;
	min-width: 70%;
}
#desktop-header-wrapper a{
	text-decoration: none;
	color:#222222;
	cursor: pointer;
}
#desktop-header-wrapper a:hover{
	color:#d61a27;
}
.desktop-navigation-item{
	padding:0 12px;
}
.d-text-menu-wrapper{
	justify-content: space-around;
	align-items: center;
}
.d-text-menu{
	background-color: rgba(209, 209, 209, 0.5);
	border: 1px solid transparent;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	margin-right:8px;
}

.d-text-menu:hover {
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(153, 153, 153);
}

.d-text-menu-active {
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(153, 153, 153);
}

.text-S {
	font-size: 11px;
	width:24px;
	height:24px;
}

.text-M {
	font-size: 15px;
	width:26px;
	height:26px;
}

.text-L {
	font-size: 20px;
	width:28px;
	height:28px;
}

#d-language-menu{
	/* margin-right:24px; */
}
#d-language-menu div{
	/* padding-left:6px;
	padding-right:6px; */
}
.submenu-button{
	background-image: url("/assets/images/icons/down.svg");
	background-size: 6px;
	background-position: right 3px center;
	background-repeat: no-repeat;
}

.submenu-button:hover{
	background-image: url("/assets/images/icons/down-active.svg");
}

#desktop-header-submenu{
	position: absolute;
	z-index: 99999;
	width: 100%;
	background: #fff;
	top: 90px;
	display:none;
	border-bottom:1px solid #dddddd;
-webkit-box-shadow: 0px 1px 9px 0px rgba(221,221,221,1);
-moz-box-shadow: 0px 1px 9px 0px rgba(221,221,221,1);
box-shadow: 0px 1px 9px 0px rgba(221,221,221,1);
}

#submenu-wrapper{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
/*
	grid-template-columns: repeat(4, minmax(200px,500px));
  	row-gap: 30px;
	column-gap: 10px;
*/
}

.submenu-item {
	flex:0 0 25%;
}

.submenu-chapter-list{
	font-size:0.8em !important;
	line-height: 18px;
	margin-top:18px;
	display: flex;
	justify-content: space-between;
}
.submenu-chapter-list a{
	text-decoration: none;
	color:#222222;
}
.submenu-chapter-item{
	margin-bottom:8px;
}
.submenu-chapter-item a:hover{
	color: blue;
	text-decoration: underline;
}
.sliderbanner{
	width: 100%;
	padding-bottom:37.5%;
}
.mobile-banner-content{
	display:none;
	padding-top:24px;padding-bottom:24px;
	color:white;
	position: relative;
}
.banner_content_wrapper{
	position: absolute;
	top:0px;
	left:0px;
	height: 100%;
	width: 50%;
	padding-top:6%;
	padding-left:8%;
}
.banner_content_wrapper .title{
	font-size:3em !important;
	font-weight: 600;
}
.banner_content_wrapper .content{
	font-size:1.3em !important;
	line-height: 32px;
	margin-top:24px;
	font-weight: 300;
}
#hotkeyword{
	margin-top:12px;
	max-width: 1000px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#hotkeyword div{
	background:white;
	color:#222222;
	text-align: center;
	padding:9px 18px 9px 18px;
	font-size:1em !important;
	margin:8px;
	border-radius: 6px;
}
#hotkeyword a{
	text-decoration: none;
	color:#222222;
	cursor: pointer;
}
#searcharea{
	width: 100%;
	margin:0 auto;
/* 	position: absolute; */
/* 	z-index: 2; */
/* 	top: 100%; */
/* 	margin-top:-30px; */
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding-bottom:42px;
	padding-top:0px;
}



#searchbutton{
	width:400px;
	border-radius: 30px;
	line-height: 60px;
	border: 1px solid #f0f0f0;
	text-align: center;
	background-image:url('/assets/images/icons/search.svg');
	background-repeat: no-repeat;
	background-position: 24px center;
	background-size:18px;
	background-color:white;
	cursor: pointer;
}




#landing-note{
	text-align: center;
	position: relative;
}
#landing-note-message{
		display:block;
}
#landing-note .title{
	font-size: 2em !important;
	padding-top:64px;
	padding-bottom:24px;
	color: #d61a27;
	font-weight: bold;
}
#landing-note .content{
	padding-top:24px;
	padding-bottom:42px;
	font-size:1.125em !important;
	line-height: 24px;
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
#what-news{
	padding-top:45px;
	padding-bottom:45px;
	background-size: contain;
	background-position: left top;
	background-repeat: repeat-x;
	position: relative;
	padding-left:12px;
	padding-right:12px;

}

#what-news .sectiontitle {
    font-size: 2em !important;
    padding-top: 12px;
    padding-bottom: 24px;
    color: #222222;
    text-align: center;
    font-weight: bold;
}
.main-news{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	border-radius: 18px;
	z-index: 3;
	min-height: 300px;
}
.main-news .news-image-wrapper{
	width: 50%;
	border-radius: 12px 0px 0px 12px;
	background-size: contain;
	background-color: #eeeeee;
	background-repeat: no-repeat;
	background-position: center center;
}
.main-news .news-detail-wrapper{
	width: 50%;
	padding:24px 12px 24px 12px;
	background:white;
	width: 50%;
	border-radius: 0px 12px 12px 0px;
}
.main-news .news-detail-wrapper .title{
	margin-bottom:24px;
	font-weight: 600;
	line-height: 24px;
	font-size:1.05em !important;
}
.main-news .news-detail-wrapper .date{
	font-size:0.75em !important;
	color:#444444;
	line-height: 32px;
}
.main-news .news-detail-wrapper .content{
	margin-bottom:42px;
	line-height: 22px;
	font-size:0.875em !important;
	text-overflow: ellipsis;
	overflow: hidden;
}
.main-news .news-detail-wrapper .type{
}
.main-news .news-detail-wrapper .button{
		color: #0072FF;
	line-height: 32px;
	font-size:0.8em !important;
/*
	background:green;
	color:white;
	width: 144px;
	line-height: 42px;
	text-align: center;
	border-radius: 8px;
*/
}
.other-news-wrapper{
	width: 100%;
	max-width: 1000px;
	margin: 42px auto;
	margin-bottom:62px;
	justify-content: space-between;
}
.other-news{
	border-radius: 18px;
	flex-direction: column;
	flex:0 0 32%;
}
.other-news .news-image-wrapper{
	height: 250px;
	border-radius: 12px 12px 0px 0px;
	background-size: contain;
	background-color: #eeeeee;
	background-repeat: no-repeat;
	background-position: center center;


}
.other-news .news-detail-wrapper{
	height: 250px;
	padding:24px 12px 24px 12px;
	background:white;
	border-radius: 0px 0px 12px 12px;
}
.other-news .news-detail-wrapper .title{
	margin-bottom:12px;
	font-weight: 600;
	line-height: 22px;
	font-size:1em !important;
}
.other-news .news-detail-wrapper .date{
	font-size:0.75em !important;
	color:#444444;
	line-height: 32px;
}
.other-news .news-detail-wrapper .content{
	margin-bottom:18px;
	line-height: 22px;
	font-size:0.875em !important;
	display: -webkit-box;
	display: -moz-box;
	-moz-line-clamp: 2;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.other-news .news-detail-wrapper .type{
}
.other-news .news-detail-wrapper .button{
	color:#0072FF;
	line-height: 32px;
	font-size:0.8em !important;
}
#booklets{
	/* margin-top:62px;
	margin-bottom:62px; */
/*
	background-image:url("/assets/images/bookletid_bg.png");
	background-size: cover;
*/
	overflow:hidden;
}
#booklets .content{
	color: white;
	text-align: center;
	width: 80%;
	max-width: 1000px;
	margin:0 auto;
	line-height: 24px;
	font-size:1.05em !important;
}
#booklets .booklet_hero_video_bg{
	height: 100%;
	width: 100%;
	position: absolute;
	top:0;
	left:0;
	z-index: -1;
}

#bgvid {
	object-fit: cover;
	height:100%;
}

#booklets .title{
	/* padding-top:48px; */
	padding: 32px 20px 0px 20px;
	margin-bottom:24px;
	font-size:1.5em !important;
	line-height: 42px;
	text-align: center;
	color:#d61a27;
	font-weight: 600;
	color: white;
}
.bookletlist-wrapper{
	width: 80%;
	max-width: 1200px;
	margin:0 auto;
	justify-content: space-between;
	text-align: center;
	color:#d61a27;
	font-weight: 600;
	padding-top:32px;
	padding-bottom:16px;
	color: white;
	flex-wrap: wrap;
}

.bookletlist-wrapper>div{
	width: 16%;
}

.bookletlist-container{
	flex: 1 0 21%;
	margin-bottom: 40px;
	transition: all .5s ease;

}

.bookletlist-container:hover{
	transform: rotate3d(0,1,0,20deg);
}

.bookletlist-img {
	width:35%;
	margin: auto;
}

#hyperlink{
	width: 80%;
	margin: 0 auto;
	position: relative;
}
#hyperlink .slidebutton{
  width: 20px;
  height: 20px;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0;  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px;
  cursor: pointer;
}
#hyperlink-slider .item{
	padding:0px 2px 0px 2px;
}

#hyperlink-slider .item img{
border-radius: 12px;}

#notes-wrapper{
	max-width: 1000px;
	width: 100%;
	margin:0 auto;
	font-size:0.8em !important;
	color:#222222;
	line-height: 18px;
	margin-bottom:42px;
	text-align: center;
	padding: 0 20px;
}
#searchmenu{
	display: flex;
	position: fixed;
	z-index: 999;
	top:0;
	left:0;
	background:white;
	width: 100vw;
	height:100vh;
}
.searchmenu-title{
	margin-top:24px;
	margin-bottom:12px;
	color: #d61a27;
	font-size:1.125em !important;
	font-weight: 600;
}
#searchmenu-close{
	position: absolute;
	top:12px;
	right: 12px;
	font-size:0.8em !important;
	color:#444444;


}
.serachmenu-4booklet-item{
	width:25%;height:100%;text-align: center;padding:24px 0px 24px 0px;background:#f6f6f6;
}
#searchmenu-keywords-wrapper{
	flex-wrap: wrap;
	margin-bottom: 42px;

}
#searchmenu-keywords-wrapper a{
	color: #222222;
	text-decoration: none;

}
#searchmenu-keywords-wrapper .keywords{
	border:1px solid #dddddd;
	padding:8px 14px 8px 14px;
	border-radius: 8px;
	font-size:0.8em !important;
	color:#222222;
	margin-right:8px;
	margin-bottom:8px;
}
#searchmenu-wrapper{
	margin:0 auto;
	max-width: 1000px;
	width: 100%;
	padding-top:62px;
}
#search-input-wrapper{
	width: 100%;
	border-bottom: 1px solid red;
}
#search-input-wrapper form{
	justify-content: space-between;
	width: 100%;
}
#search-input-wrapper .searchbutton{
	background-image: url(/assets/images/icons/search.svg);
	background-size: 18px 18px;
	background-position: center center;
	background-repeat: no-repeat;
}
#search-input-wrapper input{
	width: 100%;
	outline: none;
	border: 0px solid #fff;
	text-align: center;
	height: 32px;
	line-height: 32px;
	font-size:0.95em !important;
	color:#444444;
}
#searchmenu-keymodelframework{
	flex-wrap: wrap;
}
#searchmenu-keymodelframework .item{
	font-size:0.8em !important;
	height: 72px;
	padding:0px 18px 0px 18px;
	color:#222222;
	width: 33.33%;
	display:flex;
	align-items: center;
}#searchmenu-keymodelframework .item a{
	text-decoration: none;
	color:#222222;
}
#searchmenu-booklet-wrapper{
	border-radius: 12px;
	border:1px solid #dddddd;
}
#serachmenu-4booklet{
	border-radius: 12px;
}
#serachmenu-4booklet>div:first-child {
 	border-radius: 12px 0px 0px 0px;
}
#serachmenu-4booklet>div:last-child {
 	border-radius: 0px 12px 0px 0px;
}

#booklet .movie {

}

#booklet .movie__card {
    position: relative;
    transition: .2s ease-out;
}


.decoration{
	position: absolute;
	background-repeat: no-repeat;
	background-size:cover;

}
#lightbulb{
	width: 240px;
	height: 240px;
	top:-20px;
	left:0px;
}
#maintppl{
	width: 320px;
	height: 320px;
	background-image:url("/assets/images/maint.png");
	bottom:0px;
	right:0px;
}
#shadowup_elec{
	width: 320px;
	height: 320px;
	background-image:url("/assets/images/shadowup.png");
	top:0px;
	left:0px;
}
#shadowup_fire{
	width: 320px;
	height: 320px;
	background-image:url("/assets/images/shadow_bottom_right.png");
	bottom:0px;
	right:0px;
}

#booklet_hero{
	position: relative;
/* 	background-image:url("/assets/images/hero_bg.png"); */
	background-size: cover;
	padding-top:122px;
	padding-bottom:122px;
	width: 100%;
}
#booklet_hero .booklet_hero_video_bg{
	height: 100%;
	width: 100%;
	position: absolute;
	top:0;
	left:0;
	z-index: -1;
}
#booklet_hero .movie__card {
    position: relative;
    transition: .2s ease-out;
}
#booklet_hero .title{
	color: white;
	font-size:2.55em !important;
	font-weight: 600;
}
#booklet_hero .content{
	color: white;
	font-size:0.95em !important;
	line-height: 18px;
	margin-top:32px;
}
#booklet_hero .viewbutton{
	background:#0072FF;
	color: white;
	border-radius: 18px;
	line-height: 36px;
	width: 160px;
	text-align: center;
	margin-top:42px;
	font-size:0.8em !important;
}
.booklet_hero_wrapper{
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
	position: relative;
}
#electrical_installations_hero{
	background-image:url("/assets/images/landing/hero-electrical-installations.png");
	width: 400px;
	height: 546px;
	background-size: contain;
	background-position: center center;
	margin:0 auto;
	background-repeat: no-repeat;
}
#contactus-banner{
	position: relative;
}
#contactus-banner-content{
	position: absolute;
	top:0px;
	left:0px;
	width: 50%;
	padding-left:10%;
	padding-right:10%;
	margin-top:5%;
}
#contactus-banner-content .title{
	font-size:2.25em !important;
	color:#fff;
	font-weight: 600;
	margin-bottom:6px;

}
#contactus-banner-content .content{
	font-size:0.95em !important;
	color:#fff;
	line-height: 20px;
}
.contactus-container{
	max-width: 1200px;
	width: 90%;
	margin:0 auto;
	border-radius: 20px;
	-webkit-box-shadow: 10px 10px 19px -6px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 19px -6px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 19px -6px rgba(0,0,0,0.75);
}
.contactus-container #subscriptionform{
	display: flex;
	flex-direction: column;
	padding: 24px;
	width: 100%;
}
#contactus-info{
	flex: 0 0 45%;
}
#contactus-info>div{
	margin-bottom:32px;
	margin-top:24px;
}
#contactus-form{
	width: 50%;

	margin-top:-320px;
	padding:12px;
	padding:2%;
}
#contactus-form-wrapper{
	padding:32px;
	background:white;
	border-radius: 8px 8px 8px 8px;
	-moz-border-radius: 8px 8px 8px 8px;
	-webkit-border-radius: 8px 8px 8px 8px;
	border: 0px solid #000000;
	-webkit-box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
}
#contactus-form-wrapper .title{
	line-height: 32px;
	font-size:1.25em !important;
	font-weight: 600;
	margin-bottom:24px;


}
#contactus-form-wrapper .statement{
	line-height: 22px;
	font-size:1em !important;
	margin-bottom:32px;
	color:#222222;
}
#contactus-form-wrapper .inputrow{

	margin-bottom:32px;
	border-bottom:1px solid #aaaaaa;
}
#contactus-form-wrapper input, #contactus-form-wrapper textarea, #contactus-form-wrapper select {
	outline: none;
	border:0px solid #ffffff;
	width: 100%;
	font-size:0.8em !important;
	line-height: 30px;
	background-color: rgba(0,0,0,0);

}
#contactus-form-wrapper select {
	height: 30px;
}
#contactus-form-wrapper textarea{
	border:1px solid #aaaaaa;
	padding:8px;
	border-radius: 6px;
}
#contactus-info .icon{
	height: 24px;
	background-repeat: no-repeat;
	background-size: 22px 22px;
	background-position: left center;
	flex: 0 0 42px;
}
#contactus-info .information{
	flex: 1 1 0;
}
#contactus-info .title{
	font-size:1.125em !important;
	font-weight: 600;
	margin-bottom:6px;
}

#contactus-info .content{
	font-size:1.125em !important;
}

#contactus-form-wrapper .declaration{
	color: #444444;
	font-size:0.875em !important;
	line-height: 18px;
	font-style: italic;
}

.checkboxrow{
	font-size:0.875em !important;
	color:#444444;
	margin-bottom: 32px;
}
.checkboxrow .question{
	margin-bottom:12px;
}
.checkbox, .checkedbox{
	border: 1px solid #aaaaaa;
	border-radius: 4px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}
.checkedbox{
	background-image: url("/assets/images/icons/tick-sign.svg");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center center;

}
.checkboxitem{
	align-items: center;
	justify-content: flex-start;
	margin-bottom:12px;
	flex: 50%;
}
.checkboxitem .name{
	margin-left:6px;
}

#registerbutton{
	line-height: 42px;
	width: 100%;
	border-radius: 21px;
	color: white;
	text-align: center;
	font-size:0.95em !important;
	font-weight: 600;
	margin-top:32px;
background: rgba(255,221,0,1);
background: -moz-linear-gradient(left, rgba(255,221,0,1) 0%, rgba(254,182,69,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,221,0,1)), color-stop(100%, rgba(254,182,69,1)));
background: -webkit-linear-gradient(left, rgba(255,221,0,1) 0%, rgba(254,182,69,1) 100%);
background: -o-linear-gradient(left, rgba(255,221,0,1) 0%, rgba(254,182,69,1) 100%);
background: -ms-linear-gradient(left, rgba(255,221,0,1) 0%, rgba(254,182,69,1) 100%);
background: linear-gradient(to right, rgba(255,221,0,1) 0%, rgba(254,182,69,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffdd00', endColorstr='#feb645', GradientType=1 );
}

#banner1animation{
	position: absolute;
	bottom:-100px;
	left:100px;
	display: none;
}
#membermenu-notification{
	background-image:url("/assets/images/icons/user_notification.svg");
	height: 28px;
	width: 28px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center center;
	margin-left:24px;
}
#membermenu-comment{
	position: relative;
	background-image:url("/assets/images/icons/user_no_comments.svg");
	height: 28px;
	width: 28px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center center;
	margin-left:24px;
}
.membermenu-unread{
	position: absolute;
    top:-8px;
    right:-12px;
    color:white;
    line-height: 14px;
    min-width: 24px;
    font-size:0.7em !important;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    border-radius: 4px;
    padding-top:2px;
    padding-bottom:2px;
    padding-right:4px;
    padding-left:4px;
    text-align: center;
    background: #d61a27;
 }
#bookletlistpagebanner{
	background-image:url("/assets/content/images/bookletpagebanner.jpg");
	background-size: cover;
	padding-bottom:25%;
	background-position: top center;
	position: relative;

}
#bookletlistpagebanner .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background:rgba(40,40,40,0.2);
	top:0px;
	left:0px;
	color: #ffffff;
}
#bookletlistpagebanner .overlay .container{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding:12px;
	padding-top:5%;
	text-align: center;
	padding-bottom:5%;
}
#bookletlistpagebanner .overlay .container .title{
	font-size:1.5em !important;
	line-height: 24px;
	margin-bottom:42px;
}

#bookletlistpagebanner .overlay .container .content{
	font-size:1.2em !important;
	line-height: 2em;
}
#bookletlistpage{
	margin:0 auto;
	width: 100%;
	max-width: 1720px;
	margin-top:42px;
}

#aboutusbanner{
	background-image:url("/assets/images/banner/banner_aboutus2.jpg");
	background-size: 100%;
	padding-bottom:25%;
	background-position: top center;
	position: relative;

}
#aboutusbanner .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background:rgba(40,40,40,0.8);
	top:0px;
	left:0px;
	color: #ffffff;
}
#aboutusbanner .overlay .container{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding:12px;
	padding-top:5%;
	text-align: center;
	padding-bottom:5%;
}
#aboutusbanner .overlay .container .title{
	font-size:1.5em !important;
	line-height: 24px;
	margin-bottom:42px;
}

#aboutusbanner .overlay .container .content{
	font-size:1.2em !important;
	line-height: 2em;
}


#aboutus{
	margin:0 auto;
	width: 100%;
	max-width: 1200px;
	margin-top:42px;
}

#aboutus .content{
	font-size:1.125em !important;
	padding-left:32px;
	line-height: 28px;
	color: #223332;
}
#aboutus .content .pointline{
	padding-left:0px;
	margin-top:12px;
	margin-bottom:12px;
}
#aboutus .content .pointline::before {
  content: "•";
  margin-right:12px;
}
#aboutus .content .para{
	margin-top:0px;
	margin-bottom:24px;
}
#aboutus2{
	margin:0 auto;
	width: 1200px;
	margin-top:42px;
}

#contactusbanner{
	background-image:url("/assets/images/banner/banner_aboutus2.jpg");
	background-size: 100%;
	padding-bottom:25%;
	background-position: top center;
	position: relative;

}

#contactusbanner .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background:rgba(40,40,40,0.8);
	top:0px;
	left:0px;
	color: #ffffff;
}
#contactusbanner .overlay .container{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding:12px;
	padding-top:5%;
	text-align: left;
	padding-bottom:5%;
}
#contactusbanner .overlay .container .title{
	font-size:2em !important;
	line-height: 24px;
	margin-bottom:42px;
}

#contactusbanner .overlay .container .content{
	font-size:1.125em !important;
	line-height: 32px;
	/* width: 50%; */
}

#showmorenewbutton-link {
	color:#000000;
	font-size:0.75em !important;
}

#showmorenewbutton {
	background-color: white;
	padding: 12px 20px;
	border-radius: 50px;
	font-size: 1.2em !important;
}

#showmorenewbutton-link:hover > #showmorenewbutton {
	background-color: #dddddd;
}

#mobile-header {
	display:none;
}

#mobile-header-nav {
	padding: 8px 14px;
	display:flex;
	justify-content:space-between;
	align-items: center;
}

.mobile-header-icon {
	box-sizing: initial;
	background-size: 22px;
	background-repeat: no-repeat;
	background-position: center center;
	width:22px;
	height:22px;
	cursor: pointer;
	padding:10px;
}

#mobile-header-icon-container{
	display:flex;
	justify-content:space-around;
	width:45vw;
}

#mobile-header-home {
	background-image: url("/assets/images/icons/home.svg");

}

#mobile-header-lang{
	background-image: url("/assets/images/icons/lang.svg");
}
#mobile-header-search {
	background-image: url("/assets/images/icons/search.svg");
}
#mobile-header-textsize {
	background-image: url("/assets/images/icons/font.svg");
}

#mobile-header-lang:hover #lang-dropdown {
	display:flex;
	justify-content:space-around;
	flex-direction: column;
}

#mobile-header-login {
	background-image: url("/assets/images/icons/login.svg");
}

#mobile-header-hamburger {
	background-image: url("/assets/images/icons/menu.svg");
}

#lang-dropdown {
	background-color: rgb(216, 216, 216);
	position:absolute;
	top: 100%;
	left:0%;
	z-index: 3;
	padding:0 5px;
	height:100px;
	border-radius: 50px;
	display: none;
}

#mobile-menu {
	position: fixed;
	top:0;
	height:100vh;
	width:100vw;
	z-index:998;
	display:none;
}

#mobile-menu-backdrop {
	position:absolute;
	background-color:rgb(0,0,0,0.6);
	height:100%;
	width:100%;
	z-index:998;
}

.mobile-submenu-button{
	background-image: url("/assets/images/icons/right-arrow.svg");
	background-size: 16px;
	background-position: right center;
	background-repeat: no-repeat;
}

#mobile-menu-wrapper{
	position:absolute;
	right:0;
	height:100%;
	width:90%;
	background-color: white;
	z-index:999;
	opacity: 0;
	overflow-y:scroll;
	overflow-x: hidden;
}

#mobile-menu-toolbar{
	height:50px;
	background-color: rgb(219, 40, 17);
	margin:0 auto 20px auto;
}

#mobile-menu-close {
	font-size:1.5em !important;
	position:absolute;
	right:6%;
	top:10px;
	cursor: pointer;
	color:white;
}

#mobile-menu-back{
	font-size:1.2em !important;
	position:absolute;
	left:3%;
	top:14px;
	cursor: pointer;
	color:white;
	display: none;
}

.mobile-menu-list{
	padding:0 20px;
	list-style: none;
}

.stop-scrolling {
	height: 100%;
	overflow: hidden;
  }

.mobile-menu-list-item {
	font-size:1.05em !important;
	padding:16px 5px;
	border-bottom: 1px solid rgb(219, 40, 17);
	cursor: pointer;
}

.mobile-submenu-list{
	height:0;
	overflow: hidden;
}

.mobile-menu-list-subitem {
	font-size:1em !important;
	padding:16px 5px;
	border-bottom: 1px solid rgb(219, 40, 17);
	cursor: pointer;
}

.mobile-menu-sublist-item{
	font-size:1em !important;
	padding:16px 5px;
	border-bottom: 1px solid rgb(219, 40, 17);
	cursor: pointer;
}

#mobile-menu-wrapper ul li a {
	color: rgb(71, 71, 71);
}

#mobile-submenu-wrapper {
	position: absolute;
	top:70px;
	height:100%;
	padding: 0 20px;
	list-style: none;
	width:100%;
}

.textsize-dropdown-option {
	padding:7px;
	border-radius: 50px;
	background-color:#ffffff;
	cursor:pointer;
}

.textsize-dropdown-option:hover {
	background-color:#df8282
}

#lightbulb{
		width: 175px;
		height: 175px;
	}
#desktop-header{
		display:block;
}

#subscriptionDone{

	position: fixed;
	width: 100vw;
	height: 100vh;
	background:rgba(50,50,50,0.4);
	top:0px;
	left:0px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999999;
	display:none;
}
#subscriptionDoneContainer{
	width: 90%;
	max-width: 520px;
	margin:0 auto;
	padding:62px;
	padding-left:52px;
	padding-right:52px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background:rgb(255,240,240);
	border: solid 1px rgb(220,220,220);
	border-radius: 8px;
	position: relative;
}

#subscriptionDoneContainerClose{
	position: absolute;
	top:8px;
	right:12px;
	color: #444444;
	cursor: pointer;
}

#subscriptionDoneContainerTitle{
	font-size:130%;
	margin-bottom:18px;
	color:#222222;
}

#subscriptionDoneContainerContent{
	font-size:95%;
	color:#333333;
}
@media screen and (max-width: 1500px) {
	.banner_content_wrapper{
		width: 60%;
	}
	#lightbulb{
		width: 150px;
		height: 150px;
		top:-30px;
		left:0px;
	}

}
@media screen and (max-width: 1200px) {
	#lightbulb{
		width: 100px;
		height: 100px;
		top:-25px;
		left:0px;
	}
	#aboutusbanner{
		padding-bottom:40%;
	}
}
@media screen and (max-width: 1000px) {
	#aboutusbanner{
		padding-bottom:40%;
	}
}
@media screen and (max-width: 868px) {
	#desktop-header{
		display:none;
	}
/* mobile version  */
	#mobile-header {
		font-size:14px;
		display:block;
	}
	#lightbulb{
		width: 75px;
		height: 75px;
	}
	.mobile-banner-content{
		display: block;
		padding-left:18px;
		padding-right:18px;
		height: 180px;
	}
	.mobile-banner-content .title{
		text-align: center;
		font-size:22px;
		width: 90%;
		margin:0 auto;
		margin-bottom:18px;

	}
	.mobile-banner-content .content{
		text-align: center;
		font-size:15px;
		color:rgba(250,250,250,0.9);
		line-height: 22px;

	}
	.sliderbanner{
		width: 100%;
		padding-bottom:75%;
		background-size:cover;
		background-position: right center;
	}
	.banner_content_wrapper{
	    display:none;
	}

	#desktop-footer-wrapper{
		flex-direction: column;
		justify-content:center;
		align-items:center;
	}

	#desktop-footer-wrapper div{
		font-size:0.8em !important;
		color:white;
		padding-left:0px;
		padding-right:0px;
		margin-top:12px;
		border-right:none;
	}
	#landing-note-message{
		display:none;
	}
	#searchbutton{
		width: 320px;
		font-size:14px!important;
	}
	#what-news{
		padding:24px;
	}
	#maintppl{
		width: 200px;
		height: 200px;
		background-image:url("/assets/images/maint.png");
		bottom:0px;
		z-index:0;
		position: absolute;
		right:0px;
	}
	.main-news{
		flex-direction: column;
	}
	.main-news .news-image-wrapper{
		width: 100%;
		height: 250px;
		border-radius: 12px 12px 0px 0px;
		background-size: contain;
		background-color:#eeeeee;
		background-position: center center;
	}
	.main-news .news-detail-wrapper{
		width: 100%;
		padding:24px 12px 24px 12px;
		background:white;
		border-radius: 0px 0px 12px 12px;
		/* height: 250px; */
		/* overflow: scroll; */
	}
	.other-news-wrapper{
		flex-direction: column;

	}
	.other-news-wrapper .other-news{
		width: 100%;
		margin-bottom:24px;

	}
	#contactusbanner{
		background-image:url("/assets/images/banner/banner_aboutus2.jpg");
		background-size: cover;
		padding-bottom:75%;
		background-position: top center;
		position: relative;

	}
	#aboutusbanner{
		background-image:url("/assets/images/banner/banner_aboutus2.jpg");
		background-size: cover;
		padding-bottom:45%;
		background-position: top center;
		position: relative;
	}
	#aboutus .banner{
		display:none;
	}
	#aboutusbanner .overlay .container .content{
		font-size:14px !important;
		line-height: 26px;
	}
	#aboutus .content{
		font-size:1.125em !important;
		padding-left:18px;
		padding-right:18px;
		line-height: 28px;
		color: #223332;
	}
	#booklets .title {
	    padding: 24px 20px 0px 20px;
	    margin-bottom: 24px;
	    font-size: 1.2em !important;
	    line-height: 32px;
	    width: 95%;
	}
	#booklets .content {
	    line-height: 24px;
	    font-size: 0.92em !important;
	    width: 95%;
	}
}

#subscriptionHeader {
	width: 100%;
}

#subscriptionHeader .subscriptionHeader_header:nth-child(1){
	margin-top: 24px;
	margin-bottom: 10px;
	font-weight: bold;
}

#subscriptionHeader .subscriptionHeader_p:last-child{
	margin-bottom: 50px;
	width: 100%;
}

#subscriptionform .checkbox{
	margin-right: 5px;
}

#subscriptionform_form{
	margin-bottom: 50px;
}

#subscriptionform_form > div{
	display: flex;
	flex: 1;
	margin-bottom: 30px;
}

#subscriptionform_form > div > div{
	display: flex;
	flex-grow: 1;
}

#subscriptionform_form > div:nth-child(1) > div:nth-child(1){
	padding-right: 10%;
}

#subscriptionform_form input{
	border: none;
	border-bottom: 3px solid #C1C1C1;
	color: #222222;
	width: 100%;
	font-size:14px;
	height: 32px;
}

#subscriptionform_form input:focus{
	outline: none;
}

#subscriptionform_form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #222222;
  opacity: 1; /* Firefox */
}

#subscriptionform .subscriptionform_form_header{
	font-weight: bold;
	margin-bottom: 20px;
}

#subscriptionform_form_cat{
	margin-bottom: 50px;
}

.checkbox_container{
	cursor: pointer;
}

#subscriptionform_form_cat_checkboxesZone{
	display: flex;
	justify-content: space-between;
}

#subscriptionform_form_cat_checkboxesZone > div{
	display: flex;
	margin-bottom: 20px;
}

#subscriptionform_form_booklet{
	flex: 1;
}

#subscriptionform_form_booklet_checkboxesZone{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#subscriptionform_form_booklet_checkboxesZone > div{
	display: flex;
	flex: 1 1 50%;
	margin-bottom: 20px;
}

#subscriptionform_form_booklet_checkboxesZone .checkbox{
	flex-shrink: 0
}

#subscription_fail_msg {
	color: red;
	display: none;
	font-size: 14px;
}

#subscribeBtn {
	display: flex;
	background: #D51A27;
	color: white;
	width: 150px;
	height: 40px;
	align-self: flex-end;
	border-radius: 20px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-top: 20px;
}

#subscribeBtn > div{
	font-size: 20px;
	text-align: center;
}

#toc_paginator {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}

#toc_page_prev,
#toc_page_next {
	margin-top: 10px;
	padding: 6px 25px;
	background-color: transparent;
	border: 1px solid rgb(111,172,235);
	color: rgb(3,111,245);
	border-radius: 5px;
	font-size: .9rem;
	cursor: pointer;
}

#section_slider {
	margin-right: 20px;
	position: fixed;
	top: 50%;
	right: 0;
	list-style: none outside none;
	z-index: 99;
}

#section_slider > li {
	padding: 5px 0;
}

#section_slider > li > a {
	background-color: #222222;
	border-radius: 30px;
	display: inline-block;
	height: 8px;
	overflow: hidden;
	text-indent: -999em;
	width: 8px;
	position: relative;
	z-index: 99;
	-webkit-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
}

#section_slider > li > a.active{
	background-color: aqua;
}



.error_msg_line{
	margin-bottom: 5px;
}
/* @media screen and (max-width:868px){
	#desktop-navigation-menu{
		display:none;
	}

} */
@media screen and (max-width: 550px) {
	#aboutusbanner{
		padding-bottom:65%;
	}

}
@media screen and (max-width: 414px) {

#aboutusbanner{
	padding-bottom:75%;
}
.bookletlist-wrapper>div{
	width: 100%;
}
	.bookletlist-wrapper {
		flex-direction:column;
		align-items:center;
	}

	.bookletlist-container{
		margin-bottom: 70px;
		width:60%;
	}

	#subscriptionform_form_cat_checkboxesZone{
		flex-direction: column;
	}

	#subscriptionform_form_booklet_checkboxesZone{
		flex-direction: column;
	}

}

@media screen and (max-width:1056px){
	.contactus-container{
		flex-direction: column;
	}
}
