@layer base {
  main a, #non-wcag-wrap a {
    /* text-decoration: underline; */
    border-bottom: 1px solid currentColor;
    transition: border-color 0.25s ease 0s;
  }
  
  main a:hover, main a:focus, #non-wcag-wrap a:hover, #non-wcag-wrap a:focus {
    text-decoration: none;
    border-color: transparent;
  }
   
  #content ul {
    margin: 0 0 30px;
    counter-reset: revert;
    list-style: none;
  }
  #content ul{
    list-style-type: disc;
  }
  #content ul>li {  
    margin-left: 20px;
    padding-left: 4px;
    margin-bottom: 10px;
    position: relative;
  }  
  #content ul>li>ul{
    list-style-type: square;
  }
  #content ul>li>ul>li>ul{
    list-style-type: circle;
  }
  #content ul>li::marker{
    color: var(--red-normal);
  }
  #content ul>li>ul>li::marker{
    color: var(--primary-blue);
  }
  #content ul>li>ul>li>ul>li::marker{
    color: var(--primary-green);
  }
  main a.lgPopup{
	cursor: pointer;
  }
}

#content i, #content em{
	font-style: italic;
}
#content u{
	text-decoration: underline;
}

main a.isImageLink{
	border: 0;
}
#content a.link,
.popupWrap a.link,
#non-wcag-wrap a.link {
  word-break: break-all!important;
}
.home main a{
  border: initial;
}
#content {
  line-height: 1.556em;
  position: relative;
  background-color: var(--white);
  color: #000;
}
h1, #pageTitle {
  position: relative;
  margin-bottom: 35px;
  font-size: calc((var(--h1-font-size) / var(--text-base-size-for-calc)) * 1em);
  color: var(--red-normal);
  line-height: 1.05;
  font-weight: 700;
}
#content h2,
#content h3,
#content h4,
#content h5 {
  margin: 0 0 20px 0;
}

#content h2 {
  padding: 0;
  color: var(--primary-blue);
  font-size: calc((var(--h2-font-size) / var(--text-base-size-for-calc)) * 1em);
  line-height: 130%;
  font-weight: 600;
  margin-top: 40px;
}
#content h2.indexTitle{
  color: var(--primary-blue);
  font-size: calc((var(--home-section-title-font-size) / var(--text-base-size-for-calc)) * 1em);
  font-weight: 300;
  margin-bottom: 60px;
  margin-top: 0;
}
#content #newsWrap h2.indexTitle, #content #btmWrap h2.indexTitle{
  margin-bottom: 30px;
}
#content h2.indexTitle.white{
  color: var(--white);
}
#content h2 span{
	font-weight: 400;
}

#content h3{
  color: var(--primary-green);
  font-size: calc((var(--h3-font-size) / var(--text-base-size-for-calc)) * 1em);
  line-height: 120%;
  font-weight: 600;
  margin: 0 0 20px 0;
}

#content h4 {
  color: var(--red-dark);
  font-size: calc((var(--h4-font-size) / var(--text-base-size-for-calc)) * 1em);
  line-height: 120%;
  font-weight: 600;
}

#content h5 {
  /* color: var(--purple); */
  line-height: 120%;
  font-weight: 600;
}

#content a.iconLink+span+a.iconOnly,
#content a.iconLink+span+a.iconOnly+a.iconOnly,
#content a.iconLink+span+a.iconOnly+a.iconOnly+a.iconOnly {
  transform: translateY(2px);
}

#content a.iconOnly {
  display: inline-block;
  width: 32px;
  height: 30px;
  margin-right: 10px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border: 0;
  transition: opacity 0.25s ease 0s;
}

#content a.iconOnly:hover,
#content a.iconOnly:focus,
#content a.iconLink:hover+span img,
#content a.iconLink:focus+span img {
  opacity: 0.75;
}

#content a.pdf.iconOnly {
  background-image: url(../images/icon-pdf.png);
}

#content a.xls.iconOnly {
  background-image: url(../images/icon-xls.png);
}

#content a.doc.iconOnly {
  background-image: url(../images/icon-doc.png);
}

#content a.ppt.iconOnly {
  background-image: url(../images/icon-ppt.png);
}

#content a.csv.iconOnly {
  background-image: url(../images/icon-csv.png);
}

#content img {
  max-width: 100%;
}

#content p {
  margin-bottom: 30px;
}

#content p + ul, #content p + ol{
	margin-top: -20px;
}

#content hr, #non-wcag-wrap hr {
  line-height: 0;
  font-size: 0;
  margin: 55px 0;
  height: 4px;
  width: 100%;
  border: none;
  border-top: 1px dotted rgba(0, 0, 0, 0.45);
}

#content ul.noBullet {
  margin-left: 0;
  list-style-type: none;
}

#content ul.noBullet li {
  padding-left: 0;
  margin-left: 0;
}

#content ul.square{
  list-style-type: square;
}

#content ul.circle {
  list-style-type: circle;
}

#content ul li ul,
#content ol li ul {
  margin: 10px 0;
}

#content ol {
  list-style: decimal;
  counter-reset: revert;
  margin: 0 0 30px 20px;
}

#content ol.lowerAlpha{
  list-style-type: lower-alpha;
}

#content ol.upperAlpha {
  list-style-type: upper-alpha;
}

#content ol.lowerRoman {
  list-style-type: lower-roman;
}

#content ol.upperRoman {
  list-style-type: upper-roman;
}

#content ol.lowerGreek,
#content ol[type="α"] {
  list-style-type: lower-greek;
}

#content ol p {
  margin-bottom: 15px;
}

#content ol > li {
  padding-left: 4px;
  margin-bottom: 10px;
}

#content ol li ol,
#content ul li ol {
  margin: 10px 0 10px 24px;
}

#content ol > li > ol > li, #content ol > li > ol > li > ol > li , #content ul > li > ol > li{
  padding-left: 4px;
}


/****** form *********/
#content input, #content textarea {
    all: revert;
	accent-color: var(--primary-blue);
	box-sizing: border-box;
}
#content table.form-table{
	width: 100%!important;
}
#content table.form-table label, #content input[type=checkbox] + label, #content input[type=radio] + label{
	cursor: pointer;
}
#content table.form-table th{
	color: #000!important;
	vertical-align: middle!important;
}
#content textarea{
	width: 100%;
    resize: none;
    min-height: 140px;
    padding: 10px;
    line-height: 140%;
	border: 1px solid #8d8d8d;
}
#content input[type=text]{
	padding: 2px;
	line-height: 30px;
	border: 1px solid #8d8d8d;
}

/******* form end *******/

#content div.rwd-table-wrap{
	margin-bottom: 30px;
	position: relative;
	clear: both;
}
#content div.rwd-table-wrap > div{
	position: relative;
	width: 100%;
	overflow: auto;
}
#content div.rwd-table-wrap:before,
#content div.rwd-table-wrap:after{
	content: '';
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, rgba(238,238,236,0) 0%, rgba(238,238,236,.4) 50%, rgba(238,238,236,.8) 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.25s ease 0s;
}
#content div.rwd-table-wrap:before{
	left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#content div.rwd-table-wrap.scroll-left:before,
#content div.rwd-table-wrap.scroll-right:after{
	opacity: 1;
}
#content div.rwd-table-wrap:after{
	right: 0;
}

#content div.rwd-table-wrap > div::-webkit-scrollbar {
    width: 15px;
}
 
#content div.rwd-table-wrap > div::-webkit-scrollbar-track {
    background-color: var(--primary-light);
    border-radius: 0;
}
 
#content div.rwd-table-wrap > div::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 0;
}
#content div.rwd-table-wrap > div>table{
	width: 100%;
	min-width: 640px;
	margin-bottom: 0;
}

#content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 30px;
  padding: 0;
}

