@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --font-family: "Roboto", sans-serif;
  --text-color: #222222;
  --hover-color: #155AA2; 
}
body {
  font-family: var(--font-family);
  color: var(--text-color);
  padding: 0 0 0 0;
  margin: 0;
  font-size: 16px;
  line-height: 150%;
}
.img-full {
  width: 100%;
}
header.site-header{
/* padding-top: 28px;  
  background: url('assets/img/orm.png') left top  no-repeat #fff;  */
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 28px 0 0;
 
}
header.site-header.menu-sticky{
  padding:0;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  background: #fff;
  padding:  0 0;
}
.no-list-style{
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,h2,h3,h4,h5,h6{
  margin: 0 0 24px;
}
p{
  margin:0 0  1em;
}
p:last-child{
  margin-bottom: 0;
}
button{
  font-family: var(--font-family);
}
.flex-wrap{
  flex-wrap: wrap;
}
footer{
  background: #F9F9F9;
  padding:30px 8px  0px;
}
.footer-container{
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-left{
  order:1;
}
.footer-center{
  order:2;
}
.footer-right{
  order:0;
}
.asean-addres-footer__title{
  font-size: 24px; 
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
}
.asean-addres-footer__content{
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-center__title{
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
}
.sosmed-container ul{
  display: flex;
  gap: 30px;
}
.sosmed-container{
  margin-bottom: 26px;
}
.privacy-container{
  gap: 16px;
}
.privacy-container a{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #6B6B6B;
  text-decoration: none;
}
.copyright-container{
  font-size: 14px; 
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  color: #999;
  padding:16px 0;
  border-top: 1px solid #E9E9E9;
}
.breadcrumb-container{
  padding: 16px 0;
  background: #F9F9F9;
}
.bredcrumb-list-container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
}
.bredcrumb-list-container span a{
  font-size: 14px;
  color: #155AA2;
  text-decoration: none;
}
.bredcrumb-list-container span{
  font-size: 14px;
  color: #999999;
}
.content-container{
  /* margin-bottom: 40px; */
}
.img-cover{
  overflow: hidden;
  height: 200px;
}
.img-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.admin-bar header.site-header{
  margin-top: 32px;
}
.admin-bar header.site-header.menu-sticky{
  margin:0;
}
.footer-right img {
  width: 100%;
}
.top-main-banner{
  position: relative;
  height: 600px;
}
.top-main-banner .uagb-container-inner-blocks-wrap, .top-main-banner .wp-block-uagb-image__figure {
  height: 100%;
}
.top-main-banner .wp-block-uagb-image__figure img{
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}
.top-main-banner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 25, 51, 0.80) 100%);
}
.top-main-banner::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 25, 51, 0.80) 80.34%);
}