#content table .empty{
  text-indent: -9999px;
  font-size: 0;
}

#content table thead th {
  vertical-align: top;
  text-align: left;
  font-size: calc((var(--th-font-size) / var(--text-base-size-for-calc)) * 1em);
  font-weight: 600;
}

#content table.vacancy tbody tr th{
	width: 250px;
}

#content table thead tr > th:first-child {
  padding-left: 20px;
}

#content table tbody > tr > th,
#content table tbody > tr > td {
}

#content table tbody th,
#content table tbody td {
  border-bottom: 1px solid rgba(3, 86, 62, 0.1);
}

#content table.vertical-table tbody th{
  border-color: var(--primary-green-light)
}

#content table tbody tr:first-child th,
#content table tbody tr:first-child td {
  border-top: 1px solid var(--grey-light2);
}

#content table tbody tr:last-child th,
#content table tbody tr:last-child td {
  border-bottom: none;
}

#content table tbody th{
  padding: 15px 20px;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  background-color: var(--primary-green);
  vertical-align: top;
}

#content table tbody td {
  padding: 15px 20px;
  vertical-align: top;
}

/* #content table tr > th:first-child,
#content table tr > td:first-child {
  padding-left: 20px;
  color: #000;
} */

#content table.border-table th, #content table.border-table td{
  background-color: transparent!important;
  border: 1px solid var(--grey)!important;
  color: #000;
}

#content table.no-style {
  border: none;
  width: auto;
}
#content table.no-style thead tr th,
#content table.no-style tbody tr td,
#content table.no-style tbody tr th,
#non-wcag-wrap table.no-style tbody tr td,
#non-wcag-wrap table.no-style tbody tr th {
  border: none!important;
  background: transparent!important;
  padding: 0 5px 20px 0;
  vertical-align: top;
  line-height: 1.5;
}

#content table.no-style tr > td:first-child {
  padding-left: inherit;
}

#content table.no-style th {
  font-weight: 600;
  color: var(--primary-blue);
}

/*style-table*/
#content table {
  border-bottom: 1px solid var(--primary-green-light);
  border-collapse: collapse;
}

#content table thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

#content table thead tr:first-child th:last-child{
  border-top-right-radius: 10px;
}

#content table thead th {
  color: var(--white);
  background: var(--primary-green);
  padding: 15px 20px;
  vertical-align: top;
  border-right: 1px solid var(--grey-light2);
  border-bottom: 1px solid var(--grey-light2);
}

#content table tbody tr td.subhead {
  background-color: var(--primary-green-light)!important;
  /* color: var(--primary-dark); */
}

#content table tbody tr:nth-child(2n) td{
	background-color: var(--grey-light2);
}
#content table tbody tr:nth-child(2n+1) td{
	background-color: transparent;
}

#content .common-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  line-height: 30px;
  color: var(--white);
  font-weight: 700;
  background-color: var(--grey-normal);
  transition: background-color .3s ease 0s;
  border: 0;
}

#content .common-btn:hover, #content .common-btn:focus {
  background-color: var(--red-normal);
  color: var(--white);
}
#content .common-btn.btn-prev{
  padding-left: 35px;
}
#content .common-btn.btn-prev:before{
  content: '';
  display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 8px 7px 0;
    border-color: transparent var(--white) transparent transparent;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
#content .common-btn.btn-next{
  padding-right: 35px;
}
#content .common-btn.btn-next:before{
  content: '';
  display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 8px;
    border-color: transparent transparent transparent var(--white);
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
#content .common-btn.disabled{
  opacity: 0.4!important;
  pointer-events: none;
}

#content .common-link{
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  line-height: 30px;
  color: var(--white);
  font-weight: 700;
  background-color: var(--primary-blue);
  transition: background-color .3s ease 0s;
  border: 0;
}

#content .common-link:hover, #content .common-link:focus {
  background-color: var(--red-normal);
  /* color: var(--secondary-blue); */
}


#content table + p.remarks, #content div.rwd-table-wrap + p.remarks {
  margin-top: -15px;
}

#content .remarks {
  font-size: 0.833em;
  line-height: 1.622rem;
  color: #6e6e6e;
}

.pressItem .f-left-img{
	margin-bottom: 10px;
}
.f-left-img {
  float: left;
  overflow: hidden;
  margin: 0 30px 30px 0;
  line-height: 0;
  max-width: 290px;
  border-radius: 20px;
  text-align: center;
}

.f-right-img {
  float: right;
  overflow: hidden;
  margin: 0 0 30px 30px;
  line-height: 0;
  max-width: 290px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.f-right-img.w-wider{
	max-width: 400px;
}

.f-right-img .caption, .f-left-img .caption{
  line-height: initial;
  padding: 0 10px;
}

.f-left-img img,
.f-right-img img { 
  width: 100%;
}

/* Create a custom checkbox */
.checkBoxWrap .checkBox {
  position: relative;
  padding-right: 20px;
  display: inline-block;
  min-width: 120px;
}

.checkBoxWrap .checkBox label {
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}

.checkBoxWrap.check-box .checkBox label:focus {
  color: #1dbe69;
}

.checkBoxWrap.check-box .checkBox {
  margin-bottom: 10px;
}

#filtersPanel .checkBoxWrap.check-box .checkBox {
  display: block;
}

.checkBoxWrap .checkBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkBoxWrap.check-radio .checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  transition: all 0.25s ease 0s;
}

.checkboxContainer.disabled_control .checkmark,
.checkBoxWrap.disabled_control .checkmark {
  opacity: 0.3;
}

.checkBoxWrap.check-box .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
}

/* On mouse-over, add a grey background color */
.checkBoxWrap:hover input ~ .checkmark {
  /* background-color: #ccc; */
}

.checkBoxWrap label {
  transition: color 0.25s ease 0s;
}

.checkBoxWrap label:hover {
  color: #148347;
}

/* When the checkbox is checked, add a blue background */
.checkBoxWrap input:checked ~ .checkmark {
  /* background-color: #2196F3; */
  border-color: #058752;
}

.checkBoxWrap input:checked ~ .text {
  color: #058752;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkBoxWrap:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkBoxWrap input:checked ~ .checkmark:after {
  opacity: 1;
}

/* Style the checkmark/indicator */
.checkBoxWrap.check-radio .checkmark:after {
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1dbe69;
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.25s ease 0s;
}

.checkBoxWrap.check-box .checkmark:after {
  content: "";
  position: absolute;
  height: 6px;
  width: 10px;
  top: 4px;
  left: 3px;
  border-left: 2px solid #058752;
  border-bottom: 2px solid #058752;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.25s ease 0s;
}

/* custom-select css, The container must be positioned relative: */
.custom-select {
  position: relative;
  /* font-family: Arial;*/
  min-width: 100px;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

.select-selected {
  background-color: transparent;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--primary-blue) transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--primary-blue) transparent;
  top: 12px;
}

/* style the items (options), including the selected item: */
.select-selected {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 25px 6px 20px;
  cursor: pointer;
  background-color: var(--grey-light2);
  border-radius: 10px;
}

.select-selected:hover,
.select-selected:focus {
}

.select-items div {
  cursor: pointer;
}

.select-items div {
  padding: 8px;
  text-align: center;
  background: transparent;
  transition: background 0.3s ease 0s;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.select-items div:first-child {
  border-top: none;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: var(--grey-light2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 199;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 10px;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/*custom select ends*/
.filter-wrap{
  margin-bottom: 20px;
}
.filter-wrap .select-wrap .filter-type{
  line-height: 46px;
  padding-right: 10px;
  font-weight: 700;
}
.filter-wrap .custom-select{ min-width: 140px; }
.filter-wrap .select-wrap{
  display:flex;
}
.filter-wrap .btn-filter{
  display:block;
  text-align:center;
  color:var(--white);
  font-weight: 700;
  text-decoration: none;
  background-color: var(--primary-blue);
  border-radius:10px;
  position:relative;
  width:42px;
  height:42px;
  line-height:42px;
  margin-left:10px;
  border: 0;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
.filter-wrap .btn-filter:hover,
.filter-wrap .btn-filter:focus,
.filter-wrap .btn-filter:hover:after,
.filter-wrap .btn-filter:focus:after {
  background-color: var(--red-normal);
  color: var(--white);
}

#content>.btn-wrap {
  margin: 30px 0;
}

#content>.btn-wrap>a:not(only-of-type) {
  margin-right: 20px;
}

#content>.btn-wrap>a:last-of-type {
  margin-right: 0;
}

.hr {
  margin: 30px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

main a, #non-wcag-wrap a {
  color: var(--primary-blue);
}

table th.date {
  min-width: 112px;
  width: 200px;
}

#content .footNotes ul,
#content .footNotes ol,
#content .footNotes table,
#non-wcag-wrap .footNotes table{
  font-size: 0.833em;
  line-height: 1.222rem;
}

#content .footNotes table{
  border: none;
  width: inherit;
}
#content .footNotes table th, #content .footNotes table td{
  border: none;
  padding: 5px;
	color:inherit;
	background:none;
}

/*pagination*/
.pagination {
  margin: 30px 0;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
}
.pagination .mobilePagin, .pagination .page-filter-wrap-m{
  display: none;
}
.pagination .custom-select{
  min-width: 80px;
}
.pageNav {
  font-weight: 300;
  /*padding:0 110px;*/
}

#page-filter.disabled {
  opacity: .3;
}

.pageNav a,
.page-filter-wrap .btn-filter {
  color: #333333;
  display: inline-block;
  margin: 0 2px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 1em;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
}

.pageNav>span {
  width: 40px;
  height: 40px;
  margin: 0 2px;
 /* background-color: #f2f2f2;*/
  color: #333;
  border-radius: 8px;
  padding-top: 10px;
  display: inline-block;
  vertical-align: top;
}

.pageNav a span,
.page-filter-wrap .btn-filter span.go {
  background-color: #f2f2f2;
  color: #333;
  display: block;
  transition: background-color .3s ease 0s, color .3s ease 0s;
  width: 100%;
  height: 100%;
  line-height: 40px;
  border-radius: 8px;
  font-size: 1em;
}

.pageNav a.arrow span {
  background: none;
}

.page-filter-wrap {
  margin-left: 50px;
}

.page-filter-wrap .btn-filter span.go {
  background-color: #666;
  color: #fff;
  transition: background-color .3s ease 0s, color .3s ease 0s;
}

.page-filter-wrap .btn-filter:hover span,
.page-filter-wrap .btn-filter:focus span {
  color: var(--primary-blue);
}

.pageNav a:not(.arrow):hover span,
.pageNav a:not(.arrow):focus span,
.pageNav a:not(.arrow).selected span {
  color: var(--white);
  font-weight: 700;
  background-color: var(--red-normal);
}

.pageNav .arrow {
  position: relative;
  text-indent: -9999px;
  color: #000;
  transition: opacity .3s ease 0s;
}

.pageNav .arrow span {
  color: #000;
}

.pageNav .first,
.pageNav .last {
  margin: 0 0 10px 0;
}

.pageNav .arrow:not(.disabled):hover,
.pageNav .arrow:not(.disabled):focus {}

.pageNav .arrow:before,
.pageNav .arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  transition: border-color .3s ease 0s;
  -webkit-transition: border-color .3s ease 0s;
  border: 2px solid #0f3c96;
}

.pageNav .first:after,
.pageNav .last:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  transition: border-color .3s ease 0s;
  -webkit-transition: border-color .3s ease 0s;
  border: 2px solid #136d8e;
}

.pageNav .prev_page:before,
.pageNav .first:before,
.pageNav .first:after {
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  border-left-width: 0;
  border-top-width: 0;
  margin-left: -4px;
  transition: margin-left 0.3s ease 0s;
}

.pageNav .next_page:before,
.pageNav .last:before,
.pageNav .last:after {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border-left-width: 0;
  border-bottom-width: 0;
  margin-left: -12px;
  transition: margin-left 0.3s ease 0s;
  /*margin-left: -8px;*/
}

.pageNav .first:before {
  margin-left: -5px;
}

.pageNav .last:before {
  margin-left: -12px;
}

.pageNav .first:after {
  margin-left: 0;
}

.pageNav .last:after {
  margin-left: -7px
}

.pageNav a.prev_page.disabled,
.pageNav a.next_page.disabled,
.pageNav a.first.disabled,
.pageNav a.last.disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

.pageNav .arrow:not(.disabled):hover:before,
.pageNav .arrow:not(.disabled):focus:before {
    border-color: var(--primary-blue);
}

.pageNav .arrow.next_page:not(.disabled):hover:before,
.pageNav .arrow.next_page:not(.disabled):focus:before {
    margin-left: -9px;
}

.pageNav .arrow.prev_page:not(.disabled):hover:before,
.pageNav .arrow.prev_page:not(.disabled):focus:before {
    margin-left: -7px;
}

.pageNav .arrow:not(.disabled):hover:after,
.pageNav .arrow:not(.disabled):focus:after {
  border-color: var(--primary-blue);
}

.page-filter-wrap {
  /*position:absolute; top:30px; right:0; */
  display: flex;
  border: 1px solid var(--grey-normal);
  border-radius: 10px;
  padding: 0 0 0 5px;
  overflow: hidden;
}

.page-filter-wrap label {
  display: inline-block;
  /*vertical-align: top;*/
  /* line-height: 40px; */
}

.page-filter-wrap input#pageGoInput {
  width: 60px;
  border: none;
  height: 100%;
  padding: 0 10px;
}

.page-filter-wrap .btn-filter {
  margin: 0;
  width: 24px;
  position: relative;
  text-indent: -9999px;
  background: transparent;
  transition: background .3s ease 0s;
}
.page-filter-wrap .btn-filter:hover, .page-filter-wrap .btn-filter:focus{
  background: var(--red-normal);
}
.page-filter-wrap .btn-filter:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  display: block;
  border: 7px transparent solid;
  border-left-color: var(--primary-blue);
  border-right-width: 0;
  transition: border-color 0.3s ease 0s;
}
.page-filter-wrap .btn-filter:hover:before,
.page-filter-wrap .btn-filter:focus:before{
  border-left-color: var(--white);
}

.page-filter-wrap-m .btn-filter{
  display:block;
  text-align:center;
  color:var(--white);
  font-weight: 700;
  text-decoration:none;
  background-color: var(--primary-blue);
  border-radius:10px;
  position:relative;
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:10px;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  border: 0;
}
.page-filter-wrap-m .btn-filter:hover,
.page-filter-wrap-m .btn-filter:focus,
.page-filter-wrap-m .btn-filter:hover:after,
.page-filter-wrap-m .btn-filter:focus:after {
  background-color: var(--red-normal);
  /* color: #fff; */
}
/*page nav ends*/

.backBtnWrap {
  border-top: 1px solid #dbdbdb;
  padding: 15px 0;
  text-decoration: none;
}

#content .btn-back {
  display: inline-block;
  line-height: 24px;
  position: relative;
  padding-left: 16px;
  text-decoration: none;
  color: var(--green-type3);
  font-weight: 600;
  border: 0;
}

.btn-back:before,
.btn-back:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary-green);
  border-top-width: 0;
  border-left-width: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  -webkit-transform: translateY(-50%) rotate(135deg);
  transition: border-color 0.3s ease 0s, left 0.3s ease 0s;
  -webkit-transition: border-color 0.3s ease 0s, left 0.3s ease 0s;
}