.menu-toggle-icon{
  width: 40px;
  height: auto; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3px;
  align-items: center;
  padding:9px 7px;
  border:2px solid #fff;
}
.menu-toggle-icon span{
  width: 100%;
  height: 3px; 
  background: #fff;
  border-radius: 3px;
}
.menu-toggle-icon span:nth-child(2){
  width: 100%;
  height: 3px; 
}
.menu-toggle-icon span:nth-child(3){
  width: 100%;
  height: 3px; 
}
.menu-sticky .menu-toggle-icon{
  border:2px solid #222222;
}
.menu-sticky .menu-toggle-icon span{
  background: #222222;
}
.menu-mobile-container{
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  padding: 20px;
  gap: 20px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.menu-mobile-container.active{
  left: 0;
}
.menu-mobile-container__content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-mobile-container__content__title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-mobile-container__content__title h3{
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.menu-mobile-container__content__title button{
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  padding: 5px 10px; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding:0;
}
.menu-mobile-container__content__list ul.menu{
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-mobile-container__content__list ul.menu li{
  margin-bottom: 0px;
}
.menu-mobile-container__content__list ul.menu li a{
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
  padding:16px 0;
  display: block;
  color: #222222;
}
.menu-mobile-container__content__list ul.menu li.current-menu-item a{
  color: #155AA2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
  border-bottom: 2px solid #155AA2;
}
.member-nav-button{
  padding: 8px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: transparent;
  width: 100%;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 0px !important;
}
.member-nav-button svg path{
  fill: #222222;
}
.member-nav-button:hover{
  color: #155AA2;
  border: 1px solid #155AA2;
}
.member-nav-container{
  width: 100%;
}
.logo-container{
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%; 
}
.logo a{
  display: block;
}
.member-nav-container-mobile button.member-nav-button{
  padding: 12px 20px;
  border: 1px solid #222 !important; 
  color: #222 !important;
}
.member-nav-container-mobile button.member-nav-button  svg path {
  fill: #222 !important;
}
/* Prevent body scroll when mobile menu is active */
body.menu-mobile-active {
  overflow: hidden;
}


 
/* home */
.home-slider {
  margin: 25px 0;
}

.home-slider .slick-prev,
.home-slider .slick-next {
  font-style: normal;
  z-index: 1;
}

.home-slider .slick-prev {
  left: 10px;
}
body{
  padding-top: 85px;
}
body.logged-in.admin-bar{
  padding-top: 127px;
}
.home-slider .slick-next {
  right: 10px;
}

.home-slider .slick-prev:before,
.home-slider .slick-next:before {
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
}

.home-slider .slick-dots {
  bottom: 7px;
}

.home-slider .slick-dots li {
  width: 10px;
  height: 10px;
}

.home-slider .slick-dots li button:before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #ccc;
  margin: 0;
  padding: 0;
  opacity: 1;
  display: inline-block;
  border-radius: 5px;
}

.home-slider .slick-dots li.slick-active {
  width: 25px;
}

.home-slider .slick-dots li.slick-active button:before {
  background-color: #F21923;
  width: 25px;
}

.home-slider__item {
  position: relative;
}

.home-slider__item-img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  object-position: center center;
}

.home-slider__item-caption {
  background-color: #eee;
  height: 80px;
  width: 100%;
  font-size: 16px;
  color: #333;
  letter-spacing: 0.4px;
  text-align: center;
  padding: 15px 15px;
  white-space: nowrap;
}

.latest-news {
  list-style: none;
  margin: 0;
  padding: 0;
}

.latest-news__item {
  padding: 6px 12px;
  border-bottom: 1px dotted #DFE6EA;
}

.latest-news__item-title {
  font-size: 14px;
  color: #000000;
  letter-spacing: 0.28px;
}

.latest-news__item-datetime {
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.24px;
  padding-top: 6px;
}

.latest-news__item a:hover {
  text-decoration: none;
}

 

/* gallery */
.album {
  margin-top: 25px;
  margin-bottom: 5px;
  cursor: pointer;
}

.album__cover {
  width: 100%;
  box-shadow: 5px 5px 0 #F0F0F0;
}

.album__title {
  font-weight: 600;
  font-size: 14px;
  padding-top: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 5px;
}

.album__date {
  font-weight: 300;
  font-size: 11px;
}

.modal-gallery .modal-dialog {
  max-width: 900px;
}

.modal-gallery .modal-content {
  box-shadow: none;
  background-color: transparent;
  border: 0;
  text-align: center;
}

.modal-gallery .modal-content .spinner-border {
  margin: auto;
}

.modal-gallery .modal-content .slick-prev,
.modal-gallery .modal-content .slick-next {
  width: 25px;
  height: 40px;
}

.modal-gallery .modal-content .slick-prev {
  left: -70px;
}

.modal-gallery .modal-content .slick-next {
  right: -70px;
}

.modal-gallery .modal-content .slick-prev::before {
  content: url('assets/img/icons/slick-arrow-left.svg');
}

.modal-gallery .modal-content .slick-next::before {
  content: url('assets/img/icons/slick-arrow-right.svg');
}

.gallery-images {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.gallery-images__item-img {
  width: 100%;
  height: 600px;
  display: block;
  margin: auto;
  object-fit: contain;
}

.gallery-thumbs {
  width: 100%;
  padding: 0 40px 25px 40px;
  background-color: rgba(0, 0, 0, 0.4);
}

.gallery-thumbs__item {
  padding: 0 15px;
}

.gallery-thumbs__item-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center center;
}

.gallery-info {
  width: 100%;
  padding: 15px 55px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 14px;
}

.modal-gallery .modal-content .gallery-thumbs .slick-prev,
.modal-gallery .modal-content .gallery-thumbs .slick-next {
  transform: scale(0.5);
  top: 40%;
}

.modal-gallery .modal-content .gallery-thumbs .slick-prev {
  left: 15px;
}

.modal-gallery .modal-content .gallery-thumbs .slick-next {
  right: 15px;
}

/* working commitee */

.wc-page-content {
  padding: 30px;
  font-size: 14px;
  color: #3B3B3B;
  letter-spacing: 0.28px;
  line-height: 23px;
}

.wc-page-login .form-control {
  background: #FFFFFF;
  border: 1px solid #EFF5FC;
  box-shadow: none;
}

.wc-page-login .g-recaptcha {
  transform: scale(0.7) translate(-80px);
}

.wc-logged-in .wc-page-content {
  padding: 15px;
}

.wc-user-panel {
  padding-left: 30px;
}

.wc-user-panel .avatar {
  border-radius: 20px;
  margin-right: 15px;
}

.wc-user-panel .nav {
  margin-top: 10px;
  margin-left: 55px;
  background: #EEF9FF;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.18);
}

.wc-user-panel .nav .nav-link {
  position: relative;
  margin: 0 10px;
  padding: 10px 30px;
  font-size: 14px;
  color: #000000;
  letter-spacing: 0.28px;
}

.wc-user-panel .nav .nav-link:hover {
  color: #155AA2;
}

.wc-user-panel .nav .nav-link.active {
  background-color: transparent;
  color: #155AA2;
  font-weight: 600;
}

.wc-user-panel .nav .nav-link + .nav-link {
  border-top: 1px solid #C8E7F8;
}

.wc-user-panel .nav .nav-link:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 15px;
  margin: auto;
}