.btn-back:before {
  left: 2px;
}

#content .btn-back:hover:before, #content .btn-back:focus:before {
  left: 0;
}

.btn-back:after {
  left: 7px;
}

#content .btn-back:hover:after, #content .btn-back:focus:after {
  left: 5px;
}

#content .btn-back:hover, #content .btn-back:focus {
  text-decoration: underline;
  color: var(--primary-blue);
}

#content .btn-back:hover:before,
#content .btn-back:hover:after,
#content .btn-back:focus:before,
#content .btn-back:focus:after {
  border-color: var(--primary-blue);
}

/*accordion*/
.accordCtrls{
	text-align:right;
	margin-bottom:30px;
}
.accordCtrls > a{
	display:inline-block;
	text-decoration:none;
	position:relative;	
	font-weight:700;
	padding:5px 45px 5px 20px;
	border-radius: var(--hotline-radius);
	background-color: transparent;
	color: var(--grey-normal);
  border: 1px solid #ccc;
	transition: background-color .3s ease 0s, color .3s ease 0s, border-color 0.3s ease 0s;
  margin-left: 6px;
}

.accordCtrls > a:hover, .accordCtrls > a:focus{
	background-color: var(--primary-blue);
	color: var(--white);
  border-color: var(--primary-blue);
}
.accordCtrls > a > span{
	position:absolute;
	right:15px;
	top:50%;
	transform:translateY(-50%);
	display:block;
	width:20px;
	height:20px;
	background-color:var(--primary-green);
	border-radius:50%;
	transition: background-color .3s ease 0s;
}
.accordCtrls > a:hover > span, .accordCtrls > a:focus > span{
  background-color: var(--white);
}
.accordCtrls > a > span:before{
	content:'';
	position:absolute;
	width:10px;
	height:2px;
	background-color: var(--white);	
	left:50%;
	top:50%;
	margin-left:-5px;
	margin-top:-1px;
	transition: background-color .3s ease 0s;
}
.accordCtrls > a.expandBtn > span:after{
	content:'';
	position:absolute;
	width:2px;
	height:10px;
	background-color: var(--white);
	left:50%;
	top:50%;
	margin-left:-1px;
	margin-top:-5px;
	transition: background-color .3s ease 0s;
}
.accordCtrls > a:hover > span:before, .accordCtrls > a:hover > span:after, .accordCtrls > a:focus > span:before, .accordCtrls > a:focus > span:after{
	background-color: var(--primary-blue);
}
.accordion-wrap {
  margin: 0 0 40px;
  overflow: hidden;
}

.accordion-item {
  /*margin-bottom:10px; */
  /*border-bottom:1px solid rgba(217,29,99,.1);*/
  position: relative;
  margin-bottom: 5px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #e8eceb;
}

/*.accordion-item:first-child{border-top:1px solid rgba(217,29,99,.1);}*/
.accordion-item .accordion-title {
  position: relative;
  background: var(--primary-light);
  font-weight: 600;
  transition: background-color 0.3s ease 0s;
  -webkit-transition: background-color 0.3s ease 0s;
}
.accordion-wrap.one-item .accordion-title{
	display: none;
}
.accordion-wrap.one-item .accordion-item{
	border: 0;
	border-radius: 0;
}
.accordion-wrap.one-item .accordion-item .accordion-content .accordion-main{
	padding: 0;
}

.accordion-item .accordion-title {
  padding: 14px 60px 12px 20px;
  min-height: 50px;
  line-height: 1.2em;
  display: flex;
  color: var(--primary-dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  border: none;
  text-align: left;
}

.accordion-item .accordion-title:hover,
.accordion-item .accordion-title:focus,
.accordion-item.active .accordion-title {
  color: var(--white);
  background: var(--primary-blue);
}

.accordion-item .accordion-title:not(.btnOnly):before,
.accordion-item .accordion-title:not(.btnOnly):after {
  content: "";
  height: 17px;
  width: 3px;
  display: block;
  background-color: var(--primary-green);
  position: absolute;
  top: 16px;
  right: 20px;
  transform-origin: center center;
  transition: transform 0.3s ease 0s background-color 0.3s ease 0s;
}
.accordion-item .accordion-title:not(.btnOnly):hover:before,
.accordion-item .accordion-title:not(.btnOnly):hover:after,
.accordion-item .accordion-title:not(.btnOnly):focus:before,
.accordion-item .accordion-title:not(.btnOnly):focus:after,
.accordion-item.active .accordion-title:not(.btnOnly):before,
.accordion-item.active .accordion-title:not(.btnOnly):after{
  background-color: var(--white);
}

.accordion-item .accordion-title:not(.btnOnly):after {
  transform: rotate(90deg);
}

.accordion-item.active .accordion-title:not(.btnOnly):before {
  transform: rotate(90deg);
  -webkit-transform: rotate(-90deg);
}

.accordion-item .accordion-title span.num{
  width: 40px;
  display: inline-block;
  flex: 0 0 40px;
}

.accordion-item .accordion-content {
  overflow  : hidden;
}

.accordion-item:not(.active) .accordion-content {
   /*display: none;*/
}

.accordion-item .accordion-content[aria-hidden=true] a[href],
.accordion-item .accordion-content[aria-hidden=true] area[href], 
.accordion-item .accordion-content[aria-hidden=true] input:not([disabled]), 
.accordion-item .accordion-content[aria-hidden=true] select:not([disabled]), 
.accordion-item .accordion-content[aria-hidden=true] textarea:not([disabled]), 
.accordion-item .accordion-content[aria-hidden=true] button:not([disabled]), 
.accordion-item .accordion-content[aria-hidden=true] [tabindex]:not([disabled]), 
.accordion-item .accordion-content[aria-hidden=true] [contenteditable=true]:not([disabled]){
    visibility: hidden;
}

.accordion-item .accordion-content .accordion-main {
  padding: 20px 20px 20px 20px;
}

.accordionWrap.faq .accordion-content .accordion-main{
  padding: 20px 20px 20px 60px;
}

.accordion-item .accordion-main > ul:last-child,
.accordion-item .accordion-main > ol:last-child,
.accordion-item .accordion-main > p:last-child,
.accordion-item .accordion-main > *:last-child {
  margin-bottom: 0!important;
}
/*accordion ends*/

/*tab menu starts*/
.tab-container {
  position: relative;
  z-index: 100;
}

.tab-container .tab-menu ul li:before {
  display: none;
}

.tab-container .tab-menu ul li.mobileSelected a {
  border-radius: 20px;
  text-align: left;
  color: var(--primary-blue);
  font-weight: 700;
  padding-right: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  line-height: 24px;
  padding: 10px 30px 10px 20px;
}

.tab-container .tab-menu ul li.mobileSelected a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  border-top: 6px solid var(--primary-blue);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  z-index: 50;
  margin-top: -3px;
  transition: transform 0.3s ease 0s;
}

.tab-container .tab-menu ul li.mobileSelected.active a:after {
  transform: rotate(180deg);
}

.tab-container .tab-menu {
  margin-bottom: 30px;
}

.tab-container .tab-menu ul {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 100;
  list-style-type: none;
}

.tab-container .tab-menu ul li {
  min-height: 50px;
  padding: 0;
  margin: 0;
}

.tab-container .tab-menu ul li:before {
  display: none;
}

.tab-container .tab-menu ul li a {
  text-align: center;
  display: block;
  color: #333;
  text-decoration: none;
  padding: 12px 20px;
  line-height: 30px;
  position: relative;
  height: 100%;
  transition: background-color 0.3s ease 0s;
}

.tab-container .tab-menu ul li.selected a {
  font-weight: 700;
  color: var(--primary-blue);
}

.tab-container .tab-menu ul li:not(.mobileSelected) a:hover, .tab-container .tab-menu ul li:not(.mobileSelected) a:focus{
  color: var(--primary-blue);
  background-color: #eee;
}

.tab-container .tab-content {
  padding-bottom: 30px;
}

.tab-container .tab-content .tabpanel{
  display: none;
	opacity: 0;
	transition: opacity 0.25s ease 0s;
}

.tab-container .tab-content .tabpanel.shownOp {
	opacity: 1;
}

#content .tab-container .tab-content .tabpanel p:last-of-type{ 
  margin-bottom: 0;
}
/*tab menu ends*/

.photoslider-wrap{
  margin-bottom: 40px;
}
.photoslider-wrap .swiper-container{
  overflow: hidden;
  padding: 2px;
  margin: -2px;
}
.photoslider-wrap .swiper-slide{
  width: calc((99.99% - 40px)/5);
}
.photoslider-wrap .swiper-slide a{
  display: block;
  text-decoration: none;
  color: #000;
  border: 0;
}
.photoslider-wrap .swiper-slide span{
  display: block;
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e9e9e9; 
  position: relative;
  aspect-ratio: 3/2;
}
.photoslider-wrap .swiper-slide  span > img{
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .3s ease 0s;  
}
.photoslider-wrap .swiper-slide a:hover span > img, .photoslider-wrap .swiper-slide a:focus span > img{
  transform: translate(-50%, -50%) scale(1.1);
}
.swiper-wrap .slider-ctrls{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  max-width: 200px;
  padding: 0 40px;
  margin: 20px auto 0;
  text-align: center;
}
.swiper-wrap .slider-ctrls > *{
  display: inline-block;
}
.swiper-wrap .slider-ctrls .swiper-arrow{ width: 40px; }
.swiper-wrap .slider-ctrls .swiper-prev{
  left: 0;
}
.swiper-wrap .slider-ctrls .swiper-prev:hover{
  left: -2px;
}
.swiper-wrap .slider-ctrls .swiper-next{
  right: 0;
}
.swiper-wrap .slider-ctrls .swiper-next:hover{
  right: -2px;
}
.swiper-wrap .slider-ctrls .swiper-arrow span {
  border-color: var(--primary-blue);
}

.swiper-wrap .slider-ctrls .swiper-paging {
  color: var(--primary-blue);
}
.swiper-paging {
  display: inline-block;
  vertical-align: top;
  padding: 0 5px;
}

.swiper-paging>a {
  display: inline-block;
  height: 40px;
  width: 28px;
  position: relative;
  vertical-align: top;
  text-indent: -9999px;
  opacity: 1;
}

.swiper-paging>a:before {
  content: '';
  position: absolute;
  background-color: rgba(56, 186, 169, .5);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper-paging>a:not(.swiper-pagination-bullet-active):hover:before {
  background-color: rgba(56, 186, 169, 1);
}

.swiper-paging .swiper-pagination-bullet-active:before {
  background-color: rgba(56, 186, 169, 1);
}

.swiper-paging .swiper-pagination-bullet,
.swiper-paging .swiper-pagination-bullet-active {
  background: none;
}

.swiper-button-disabled {
  cursor: default;
  /*visibility:hidden;*/
  opacity: .2;
  pointer-events: none;
}
.swiper-wrap .slider-ctrls .btn-play:before,
.swiper-wrap .slider-ctrls .btn-play:after {
  background-color: var(--primary-blue);
}
.swiper-wrap .slider-ctrls .btn-play.stop:before {
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--primary-blue);
  border-top: 7px solid transparent;
}

#content .flexbox{
	display: flex;
	flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 30px;
}
#content .flexbox.wpInfoCase{
  column-gap: 40px;
}
#content .flexbox.col-4 > *{
  width: calc((100% - 60px) / 4);
}
#content .flexbox.hoverbox.col-3 > *{
	width: calc((100% - 40px) / 3);
}
#content .flexbox.imgCols .item .img{
  overflow: hidden;
  background-color: #e9e9e9; 
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--hotline-radius);
  overflow: hidden;
}
#content .flexbox.imgCols .item .img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#content .flexbox.imgCols .item .caption{
  padding: 15px 20px;
  text-align: center;
  line-height: 1.4rem; 
}
#content .flexbox.greyBg .item{
	border-radius: var(--hotline-radius);
	overflow: hidden;
	background-color: var(--grey-light2);
	padding: 20px;
}
#content .flexbox.greyBg .item > p:last-child, #content .flexbox.greyBg .item > ul:last-child{
	margin-bottom: 0;
}
#content .flexbox.hoverbox > *{
  border-radius: var(--hotline-radius);
  padding: 20px;
  background-color: var(--grey-light2);
  transition: background-color 0.25s ease 0s;
}
#content .flexbox.hoverbox > *:hover, #content .flexbox.hoverbox > *:focus-within{
  background-color: var(--primary-light);
}
#content .flexbox.hoverbox.video.wordlimit > *:hover, #content .flexbox.hoverbox.video.wordlimit > *:focus-within{
  background-color: var(--grey-light2);
}
#content .flexbox.hoverbox a {
  border: 0;
  transition: color 0.25s ease 0s;
  cursor: pointer;
}
#content .flexbox.hoverbox.lightGallery a{
  color: #000;
}
#content .flexbox.hoverbox a:not(.btn_common):not(.common-btn):hover, #content .flexbox.hoverbox a:not(.btn_common):not(.common-btn):focus, #content .flexbox.hoverbox a:not(.btn_common):not(.common-btn):hover h3, #content .flexbox.hoverbox a:not(.btn_common):not(.common-btn):focus h3{
  color: var(--red-dark)!important;
}
#content .flexbox.hoverbox .img{
  text-align: center;
}
#content .flexbox.hoverbox .img  div:not(.hd){
    display: inline-block;
    max-width: 172px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid #999;
}
#content .flexbox.hoverbox.w-100 > * {
	width: 100%;
}
#content .flexbox.hoverbox.wider-image .img  div:not(.hd){
	max-width: 300px;
}
#content .flexbox.hoverbox.auto-image .img  div:not(.hd){
	max-width: 100%;
}
#content .flexbox.hoverbox.lightGallery .img  div:not(.hd){
  max-width: initial;
  display: block;
  line-height: 0;
  overflow: hidden;
  background-color: #e9e9e9;
  position: relative;
  aspect-ratio: 3/2;
  border: 0;
  margin-bottom: 10px;
}
#content .flexbox.hoverbox.lightGallery .img  div:not(.hd) img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#content .flexbox.hoverbox > a > div.hd{
	line-height: 1.2;
	display: block;
	margin-top: 5px;
}
#content .flexbox.hoverbox.lightGallery .img div.hd{
  text-align: left;
  line-height: 1.5;
  display: block;
  display: -webkit-box;
  /* -webkit-box-orient: vertical; */
  /* -webkit-line-clamp: 3; */
  overflow: hidden;
  margin-top: 7px;
  /* max-height: 80px; */
}
#content .flexbox.hoverbox.lightGallery.wordlimit .img div.hd, #content .flexbox.hoverbox.video.wordlimit div.hd strong{
 display: -webkit-box;
 overflow: hidden;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 17;
  max-height: 700px;
  text-align: left;
  line-height: 1.5;
}
#content .flexbox.hoverbox div.hd{
	line-height: 1.4;
}
#content .flexbox.hoverbox.video .img  div:not(.hd){
  max-width: initial;
}
#content .flexbox.hoverbox.video .img  div:not(.hd) img{
	max-height: 170px;
}
#content #mcase-grid .flexbox.hoverbox.video .img  div:not(.hd) img{
	min-height: 170px;
}
#content .flexbox.hoverbox.video div.hd, #content .flexbox.hoverbox.video div.date{
  text-align: center;
}
#content .flexbox.hoverbox.video div.hd, #content .flexbox.hoverbox.lightGallery .img div.hd{
  font-size: 0.9em;
}
#content .flexbox.hoverbox div.description{
	font-size: 0.8em;
	color: #000;
	margin-top: 10px;
	line-height: 1.7;
}
#content .flexbox.hoverbox div.description + .img div:not(.hd){
	max-width: 70%;
}
#content .flexbox.hoverbox.video div.date{
  font-size: 0.8em;
  color: #000;
  line-height: 1.1;
  margin-top: 5px;
}
#content .flexbox.hoverbox.video div.date>*:last-child{
	margin-bottom: 0!important;
}
#content .flexbox.hoverbox .img img{
  transition: transform 0.25s ease 0s;
  transform-origin: center center;
}
#content .flexbox.hoverbox a:hover img, #content .flexbox.hoverbox a:focus img{
  transform: scale(1.05);
}
#content .flexbox.hoverbox .btns{
  text-align: center;
  margin-top: 10px;
}
#content .flexbox.hoverbox .btns a.btn_common{
	margin: 0 3px;
	margin-top: 3px;
}
#content .flexbox.videoList a{
  display: block;
  border-radius: var(--hotline-radius);
  text-decoration: none;
  overflow: hidden;
  background-color: var(--grey-light2);
  color: var(--primary-blue);
  border: 0;
  transition: background-color 0.25s ease 0s, color 0.25s ease 0s;
}
#content .flexbox.videoList a:hover, #content .flexbox.videoList a:focus{
  background-color: var(--primary-blue);
  color: var(--white);
}
#content .flexbox.videoList a span{
  display: block;
}
#content .flexbox.videoList a span.img{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 52.78%;
  overflow: hidden;
}
#content .flexbox.videoList a span.img img{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: transform 0.25s ease 0s;
}
#content .flexbox.videoList a:hover span.img img, #content .flexbox.videoList a:focus span.img img{
  transform: scale(1.05);
}
#content .flexbox.videoList a span.detail{
  padding: 15px 15px;
  text-align: center;
  line-height: 1.3;
  font-size: calc((var(--h3-font-size) / var(--text-base-size-for-calc)) * 1em);
}
#content .flexbox.wanted img {
    width: 150px;
    height: 195px;
    margin: 15px;
	object-fit: contain;
}
#content .flexbox.wanted .img  div:not(.hd){
    border: 0;
    position: relative;
    max-width: initial;
}
#content .flexbox.wanted .img  div:not(.hd):before, #content .flexbox.wanted .img  div:not(.hd):after, #content .wpInfo .wpInfosPhoto span:before, #content .wpInfo .wpInfosPhoto span:after{
  content:'';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-blue);
}
#content .flexbox.wanted .img > div:before, #content .wpInfo .wpInfosPhoto>span:before{
  left: 0;
  top: 0;
  border-right: 0!important;
  border-bottom: 0!important;
}
#content .flexbox.wanted .img > div:after, #content .wpInfo .wpInfosPhoto>span:after{
  right: 0;
  top: 0;
  border-bottom: 0!important;
  border-left: 0!important;
}
#content .flexbox.wanted .img > div>div:before, #content .wpInfo .wpInfosPhoto>span>span:before{
  left: 0;
  bottom: 0;
  border-right: 0!important;
  border-top: 0!important;
}
#content .flexbox.wanted .img > div>div:after, #content .wpInfo .wpInfosPhoto>span>span:after{
  right: 0;
  bottom: 0;
  border-left: 0!important;
  border-top: 0!important;
}