.wc-user-panel .nav .nav-link.meeting:before {
  content: url('assets/img/icons/up-meeting.svg');
}

.wc-user-panel .nav .nav-link.workshop:before {
  content: url('assets/img/icons/up-workshop.svg');
}

.wc-user-panel .nav .nav-link.others:before {
  content: url('assets/img/icons/up-others.svg');
}

.wc-user-panel .nav .nav-link.profile:before {
  content: url('assets/img/icons/up-edit-profile.svg');
}

.wc-user-panel .nav .nav-link.logout:before {
  content: url('assets/img/icons/up-logout.svg');
}

.wc-page-category {
  font-size: 15px;
  font-weight: 400;
  color: #3B3B3B;
  letter-spacing: 0.3px;
}

.wc-page-category .list-inline-item:first-child {
  font-weight: 600;
  border-right: 0;
}

.wc-page-category .list-inline-item {
  border-right: 1px solid #3B3B3B;
  padding-right: .5rem;
}

.wc-page-category .list-inline-item:last-child {
  border-right: 0;
}

.wc-page-category .list-inline-item.active {
  font-weight: 600;
}

.wc-page-search-filter {
  padding: 20px 30px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.wc-page-search-filter.meeting {
  background-image: url('assets/img/wc-page-meeting.jpg');
}

.wc-page-search-filter.workshop {
  background-image: url('assets/img/wc-page-workshop.jpg');
}

.wc-page-search-filter.others {
  background-image: url('assets/img/wc-page-others.jpg');
}

.wc-page-search-filter__title {
  font-size: 20px;
  font-weight: 600;;
  color: #FFFFFF;
  letter-spacing: 1.01px;
  text-align: center;
  margin-bottom: 10px;
}

.wc-page-search-filter .form-control,
.wc-page-search-filter .btn {
  height: 25px;
  font-weight: 300;
  font-size: 11px;
  color: #000;
  letter-spacing: 0.76px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;   
  -webkit-border-radius: 0;  
  -moz-border-radius: 0;   
  border-radius: 0;
  padding: 0 10px;
  box-shadow: none;
  background-clip: unset;
}

.wc-page-search-filter .form-control::placeholder {
  color: #797979;
}

.wc-page-search-filter .btn {
  color: #fff;
  padding: 2.5px;
}

.wc-page-search-filter .form-control.custom-dropdown {
  position: relative;
  background: #fff url('assets/img/icons/wc-search-dropdown.svg') no-repeat right center;
}

.wc-page-search-filter .form-control.custom-dropdown::after {
  position: absolute;
  content: 'awdadw';
  right: 0;
}

.wc-page-documents {
  padding-top: 10px;
}

.wc-page-documents .table {
  border-collapse:separate; 
  border-spacing:0 15px; 
}

.wc-page-documents .table thead th {
  font-size: 12px;
  font-weight: 400;
  color: #B3B3B3;
  letter-spacing: 0.31px;
  text-align: center;
  padding: 0 10px;
}

.wc-page-documents .table tbody td {
  padding: 15px 5px;
}

.wc-page-documents .table tbody tr {
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.06);
}