.btn_common{ background-color:var(--grey-normal); color:var(--white); text-decoration:none; display:inline-block; border:0!important; padding: 5px 10px 5px 5px; font-size: 0.8em; margin-bottom: 2px; transition: all 0.3s ease 0s!important;}
.btn_common:hover, .btn_common:focus{ background-color:var(--primary-blue); color:var(--white)!important;}
.icon_pdf, .icon_word, .icon_video, .icon_contact, .icon_web{ padding-left:45px!important; position:relative; }
.icon_pdf:before, .icon_word:before, .icon_video:before, .icon_contact:before, .icon_web:before{ content:''; width:26px; height:26px; background-position:0 0;background-repeat:no-repeat; background-size:contain; position:absolute; left:10px; top:50%; transform:translateY(-50%); -webkit-transform:translateY(-50%); border-radius:50%;}
.icon_pdf:before{ background-color:#e71820;}
.icon_word:before, .icon_web:before{ background-color:#2271b9;}
.icon_pdf:before{ background-image:url(../../common/images/PDF-Btn.png);}
.icon_word:before{ background-image:url(../../common/images/Word-Btn.png);}
.icon_video:before{ background-image:url(../../common/images/Video-Btn.png);}
.icon_contact:before{ background-image:url(../../common/images/ContactUs-Btn.png);}
.icon_web:before{ background-image:url(../../common/images/Web-Btn.png);}

#content a.iconLink + span img{
	margin: 0 10px;
	width: 32px;
	height: 20px;
	transform: translateY(3px);
}

.highlight{
  font-size: calc((var(--highlight-font-size) / var(--text-base-size-for-calc)) * 1em);
  color: var(--white);
  text-align: center;
  background-color: var(--primary-blue);
  padding: 15px 30px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  line-height: 2rem;
}
.highlight.width-auto{
  display: table;
  margin: 0 auto;
  margin-bottom: 20px;
}
.history-wrap{
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.history-wrap .highlight{
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.history-wrap:before{
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(var(--grey-light1) 83%, var(--white) 94%);
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 1;
}
.history-wrap .history-items{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding-top: 28px;
  flex-direction: column;
}
.history-wrap .history-items .history-item{
  width: calc(50% + 12px);
  position: relative;
  padding-top: 10px;
  z-index: 2;
}
.history-wrap .history-items .history-item:not(:first-child){
  margin-top: -11%;
}
.history-wrap .history-items .history-item:before{
  content: '';
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--white);
  border: 5px solid var(--primary-green);
}
.history-wrap .history-items .history-item .detail-wrap{
  position: relative;
  overflow: hidden;
}
.history-wrap .history-items .history-item .detail-wrap:before{
  content: '';
  width: 0;
  height: 0;
  border-top: 15px solid var(--grey-light2);
  position: absolute;
  top: 0;
}
.history-wrap .history-items .history-item .detail{
  padding: 30px 40px;
  background-color: var(--grey-light2);
  text-align: justify;
  color: #000;
}
.history-wrap .history-items .history-item .detail:before{
  content: '';
  width: 0;
  height: 0;
  border-top: 40px solid var(--primary-green);
  position: absolute;
  top: 0;
}
.history-wrap .history-items .history-item .detail .title{
  font-size: calc((var(--history-title-font-size) / var(--text-base-size-for-calc)) * 1em);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.history-wrap .history-items .history-item .detail>*:last-child{
  margin-bottom: 0!important;
}

.history-wrap .history-items .history-item:nth-child(odd){
  padding-right: 50px;
}
.history-wrap .history-items .history-item:nth-child(odd):before{
  right: 0;
}
.history-wrap .history-items .history-item:nth-child(odd) .detail-wrap{
  border-top-left-radius: var(--hotline-radius);
  border-bottom-left-radius: var(--hotline-radius);
  padding-right: 15px;
}
.history-wrap .history-items .history-item:nth-child(odd) .detail-wrap:before{
  border-right: 15px solid transparent;
  right: 0;
}
.history-wrap .history-items .history-item:nth-child(odd) .detail:before{
  border-right: 40px solid transparent;
  left: 0;
}
.history-wrap .history-items .history-item:nth-child(odd) .detail{
  border-bottom-right-radius: var(--hotline-radius);
}
.history-wrap .history-items .history-item:nth-child(even){
  padding-left: 50px;
  align-self: flex-end;
}
.history-wrap .history-items .history-item:nth-child(even):before{
  left: 0;
}
.history-wrap .history-items .history-item:nth-child(even) .detail-wrap{
  border-top-right-radius: var(--hotline-radius);
  border-bottom-right-radius: var(--hotline-radius);
  padding-left: 15px;
}
.history-wrap .history-items .history-item:nth-child(even) .detail-wrap:before{
  border-left: 15px solid transparent;
  left: 0;
}
.history-wrap .history-items .history-item:nth-child(even) .detail:before{
  border-left: 40px solid transparent;
  right: 0;
}
.history-wrap .history-items .history-item:nth-child(even) .detail{
  border-bottom-left-radius: var(--hotline-radius);
}
.history-wrap .history-items .history-item:last-child:before{
  border-color: var(--red-normal);
}
.history-wrap .history-items .history-item:last-child .detail:before{
  border-top-color: var(--red-normal);
}
.history-wrap .history-items .history-item:last-child .detail{
  background-color: var(--red-light);
}
.history-wrap .history-items .history-item:last-child .detail .title{
  color: var(--red-normal);
}
.history-wrap .history-items .history-item:last-child .detail-wrap:before{
  border-top-color: var(--red-light);
}



/************ popup style *********/
.popupStyle{
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: rgba(0,0,0,0.85);
  transition: opacity 0.5s ease 0s;
  opacity: 1;
}
.popupStyle.hide{
  opacity: 0;
}
.popupStyle.destroy{
  display: none;
}
.popupStyle .popupClose{
  position: absolute;
  line-height: initial;
  right: 0;
  top: 0;
  padding: 10px 30px 10px 50px;
  color: var(--white);
  background-color: var(--red-normal);
  transition: background-color 0.25s ease 0s, opacity 0.25s ease 0.25s;
  border-bottom-left-radius: var(--hotline-radius);
  font-size: calc((var(--popup-close-font-size) / var(--text-base-size-for-calc)) * 1em);
  z-index: 5;
  opacity: 0;
  border: 0!important;
}
.popupStyle.ready .popupClose{
  opacity: 1;
}
.popupStyle .popupClose:before{
  font-family: lg!important;
  content: '\e070';
  position: absolute;
  left: 22px;
  font-size: 22px;
  top: 50%;
  margin-top: -2px;
  transform: translateY(-50%);
}
.popupStyle .popupClose:hover, .popupStyle .popupClose:focus{
  background-color: var(--red-dark);
}
.popupStyle .popupContent{
  position: absolute;
  width: calc(100% - 30px);
  max-width: 1300px;
  height: calc(100vh - 40px);
  overflow-y: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.popupStyle .popupContent .popupDetail{
	position: relative;
	background: var(--white);
	padding: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.popupStyle .popupContent .popupDetail h2{
	margin-top: 0!important;
}
.popupStyle .popupContent .popupDetail>*:last-child{
	margin-bottom: 0!important;
}
.popupStyle .popupContent .img-wrap{
  line-height: 0;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popupStyle .popupContent .img-wrap a{
  display: block;
  /* width: 100%; */
  /* height: 100%; */
}
.popupStyle .popupContent .img-wrap a img{
  /* width: 100%;
  height: 100%;
  object-fit: contain; */
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/********** press release start ***********/
.pressSearchWrap{ margin-bottom:20px; display: flex;}
#content .pressSearchWrap .searchinput{ background-color: var(--grey-normal); height:45px; width:156px; color:var(--white); line-height: 45px; padding: 0 10px 0 20px; border-top-left-radius: 30px; border-bottom-left-radius: 30px; border:0;}
#content .pressSearchWrap .searchinput::placeholder{
	color:var(--white);
}
#content .pressSearchWrap .searchinput::-ms-input-placeholder{
	color:var(--white);
}
.pressSearchWrap .btn_search{ width:30px; height:45px; display: block; text-indent: -9999px; position: relative; border: 0; border-top-right-radius: 30px; border-bottom-right-radius: 30px; background-color: var(--red-normal); transition: background-color 0.25s ease 0s;}
.pressSearchWrap .btn_search:after {
    content: '';
    width: 0;
    height: 0;
    background-color: transparent;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--white);
    position: absolute;
    top: 50%;
    right: 13px;
    margin-top: -1px;
    transform: translateY(-50%);
    transition: transform 0.25s ease 0s;
}
.pressSearchWrap .btn_search:hover, .pressSearchWrap .btn_search:focus{ background-color: var(--red-dark);}
.pressSearchWrap .btn_search:hover:after, .pressSearchWrap .btn_search:focus:after{
  transform: translateY(-50%) scale(1.2);
}

.pressListWrap, #pressListWrap{
  margin-bottom: 40px;
}
.pressListWrap.col-2, #pressListWrap.col-2{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pressListWrap.col-2 > .pressItem, #pressListWrap.col-2 > .pressItem{
  width: calc((100% - 20px) / 2);
  margin-bottom: 0;
}
.pressListWrap.col-2 > .pressItem > a, #pressListWrap.col-2 > .pressItem > a{
  height: 100%;
}
.pressItem > a > div .details .date{
  padding-right: 0;
}
.pressItem > a > div > .thumb{
  flex: 0 0 37%;
  padding-right: 15px;
  line-height: 0;
}
.pressItem > a > div > .thumb>div{
  overflow: hidden;
  text-align: center;
}
.pressItem > a > div > .thumb img{
  transition: transform 0.3s ease 0s;
}
.pressItem > a:hover > div > .thumb img, .pressItem > a:focus > div > .thumb img{
  transform: scale(1.05);
}
.pressItem{
  margin-bottom: 20px;
}
.pressItem > a{
  display: flex;
  width: 100%;
  border-radius: var(--hotline-radius);
  background-color: var(--grey-light2);
  border: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease 0s;
}
.pressItem > a:hover, .pressItem > a:focus{
  background-color: var(--primary-light);
}
.pressItem > a > div:not(.arrow){
  display: flex;
  padding: 20px;
  flex: 1 1 auto;
}
.pressItem > a > div .date{
  flex: 0 0 180px;
  padding-right: 15px;
  color: var(--red-normal);
  font-weight: 700;
}
.pressItem > a > div .details{
  color: #000;
}
.pressItem > a > div .details .left{
	flex: 1 1 auto;
}
.pressItem > a > div .details .thumb{
  line-height: 0;
}
.pressListWrap:not(.col-2) .pressItem > a > div .details, #pressListWrap:not(.col-2) .pressItem > a > div .details{
  display: flex;
  width: 100%;
}
.pressListWrap:not(.col-2) .pressItem > a > div .details .thumb{
  flex: 0 0 300px;
  margin-left: 20px;
}
#pressListWrap:not(.col-2) .pressItem > a > div .details .thumb img{
	min-width: 280px;
	margin-left: 20px;
}
.pressItem > a > div .details .hd{
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 1.1em;
}
.pressItem > a > div .details>*:last-child, .pressItem > a > div .details .left > *:last-child{
  margin-bottom: 0!important;
}
.pressItem > a > div.arrow{
  width: 30px;
  min-width: 30px;
  background-color: var(--grey);
  position: relative;
  transition: all 0.3s ease 0s;
}
.pressItem > a:hover > div.arrow, .pressItem > a:focus > div.arrow{
  background-color: var(--primary-blue);
}
.pressItem > a > div.arrow:before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -8px;
    transform-origin: center center;
    border-right: 3px solid var(--red-normal);
    border-bottom: 3px solid var(--red-normal);
    transform: rotate(-45deg);
    transition: all 0.3s ease 0s;
  }
  .pressItem > a:hover > div.arrow:before, .pressItem > a:focus > div.arrow:before{
    border-color: var(--white);
  }
/********** press release  end ***********/

/********** video container start *********/
#content .videoContainer{
  padding: 25px;
  border-radius: var(--hotline-radius);
  background-color: var(--grey-light2);
  margin-bottom: 30px;
}
#content .videoContainer .videoWrap{
  max-width: 1000px;
  margin: 0 auto;
}
#content .videoContainer .videoWrap .video{
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 56.25%;
}

#content .videoContainer .videoWrap .video + h4, #content .videoContainer .videoWrap .video + #episode_intro{
	margin-top: 20px;
}
#content .videoContainer .videoWrap .video video, #content .videoContainer .videoWrap .video iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 0;
}
/********** video container end *********/
/********** menu swiper start **********/
.menu-swiper{
  opacity: 0;
  transition: opacity 0.1s ease 0s;
  position: relative;
}
#content .menu-swiper + h2{
	margin-top: 0;
}
.menu-swiper.arrow{
  padding-left: 60px;
  padding-right: 60px;
}
.menu-swiper.done{
  opacity: 1;
}
.menu-swiper .swiper-container{
  padding-bottom: 30px;
  overflow: hidden;
}
.menu-swiper .swiper-wrapper{
  display: flex;
  height: auto;
}
.menu-swiper.center .swiper-wrapper{
  justify-content: center;
}
.menu-swiper .swiper-slide{
  width: auto!important;
  max-width: 350px;
  height: auto;
}
.menu-swiper .swiper-slide a{
  text-align: center;
    display: flex;
	align-items: center;
	justify-content: center;
    padding: 14px 20px;
    line-height: 30px;
    position: relative;
    height: 100%;
    transition: background-color 0.3s ease 0s;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 1.033em;
    color: var(--white);
    background-color: var(--grey-normal);
}
.menu-swiper .swiper-slide.selected a, .menu-swiper .swiper-slide.selected a:focus, .menu-swiper .swiper-slide a:hover, .menu-swiper .swiper-slide.selected a:focus {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}
.menu-swiper .swiper-slide.selected a:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 8px solid var(--red-normal);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    z-index: 50;
    margin-left: -4px;
    transition: transform 0.3s ease 0s;
}
.menu-swiper .swiper-button-disabled{
  display: none;
}
.swiper-wrap.menu-swiper .swiper-next{
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -15px;
}
.swiper-wrap.menu-swiper .swiper-prev{
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -15px;
}
.swiper-wrap.menu-swiper .swiper-arrow span{
  border-color: var(--primary-blue);
  transition: border-color 0.25s ease 0s;
}
.swiper-wrap.menu-swiper .swiper-arrow:hover span, .swiper-wrap.menu-swiper .swiper-arrow:focus span{
  border-color: var(--red-normal);
}
/********** menu swiper end **********/