.wc-page-documents .table tbody tr:hover {
  transition: all .3s ease-in-out;
}

.wc-page-documents.meeting .table tbody tr {
  background: #EEF9FF;
}

.wc-page-documents.meeting .table tbody tr:hover {
  box-shadow: 0 2.5px 5px 0 rgba(1,79,150,0.3);
}

.wc-page-documents.workshop .table tbody tr {
  background: #FFFCBA;
}

.wc-page-documents.workshop .table tbody tr:hover {
  box-shadow: 0 2.5px 5px 0 rgba(212,176,19,0.3);
}

.wc-page-documents.others .table tbody tr {
  background: #F8D0D0;
}

.wc-page-documents.others .table tbody tr:hover {
  box-shadow: 0 2.5px 5px 0 rgba(151,10,1,0.3);
}

.wc-page-documents a {
  color: #000;
}

.wc-page-documents a:hover {
  text-decoration: none;
}

.wc-page-documents.meeting a:hover {
  color: rgb(1,79,150);
}

.wc-page-documents.workshop a:hover {
  color: rgb(212,176,19);
}

.wc-page-documents.others a:hover {
  color: rgb(151,10,1);
}

.download-zip {
  cursor: pointer;
}

.wc-public > .card {
  margin-bottom: 15px;
  border: 0;
}

.wc-public > .card > .card-header {
  border: 0;
  padding: 15px 30px;
  cursor: pointer;
  background-color: #0060A7;
  color: #fff;
  transition: all .3s ease-in-out;
}

.wc-public > .card > .card-header.collapsed {
  background-color: #f7f7f7;
  color: #000;
}

.wc-public > .card > .card-header.collapsed:hover > h5 {
  color: #155AA2;
}

.wc-public > .card > .card-header > h5 {
  font-size: 13px;
  font-weight: 400;
}

.wc-public > .card .card-body {
  padding: 0;
}

.wc-public-sub > .card {
  border: 0;
  border-bottom: 1px solid #c8c8c8;
  width: 88%;
  margin: auto 22px auto auto;
}

.wc-public-sub > .card > .card-header {
  background-color: transparent;
  background-image: url('assets/img/icons/chevron-active.svg');
  background-position: center right;
  background-repeat: no-repeat;
  border: 0;
  padding: 15px 0;
  cursor: pointer;
}

.wc-public-sub > .card > .card-header.collapsed {
  background-image: url('assets/img/icons/chevron-inactive.svg');
}

.wc-public-sub > .card > .card-header > h5 {
  font-size: 15px;
  font-weight: 400;
  color: #155AA2;
  opacity: 1;
}

.wc-public-sub > .card > .card-header.collapsed > h5 {
  opacity: 0.5;
}

.wc-public-sub > .card .card-body {
  font-size: 13px;
}

.wc-public-list {
  list-style: none;
}

.wc-public-list > .wc-public-list__item {
  font-size: 13px;
  margin-bottom: 15px;
  cursor: pointer;
  color: #155AA2;
}

.wc-public-list > .wc-public-list__item.collapsed {
  color: #000;
}

.wc-public-list > .wc-public-list__item:hover {
  color: #155AA2;
}

.wc-public-docs h5 {
  cursor: pointer;
}

/*--------------------------------------------------------------------------------------------------------- */


.afcwp-social-buttons {
  /* float: left; */
  padding: 10px 15px 5px;
  background: #f3f3f3;
  margin-bottom: 12px;
}
.pd1__ {
  vertical-align: middle;
}
.afcwp-social-buttons td{
  background: #f5f5f5;
}

.afcwp-social-buttons a {
    background: #f5f5f5;
    border-radius: 4px;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    overflow: hidden;
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    border-top-color: #9d9d9d;
    border-bottom-color: #9d9d9d;
    border-left-color: #9d9d9d;
    border-right-color: #9d9d9d;     
}
  
.afcwp-social-buttons a:hover {
    background: #ddd;
    text-decoration: none;
}
  
.afcwp-social-buttons a:before {
    float: center;
    color: #9d9d9d;
    font-family: "Font Awesome 5 Brands";
    content: "\f099";
    padding: 10px 9px;
}
  
.afcwp-social-buttons .icon-fb:before {
    content: "\f09a";
}
.afcwp-social-buttons .icon-fb:after {
    content: "\f096";
}
  
.afcwp-social-buttons .icon-linkedin:before {
    content: "\f0d5";
}

.afcwp-social-buttons .icon-linkedin:before {
    content: "\f0e1";
}

.afcwp-social-buttons .icon-whatsapp:before {
    content: "\f232";
}
  
.afcwp-social-buttons a:hover:before {
    color: #000;
}

section.post-item .row .col-12 img {
  height: 150px;
  width: 220px;
  object-fit: contain;
}

section.post-item.mb-3 {
  background: #fff;
  border-bottom: solid 2px #dfe6ea;
  padding-bottom: 20px!important;
}

section.post-item.mb-3 .card {
  height: 100%;
  background: transparent;
  border: none;
}

section.post-item.mb-3 .card h1 {
  color: #333;
  font-size: 15px;
  margin-bottom: 0;
  letter-spacing: 1px;
  font-weight: bold;
}

section.post-item.mb-3 .card .span {
  position: absolute;
  right: 0;
  bottom: 0;
}

section.post-item.mb-3 .card small {
  position: absolute;
  left: 0;
  bottom: 0;
}

section.post-item.mb-3 .card p {
  font-size: 12px;
  line-height: normal;
  margin-top: 15px;
}