/********* lightgallery start ***********/
.lg-next, .lg-prev{
  background-color: rgba(0,0,0,0.75);
  color: var(--white);
  transition: background-color 0.25s ease 0s;
}
.lg-toolbar .lg-icon, .lg-counter, .lg-sub-html{
  color: var(--white);
  transition: background-color 0.25s ease 0s;
}
.lg-toolbar .lg-icon:hover, .lg-toolbar .lg-icon:focus-visible, .lg-next:hover, .lg-prev:hover, .lg-next:focus-visible, .lg-prev:focus-visible{
  background-color: var(--red-normal);
}
.lg-toolbar{
  background-color: rgba(0,0,0,0.75);
}
/********* lightgallery end ***********/

.vacancy .btn_link {
    float: right;
	line-height: 26px!important;
    padding: 0 30px 0 10px!important;
	background-color: var(--grey-normal);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
	border: 0;
	position: relative;
	transition: all 0.3s ease 0s;
}
.vacancy a.btn_link:before {
    content: '';
    border-top: 2px solid var(--red-normal);
    border-right: 2px solid var(--red-normal);
    border-bottom: none;
    border-left: none;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s ease 0s;
}
.vacancy .btn_link:hover, .vacancy .btn_link:focus{
	background-color: var(--red-normal);
}
.vacancy .btn_link:hover:before, .vacancy .btn_link:focus:before{
	border-color: var(--white);
}

#content table.styleTable.tender tr th:first-child {
    width: 180px;
}

#content table.tender_award .tender_scope {
    width: 40%;
    min-width: 200px;
}

#content table.tender_award .tender_awardee {
    width: 20%;
    min-width: 120px;
}

.highlight-wrap{
  border-radius: var(--hotline-radius);
  padding: 20px;
  background-color: var(--grey-light2);
  margin-bottom: 30px;
}
.highlight-wrap>*:last-child{
	margin-bottom: 0!important;
}
.highlight-wrap>h2:first-child{
	margin-top: 0!important;
}
#content .wpInfo{
  display: flex;
  width: 100%;
  padding: 10px;
}
#content .wpInfo .wpInfosPhoto{
  line-height: 0;
  padding-right: 30px;
}
#content .wpInfo .wpInfosPhoto span{
  display: inline-block;
  line-height: 0;
  position: relative;
  min-width: 180px;
}
#content .wpInfo .wpInfosPhoto img {
    width: 150px;
    height: 195px;
    margin: 15px;
	object-fit: contain;
}
#content .wpInfo .wpInfoDetail{
  flex: 1 1 auto;
  padding-top: 10px;
}
#content .wpInfo table th {
    white-space: nowrap;
    color: initial;
}
#content .wpInfo table th, #content .wpInfo table td{
  padding: 5px 10px 5px 5px!important;
}
#content .wanted-title{
  color: var(--primary-blue);
  font-size: calc((var(--h3-font-size) / var(--text-base-size-for-calc)) * 1em);
  font-weight: 600;
  padding: 12px 20px;
  border-bottom: 2px solid var(--red-normal);
  margin-bottom: 15px;
}
#content .wanted-bio{
  padding: 0 20px;
}
#content .wpCase{
  border-radius: var(--hotline-radius);
  overflow: hidden;
  background-color: var(--primary-light);
}
#content .wpCase .title{
  background-color: var(--primary-blue);
  color: #fff;
  font-size: calc((var(--h3-font-size) / var(--text-base-size-for-calc)) * 1em);
  font-weight: 600;
  padding: 12px 20px;
}
#content .wpCase .caseBrief{
  padding: 15px 20px;
}
.lg-outer .lg-video-cont .lg-object{
	object-fit: cover;
}
.lg-img-wrap .lg-object.lg-image{
	background-color: #fff;
}
.red{
	color: #e71b23!important;
}
.red_border{
	border-color: #e71b23!important;
}
.imlo-heading {
    text-align: right;
    color: #5b5b5b;
    font-style: italic;
    font-size: 1.2em;
}
.imlo-heading span:first-child {
    padding-right: 1em;
}
figure figcaption{
	margin-bottom: 30px;
}

#non-wcag-wrap{
	display: none;
}

#non-wcag-wrap.shown{
	display: block;
}


/* #content.press-page .videoContainer {
	margin:0px!important;
}
#content.press-page .flexbox.hoverbox.video > * {
	padding: initial;
	margin: initial;
} */

#content.press-page .flexbox.hoverbox.video h4{
	margin-bottom: 0;
}

#content.press-page .flexbox.hoverbox.video .img{
	position: relative;
}

#content.press-page .flexbox.hoverbox.video .img span.play-button{
	text-indent: -9999px;
	display: block;
	position: absolute;
	width: 70px;
	height: 70px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-image: url(../images/Video-Play-Btn.png);
	background-size: cover;
}

#content.press-page .flexbox.hoverbox.video a:is(:hover, :focus-within) .img span.play-button{
	background-image: url(../images/Video-Play-Btn-On.png);
}

/* temp hide sharing panel for Press Release */
.sharethis-inline-share-buttons{
	/* display: none!important; */
}