.post-item .entry-meta.clear {
  font-style: italic;
}
article img {
  width: 100%;
  /* height: 424px!important; */
  margin-bottom: 15px;
  /* object-fit: contain; */
}
.account-page-form .no-margin, .account-page-form div p {
  display:flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.account-page-form .no-margin > label, .account-page-form p > label{
  margin-right:10px;
  width: 150px;
}
.account-page-form .no-margin input,  .account-page-form p > input{
  background: #FFFFFF;
  border: 1px solid #ececec;
  box-shadow: none;
  width:300px;
  padding: 5px;
}
.lostpassword-submit button{
  color: #fff;
  background-color: #156895;
  border-color: #146189;
  border:0;
  padding:10px 20px;
  font-size: .9375rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
 
}
.footer-menu-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-menu-list li{
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-toggle-icon{
  border: 2px solid #155AA2;
}
.menu-toggle-icon span{
  background: #155AA2;
}
header{
  background: rgba(255, 255, 255, .2);
}
@media (min-width: 540px) {
 
}
@media (min-width: 720px) {
  .admin-bar header.site-header{
    margin-top: 32px;
  }
  .member-nav-container{
    width: auto;
  }
  .top-main-banner {
    height: auto;
  }
  #menu-main-menu{
    list-style: none;
    margin: 0;
    padding: 0;
   
  } 
  #menu-main-menu .menu-item a{
    padding: 36px 24px;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    display: inline-block; /* Essential for pseudo-element positioning */
    font-weight: 600;
    visibility: hidden;
    border-bottom: 2px solid transparent;
  }
  #menu-main-menu .menu-item a::before {
    content: attr(data-text); /* Get text from data-text attribute */
    visibility: visible;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap; /* Prevent wrapping */
    padding: 36px 24px;
  }
  #menu-main-menu .menu-item a:hover::before, #menu-main-menu .current-menu-item > a::before{
    font-weight: 600;
    color: var(--hover-color);
    border-bottom: 2px solid var(--hover-color);
  }

  .top-menu-container{
    flex:1 1 auto;
    border-bottom: 1px solid #E9E9E9;
  }
  .member-nav-button{
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 12px 24px;
    gap: 8px;
    font-weight: 600;
    background: transparent;
    
  }
  .member-nav-button svg path{
     fill: var(--text-color);
  }
  .member-nav-button:hover{
    color: var(--hover-color);
    border: 1px solid var(--hover-color);
    cursor: pointer;
    background: #F0F7FF !important;
  }
  .member-nav-button:hover svg path{
    fill: var(--hover-color);
  } 
  body{
    padding-top: 127px;
  }
  .content-container{
    flex-direction: row;
  }
  footer{
    padding:60px 0  0px;
  }
  .footer-container{
    flex-direction: row; 
    gap: 24px;
  }
  .footer-container > div{
    flex: 0 0  auto;
    max-width: auto;
  }
  .footer-left{
    order:0;
  }
  .footer-center{
    order:1;
  }
  .footer-right{
    order:2;
  }
  .img-cover{
    overflow: hidden;
    height: 200px;
  }
}
@media (min-width: 960px) {
  .logo-container{
    flex:0 0 230px;
  }
  .img-cover{
    overflow: hidden;
    height: 295px;
  }
  .footer-container{ 
    gap: 0px;
  }
}
@media (min-width: 1140px) {
 
}
@media ( max-width: 767.98px ) {
  .logo {
      margin: 0;
      padding: 0px 0; 
      display: inline-block;
  }
  .logo img {
      width: 100%;
  }
  nav.navbar.navbar-expand-lg button {
      position: absolute;
      top: -60px;
      right: 0;
  }
  nav.navbar.navbar-expand-lg button.navbar-toggler {
      background: #fff;
      border: solid 1px #3d8cbd;
      border-radius: 3px;
      padding: 10px 15px;
  }
  nav.navbar.navbar-expand-lg button i {
      color: #3d8cbd;
  }
  .navbar-nav .nav-item .nav-link {
    white-space: nowrap;
    padding: 6px 0;
  }
  .home-slider__item-img {
    height: 300px !important;
  }
  section.post-item.mb-3 {
    overflow: hidden;
  }
  section.post-item.mb-3 .card h1 {
    font-size: 16px;
  }
  section.post-item.mb-3 .card .entry-meta.clear{
    font-size: 10px;
  }
  section.post-item.mb-3 .card {
    padding: 1em 0;
  }
  .post-item .col-12.col-lg-4 {
      background: #000000;
      text-align: center;
  }
  ul.pagination {
      font-size: 12px;
  }
  ul.pagination img {
      height: 10px;
  }
  nav.d-flex.align-items-center.justify-content-center {
      margin-bottom: 15px;
  }
  .page-link {
      margin: 1px;
  }
  span.ml-2 .hidden-xs {
      display: none;
  }
  section.post-item .row .col-12 img {
      width: 100%;
  }
  article img {
    height: 224px!important;
    object-fit: contain;
  }
  .wc-public-sub > .card {
    width: 100%;
    margin: auto;
    padding: 0 5px;
  }
}

@media (max-width: 576px) {
  .footer img {
    max-height: 40px;
  }
  .gallery-images__item-img {
    height: 250px;
  }
  .gallery-thumbs__item-img {
    height: 50px;
  }
  .modal-gallery .modal-content .gallery-thumbs .slick-prev,
  .modal-gallery .modal-content .gallery-thumbs .slick-next {
    top: 0;
  }
  .wc-page-content {
    font-size: 12px;
  }
  .wc-page-category {
    font-size: 13px;
  }
  .wc-page-search-filter {
    padding: 10px 15px;
  }
  .wc-page-documents .table {
    min-width: 800px;
  }
  .wc-user-panel {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1140px) {
  nav.navbar.navbar-expand-lg button {
    background: #fff;
    border: solid 1px #3d8cbd;
    border-radius: 3px;
    padding: 10px 0;
    width: 45px;
    position: absolute;
    top: -60px;
    right: 0;
  }
  .logo{
    text-align: left;
    padding: 12px;
    background: rgba(255, 255, 255, .8);
    margin: 5px 0;
  }
  .navbar-nav .nav-item .nav-link {
    white-space: nowrap;
    padding: 6px 0;
  }
}

@media (min-width: 1141px){
  .navbar-nav .nav-item .nav-link {
    white-space: nowrap;
  }
}
 