/*****************************
*	SECTION TOPBAR
******************************/
/*****************************
*	NOTE background linear gradient
******************************/
.bg-linear-gradient-purple {
  background: #bd19a1;
  background: -moz-linear-gradient(left, #bd19a1 0, #712ca5 100%);
  background: -webkit-linear-gradient(left, #bd19a1 0, #712ca5 100%);
  background: linear-gradient(to right, #bd19a1 0, #712ca5 100%);
}
.bg-linear-gradient-blue {
  background-color: #007aff;
  background-image: linear-gradient(160deg,#007aff 0%,#5ac8fa 100%);
  color: rgba(255,255,255,.87);
}
.bg-linear-gradient-red {
  background-color: #34c759;
  background-image: linear-gradient(160deg,#ff3b30 0%,#ff6a87 100%);
  color: rgba(255,255,255,.87);
}

/*****************************
*	NOTE horizontal news ticker
******************************/
.ticker-wrapper-h {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  min-height: 40px;
}
.ticker-wrapper-h .heading {
  background: #fb2b28;
  background: -moz-linear-gradient(left, #da2724 0, #fb2b28 100%);
  background: -webkit-linear-gradient(left, #da2724 0, #fb2b28 100%);
  background: linear-gradient(to right, #da2724 0, #fb2b28 100%);
  font-size: 15px;
  text-transform: uppercase;
  padding: 1rem 0.625rem;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  z-index: 1000;
}
.ticker-wrapper-h .heading:after {
  content: "";
  position: absolute;
  top: 0;
  border-left: 20px solid #fb2b28;
  border-top: 30px solid transparent;
  border-bottom: 29px solid transparent;
}
.news-ticker-h {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  padding-left: 90%;
  z-index: 999;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: tic-h;
  animation-duration: 30s;
}
.news-ticker-h:hover {
  animation-play-state: paused;
}
.news-ticker-h li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  padding-left: 20px;
}
.news-ticker-h li a {
  font-weight: bold;
}
@keyframes tic-h {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@media (max-width: 575.98px) {
  .ticker-wrapper-h .heading {
    font-size: 13px;
    padding: 0.625rem;
  }
  .ticker-wrapper-h .heading::after {
    border-left: 20px solid #fb2b28;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
  .ticker-wrapper-h .news-ticker-h {
    font-size: 14px;
  }
}
/*****************************
*	NOTE vertical news ticker
******************************/
.ticker-wrapper-v {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  height: 40px;
  min-height: 40px;
  line-height: 1.5;
}
.ticker-wrapper-v .heading {
  background: #fb2b28;
  background: -moz-linear-gradient(left, #da2724 0, #fb2b28 100%);
  background: -webkit-linear-gradient(left, #da2724 0, #fb2b28 100%);
  background: linear-gradient(to right, #da2724 0, #fb2b28 100%);
  font-size: 15px;
  text-transform: uppercase;
  padding: 0.625rem;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  z-index: 1000;
}
.ticker-wrapper-v .heading:after {
  content: "";
  position: absolute;
  top: 0;
  border-left: 20px solid #fb2b28;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.news-ticker-v {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  z-index: 999;
  animation: tic-v 10s cubic-bezier(1, 0, 0.5, 0) infinite;
}
.news-ticker-v:hover {
  animation-play-state: paused;
}
.news-ticker-v li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  line-height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  padding-left: 20px;
}
.news-ticker-v li a {
  font-weight: bold;
}
@keyframes tic-v {
  0% {
    margin-top: 0;
  }
  20% {
    margin-top: -40px;
  }
  40% {
    margin-top: -80px;
  }
  60% {
    margin-top: -120px;
  }
  80% {
    margin-top: -160px;
  }
  100% {
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .ticker-wrapper-v .heading {
    font-size: 13px;
  }
  .ticker-wrapper-v .news-ticker-v {
    font-size: 14px;
  }
}
/*****************************
*	NOTE static news
******************************/
.block-wrapper-s {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: initial;
  padding: 0.5rem 1rem;
}
.block-wrapper-s > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
}
.block-wrapper-s .left-block,
.block-wrapper-s .right-block {
  -webkit-flex: 0 15%;
  -moz-flex: 0 15%;
  -ms-flex: 0 15%;
  flex: 0 15%;
  width: 15%;
}
.block-wrapper-s .middle-block {
  -webkit-flex: 0 70%;
  -moz-flex: 0 70%;
  -ms-flex: 0 70%;
  flex: 0 70%;
  width: 70%;
  text-align: center;
  position: relative;
  line-height: 2;
  font-weight: bold;
}
.block-wrapper-s .right-block {
  text-align: right;
}
.block-wrapper-s .heading {
  padding: 10px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  position: relative;
  background: #fb2b28;
  background: -moz-linear-gradient(left, #da2724 0, #fb2b28 100%);
  background: -webkit-linear-gradient(left, #da2724 0, #fb2b28 100%);
  background: linear-gradient(to right, #da2724 0, #fb2b28 100%);
  font-size: 15px;
  text-transform: uppercase;
  display: inline-block;
}
.block-wrapper-s .details-btn {
  border: 2px solid rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  text-align: left;
}
.block-wrapper-s .details-btn:hover {
  border-color: #fff;
}
.block-wrapper-s .white-label {
  background: #fff;
  color: #bd19a1;
  padding: 6px 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0 2px;
}
@media (max-width: 575.98px) {
  .block-wrapper-s .details-btn {
    letter-spacing: 0;
  }
  .block-wrapper-s .middle-block {
    line-height: 28px;
    padding: 0 10px;
  }
  .block-wrapper-s .white-label {
    padding: 4px 6px;
  }
}
@media (max-width: 767.98px) {
  .block-wrapper-s {
    font-size: 14px;
  }
  .block-wrapper-s .heading {
    font-size: 13px;
  }
  .block-wrapper-s .details-btn {
    font-size: 12px;
    padding: 10px 10px;
  }
}

/* bubbles */
.block-wrapper-s .bubbles > .particle {
  opacity: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  animation: bubbles 3s ease-in infinite;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
@-webkit-keyframes bubbles {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 0;
    transform: translate(0, -1000%);
  }
}
@keyframes bubbles {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 0;
    transform: translate(0, -1000%);
  }
}

/* particletext.bubbles */
.particletext.bubbles > span.particle:nth-child(1) {
  bottom: -75%;
  left: 9%;
  width: 5.5px;
  height: 5.5px;
  animation-delay: 0.4s;
}
.particletext.bubbles > span.particle:nth-child(2) {
  bottom: -66%;
  left: 80%;
  width: 4px;
  height: 4px;
  animation-delay: 1.8s;
}
.particletext.bubbles > span.particle:nth-child(3) {
  bottom: -68%;
  left: 11%;
  width: 6px;
  height: 6px;
  animation-delay: 2.2s;
}
.particletext.bubbles > span.particle:nth-child(4) {
  bottom: -89%;
  left: 23%;
  width: 5.1px;
  height: 5.1px;
  animation-delay: 1.2s;
}
.particletext.bubbles > span.particle:nth-child(5) {
  bottom: -63%;
  left: 81%;
  width: 4.8px;
  height: 4.8px;
  animation-delay: 0.9s;
}
.particletext.bubbles > span.particle:nth-child(6) {
  bottom: -55%;
  left: 65%;
  width: 4.4px;
  height: 4.4px;
  animation-delay: 0.7s;
}
.particletext.bubbles > span.particle:nth-child(7) {
  bottom: -48%;
  left: 25%;
  width: 6.2px;
  height: 6.2px;
  animation-delay: 1.3s;
}
.particletext.bubbles > span.particle:nth-child(8) {
  bottom: -82%;
  left: 15%;
  width: 4.4px;
  height: 4.4px;
  animation-delay: 0.5s;
}
.particletext.bubbles > span.particle:nth-child(9) {
  bottom: -95%;
  left: 68%;
  width: 6.7px;
  height: 6.7px;
  animation-delay: 1.4s;
}
.particletext.bubbles > span.particle:nth-child(10) {
  bottom: -58%;
  left: 56%;
  width: 5.3px;
  height: 5.3px;
  animation-delay: 2.8s;
}
.particletext.bubbles > span.particle:nth-child(11) {
  bottom: -68%;
  left: 49%;
  width: 6.3px;
  height: 6.3px;
  animation-delay: 2.9s;
}
.particletext.bubbles > span.particle:nth-child(12) {
  bottom: -84%;
  left: 35%;
  width: 4.1px;
  height: 4.1px;
  animation-delay: 1.7s;
}
.particletext.bubbles > span.particle:nth-child(13) {
  bottom: -84%;
  left: 69%;
  width: 5.6px;
  height: 5.6px;
  animation-delay: 2.9s;
}
.particletext.bubbles > span.particle:nth-child(14) {
  bottom: -50%;
  left: 9%;
  width: 5.8px;
  height: 5.8px;
  animation-delay: 2.8s;
}
.particletext.bubbles > span.particle:nth-child(15) {
  bottom: -98%;
  left: 28%;
  width: 4.9px;
  height: 4.9px;
  animation-delay: 1.6s;
}
.particletext.bubbles > span.particle:nth-child(16) {
  bottom: -66%;
  left: 80%;
  width: 4.4px;
  height: 4.4px;
  animation-delay: 1s;
}
.particletext.bubbles > span.particle:nth-child(17) {
  bottom: -72%;
  left: 47%;
  width: 4.2px;
  height: 4.2px;
  animation-delay: 2.7s;
}
.particletext.bubbles > span.particle:nth-child(18) {
  bottom: -87%;
  left: 41%;
  width: 5px;
  height: 5px;
  animation-delay: 0.6s;
}
.particletext.bubbles > span.particle:nth-child(19) {
  bottom: -92%;
  left: 59%;
  width: 6.7px;
  height: 6.7px;
  animation-delay: 0.4s;
}
.particletext.bubbles > span.particle:nth-child(20) {
  bottom: -60%;
  left: 52%;
  width: 4.9px;
  height: 4.9px;
  animation-delay: 2.3s;
}
.particletext.bubbles > span.particle:nth-child(21) {
  bottom: -86%;
  left: 44%;
  width: 5.2px;
  height: 5.2px;
  animation-delay: 1.8s;
}
.particletext.bubbles > span.particle:nth-child(22) {
  bottom: -71%;
  left: 84%;
  width: 4.4px;
  height: 4.4px;
  animation-delay: 1.8s;
}
.particletext.bubbles > span.particle:nth-child(23) {
  bottom: -78%;
  left: 76%;
  width: 4.5px;
  height: 4.5px;
  animation-delay: 1.7s;
}
/*****************************
*	END SECTION TOPBAR
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION HEADER
******************************/
/* NOTE Background Header */
.t4-header.t4-sticky {
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}
.not-at-top .t4-header.t4-sticky {
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px);
  -webkit-transition: top 200ms;
  -o-transition: top 200ms;
  transition: top 200ms;
}
/* NOTE Fix Sticky HEADER */
@media (max-width: 575.98px) {
  .t4-header.t4-sticky {
    position: sticky !important;
    top: 0px !important;
    width: 100% !important;
  }
}
/* NOTE Header Section Inner */
.t4-header.t4-sticky .t4-section-inner {
  padding-left: 0;
  padding-right: 0;
}

/* Megamenu */
.t4-megamenu,
.t4-megamenu .dropdown-menu,
.t4-megamenu .dropdown-item,
.t4-megamenu .navbar-nav > li > a,
.t4-megamenu .navbar-nav > li > .nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
}
.t4-megamenu .t4-module .module-title,
.t4-megamenu .mega-col-nav .mega-col-title,
.t4-megamenu .mega-col-module .mega-col-title {
  border-bottom: 1px solid #adb5bd;
  font-weight: 700;
}
.nav-breakpoint-lg .t4-megamenu .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 991.98px) {
  .nav-breakpoint-lg .t4-megamenu {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .dropdown-menu.mega-dropdown-menu.show,
  .dropdown-menu.level1.show {
    background-color: transparent;
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
  }
}
.t4-megamenu .mega-col-module .mega-col-title,
.t4-megamenu .mega-col-module .custom,
.t4-megamenu .mega-col-module .navbar li.nav-item a,
.t4-megamenu .mega-col-nav .mega-col-title,
.t4-megamenu .dropdown-menu li > a,
.t4-megamenu .dropdown-menu li > .nav-link,
.t4-megamenu .dropdown-menu li .dropdown-item {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.t4-megamenu .dropdown-menu a:hover,
.t4-megamenu .dropdown-menu a:focus,
.t4-megamenu .dropdown-menu a:active,
.t4-megamenu .navbar li.nav-item a:hover,
.t4-megamenu .navbar li.nav-item a:focus,
.t4-megamenu .navbar li.nav-item a:active {
  background-color: rgba(242, 242, 247, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
}
@media (max-width: 767.98px) {
  .nav-breakpoint-lg .t4-megamenu {
    margin-top: 8px !important;
  }
}
@media (max-width: 991.98px) {
  .nav-breakpoint-lg .t4-megamenu {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .t4-megamenu .navbar-nav > li > a,
  .t4-megamenu .navbar-nav > li > .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
.navbar-nav .nav-link.btn.btn-primary {
  padding: 20px 1rem !important;
  border-radius: 0px;
}

/* Caret Mega Menu */
.t4-megamenu .nav > .dropdown > .dropdown-toggle .item-caret {
  display: inline-block;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-left: 0.25rem;
  vertical-align: middle;
  font-style: normal;
}
.t4-megamenu .nav > .dropdown > .dropdown-toggle .item-caret::before {
  display: inline-block;
  content: "\f107";
  font-family: FontAwesome;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: rotate(0);
}
.t4-megamenu .nav > .dropdown.show > .dropdown-toggle .item-caret::before {
  transform: rotate(-180deg);
}
/*****************************
*	END SECTION HEADER
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION OFF-CANVAS
******************************/

/* User Account */
.t4-offcanvas .t4-off-canvas-body .btn-in-out .navbar .nav-item {
  padding-left: 0;
  padding-right: 0;
}

/* Search */
#Mod298 .form-control,
#Mod298 .input-group-append .btn {
  font-size: 0.9375rem;
}

/* Login Module */
.greeting-only .login-greeting {
  font-weight: 700;
  text-align: center;
}
.greeting-only ul.unstyled {
  text-align: center;
}
.greeting-only .logout-button {
  display: none;
}

.t4-offcanvas .t4-off-canvas-body .navbar .btn.nav-link,
.t4-offcanvas .t4-off-canvas-body .navbar .btn.nav-link {
  color: #ffffff;
}
.t4-offcanvas .t4-off-canvas-body .navbar .btn:hover,
.t4-offcanvas .t4-off-canvas-body .navbar .btn:active,
.t4-offcanvas .t4-off-canvas-body .navbar .btn:focus {
  color: var(--body-text-color) !important;
}

/*****************************
*	END SECTION OFF-CANVAS
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION HORIZONTAL SUB MENU
******************************/

/* Background Horizontal Sub Menu  */
.t4-horizontal-sub-menu.t4-sticky {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}
.not-at-top .t4-horizontal-sub-menu.t4-sticky {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
  -webkit-transition: top 200ms;
  -o-transition: top 200ms;
  transition: top 200ms;
}

/* NOTE Fix Sticky Horizontal Sub Menu */
@media (max-width: 575.98px) {
  .t4-header.t4-sticky ~ .t4-horizontal-sub-menu.t4-sticky {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 56px !important;
  }
}

.t4-horizontal-sub-menu .navbar {
  padding: 0;
  height: 40px;
  margin-left: calc(var(--global-spacing) * -2);
  margin-right: calc(var(--global-spacing) * -2);
  overflow: hidden;
}

.scroll {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  position: relative;
}

/* Hide Scrollbar */
/* Hide scrollbar for Chrome, Safari and Opera */
.scroll::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scroll {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.scroll li.nav-item .nav-link,
.scroll li.nav-item .dropdown-item {
  display: flex;
  padding: 0 1rem;
  position: relative;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 40px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  clear: both;
  width: 100%;
}
.t4-palette-_horizontal_sub_menu .nav > li a:hover,
.t4-palette-_horizontal_sub_menu .nav > li a:focus,
.t4-palette-_horizontal_sub_menu .nav > li a:active,
.t4-palette-_horizontal_sub_menu .nav > li .nav-link:hover,
.t4-palette-_horizontal_sub_menu .nav > li .nav-link:focus,
.t4-palette-_horizontal_sub_menu .nav > li .nav-link:active {
  background-color: rgba(0, 0, 0, 0.04);
  border: 0;
  border-radius: 5px 5px 0 0;
  outline: 0;
  color: var(--mainnav-link-active-color);
}
.t4-palette-_horizontal_sub_menu .nav > li.active > a,
.t4-palette-_horizontal_sub_menu
  .nav
  > li.active
  > a.nav-link
  .t4-palette-_horizontal_sub_menu
  .nav
  > li.active:hover
  > a,
.t4-palette-_horizontal_sub_menu .nav > li.active:hover > a.nav-link {
  color: var(--mainnav-link-active-color);
  background-color: transparent;
}
.t4-palette-_horizontal_sub_menu .nav > li.active > a::before,
.t4-palette-_horizontal_sub_menu
  .nav
  > li.active
  > a.nav-link
  .t4-palette-_horizontal_sub_menu
  .nav
  > li.active:hover
  > a::before,
.t4-palette-_horizontal_sub_menu .nav > li.active:hover > a.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: calc(100% - 20px);
  height: 1px;
  background: var(--mainnav-link-active-color);
  background-color: var(--mainnav-link-active-color);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  z-index: 1;
}
.t4-palette-_horizontal_sub_menu .nav > li.active > a::before,
.t4-palette-_horizontal_sub_menu
  .nav
  > li.active
  > a.nav-link
  .t4-palette-_horizontal_sub_menu
  .nav
  > li.active:hover
  > a::before,
.t4-palette-_horizontal_sub_menu .nav > li.active:hover > a.nav-link::before {
  background: var(--mainnav-link-active-color);
  background-color: var(--mainnav-link-active-color);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}
/*****************************
*	END SECTION HORIZONTAL SUB MENU
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION CAROUSEL
******************************/

/*****************************
*	END SECTION CAROUSEL
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION MASTHEAD
******************************/

/* Background Masthead*/
.home-masthead {
  background-color: #f9f9fc;
  /* background-image:url(../../images/bg-gradient-1.svg); */
  background-image: url("http://localhost/gkigs-main-webapp-restore/images/asset/bg-gradient-1.svg#joomlaImage://local-images/asset/bg-gradient-1.svg?width=0&height=0");
  background-size: cover;
  background-repeat: no-repeat;
}

/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .home-masthead {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .home-masthead {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .home-masthead {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .home-masthead {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .home-masthead {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .home-masthead {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Masthead Style */
@media (max-width: 1199px) {
  .home-masthead {
    text-align: center;
  }
}
.home-masthead h1 {
  margin-bottom: 26px;
}
.home-masthead h1 strong {
  color: #007aff;
}
.home-masthead p {
  font-size: 20px;
  line-height: 1.6;
}

.home-masthead .cta-btns {
  margin-top: 26px;
  display: inline-block;
  text-align: center;
}
.home-masthead .cta-btns .btn {
  color: #fff !important;
  background: #007aff;
  padding: 17.33333333px 26px;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.home-masthead .cta-btns .btn:hover,
.home-masthead .cta-btns .btn:active,
.home-masthead .cta-btns .btn:focus {
  background: #0053ad;
}
@media (min-width: 1199px) {
  .home-masthead .cta-btns .btn {
    padding: 17.33333333px 39px;
  }
}
.home-masthead .cta-btns p {
  color: #8e8e93;
  font-size: 12px;
  margin-top: 13px;
}
@media (max-width: 1199px) {
  .masthead-ct {
    margin-bottom: 52px;
  }
}
@media (max-width: 991px) {
  .masthead-media {
    margin-top: 26px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .masthead-media {
    padding-left: 52px;
  }
}
.masthead-media img {
  max-width: 100%;
}
.masthead-media #thumb-wrapper {
  height: 200px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .masthead-media #thumb-wrapper {
    height: 400px;
  }
}
@media screen and (min-width: 992px) {
  .masthead-media #thumb-wrapper {
    height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .masthead-media #thumb-wrapper {
    height: 400px;
  }
}
.masthead-media .parallax {
  background-color: #fff;
  display: block;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.01), 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.masthead-media .parallax img {
  width: 100%;
}
.masthead-media #tpl-thumb-main {
  border-radius: 7px;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 5%;
  z-index: 12;
}
.masthead-media #tpl-thumb-1 {
  top: 0;
  height: auto;
  left: 0;
  opacity: 0.7;
  width: 25%;
  z-index: 10;
}
.masthead-media #tpl-thumb-2 {
  max-height: 35%;
  right: 5%;
  top: 13px;
  opacity: 0.6;
  width: 30%;
  z-index: 10;
}
.masthead-media #tpl-thumb-3 {
  right: 0;
  bottom: -5%;
  opacity: 0.4;
  width: 40%;
  z-index: 10;
}
.masthead-media #shape {
  background: 0 0;
  border-radius: 0;
  box-shadow: none;
  left: 5%;
  bottom: 2%;
  width: 20%;
}
@media (min-width: 992px) {
  .scrollDown .masthead-media #tpl-thumb-main img {
    opacity: 0.8;
  }
  .scrollDown .masthead-media #tpl-thumb-1 {
    left: 30px;
    top: 10px;
  }
  .scrollDown .masthead-media #tpl-thumb-2 {
    top: 20px;
    right: 50px;
  }
  .scrollDown .masthead-media #tpl-thumb-3 {
    bottom: 0;
    right: 10px;
  }
}

/*****************************
*	END SECTION MASTHEAD
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION MAIN BODY
******************************/

/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .t4-main-body {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .t4-main-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .t4-main-body {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .t4-main-body {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .t4-main-body {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .t4-main-body {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/*****************************
*	END SECTION MAIN BODY
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION MAIN CATEGORIES
******************************/
/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .t4-main-categories {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .t4-main-categories {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .t4-main-categories {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .t4-main-categories {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .t4-main-categories {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .t4-main-categories {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/*****************************
*	END SECTION MAIN CATEGORIES
******************************/

/* ************************************************************************* */

/*****************************
*	SECTION BREADCRUMB
******************************/
.t4-main-body .breadcrumb {
  font-weight: var(--body-font-weight);
  font-size: 0.75rem !important;
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .t4-main-body .breadcrumb {
    font-size: 0.875rem !important;
  }
}

/*****************************
*	END SECTION BREADCRUMB
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION FOOTNAV
******************************/
/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .t4-footnav .container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .t4-footnav .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .t4-footnav .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .t4-footnav .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .t4-footnav .container {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .t4-footnav .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.t4-footnav .nav-link,
.t4-footnav .dropdown-item {
  font-size: 0.9375rem;
  font-weight: 400;
}
.t4-footnav .dropdown-item,
.t4-footnav .dropdown-item:hover,
.t4-footnav .dropdown-item:active,
.t4-footnav .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0);
}

/* NOTE FOOTNAV -> MOBILE FOOTER MENU */
.t4-footnav .mobile-footer-menu .navbar {
  padding-left: 0px;
  padding-right: 0px;
}
.t4-footnav .mobile-footer-menu .nav-link,
.t4-footnav .mobile-footer-menu .dropdown-item {
  padding: 0.5rem;
  display: inline-block;
}
.t4-footnav .mobile-footer-menu .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.t4-footnav .mobile-footer-menu .navbar-nav > li::before {
  content: "";
}
.t4-footnav .mobile-footer-menu .navbar-nav > li::after {
  content: "|";
  color: #adb5bd;
  font-weight: 400;
}
.t4-footnav .mobile-footer-menu .navbar-nav > li:last-child::after {
  content: "";
}
/*****************************
*	END SECTION FOOTNAV
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION FOOTER
******************************/

/*****************************
*	END SECTION FOOTER
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION COPYRIGHT INFORMATION
******************************/

/*****************************
*	END SECTION COPYRIGHT INFORMATION
******************************/
/* ************************************************************************* */

/*****************************
*	END MAIN BODY BACKGROUND
******************************/
.main-body-bg-one {
  background-image: linear-gradient(
      180deg,
      rgba(var(--t4-body-bg-rgb), 0.01),
      rgba(var(--t4-body-bg-rgb), 1) 85%
    ),
    radial-gradient(ellipse at top left, rgba(var(--t4-primary-rgb), 0.5), transparent 50%),
    radial-gradient(ellipse at top right, rgba(var(--t4-success-rgb), 0.5), transparent 50%),
    radial-gradient(ellipse at center right, rgba(var(--t4-warning-rgb), 0.5), transparent 50%),
    radial-gradient(ellipse at center left, rgba(var(--t4-danger-rgb), 0.5), transparent 50%);
}
/*****************************
*	END TYPOGRAPHY MAIN BODY BACKGROUND
******************************/
/* ************************************************************************* */

/*****************************
*	NOTE OSMAP
******************************/
.osmap-items ul {
  list-style-type: none;
  padding-left: 0px;
  font-weight: 700;
}
.osmap-items ul .level_1 {
  list-style-type: square;
  padding-left: 3rem;
  font-weight: 400;
}
.osmap-items ul .level_2 {
  list-style-type: square;
  padding-left: 2rem;
  font-weight: 400;
}
/*****************************
*	END OSMAP
******************************/
/* ************************************************************************* */

/*****************************
*	TYPOGRAPHY STYLE ONE
******************************/
@media (max-width: 1199px) {
  .s-one-title {
    text-align: center;
  }
}
h1.s-one {
  margin-bottom: 26px;
  font-weight: 400;
}
h1.s-one strong {
  color: var(--t4-primary);
}
p.s-one {
  font-size: 20px;
  line-height: 1.6;
}
.s-one-ct .accordion-body {
  font-size: inherit;
  line-height: inherit;
}
@media (max-width: 1199.98px) {
  .s-one-title {
    margin-bottom: 52px;
  }
}
@media (max-width: 991.98px) {
  .s-one-ct {
    margin-top: 26px;
  }
}
@media (min-width: 1199.98px) {
  .s-one-ct {
    padding-left: 52px;
  }
}
/*****************************
*	END TYPOGRAPHY STYLE ONE
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION LNE 
******************************/
/*****************************
*	NOTE LNE GENERAL SETTING
******************************/
/* Head -> Space Around */
.newshead {
  padding: 0.625rem;
}
/* Head: Image */
.newshead .picture,
.newshead .nopicture {
  border: 1px solid #e3e2e3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
/* Body -> Space Around */
.newsinfo,
.text_bottom .newsinfooverhead {
  padding: 10px 0 10px 10px !important;
  border-bottom: 1px solid #e3e2e3;
}
.newstitle {
  font-weight: 300 !important;
  font-size: calc(1.2rem + 0.6vw);
}

/* Information  */
.newsextra {
  text-transform: uppercase;
  font-size: 0.75em;
  color: #666;
}
.newsextra .delimiter,
.newsextra .detail_data {
  font-family: var(--t4-body-font-family);
}
.newsextra .detail_category a:not(.btn) {
  color: #fd7e14;
}
.newsextra .detail_category a:not(.btn):hover,
.newsextra .detail_category a:not(.btn):focus {
  color: #fd7e14;
}
.newsextra .detail_date.fa.fa-calendar::before,
.newsextra .detail_hits.fa.fa-eye::before {
  padding-right: 0.25rem;
  color: #666;
}

.lnee .onecatlink.last,
.lnee .readalllink.last {
  margin-top: 10px;
}

/* Pagination */
.items_pagination.top,
.items_pagination.up {
  margin-bottom: 1rem !important;
}
.items_pagination.bottom,
.items_pagination.down {
  margin-top: 1rem !important;
}
.ellipse.less.page-item span,
.ellipse.more.page-item span {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
/*****************************
*	END LNE GENERAL SETTING
******************************/

/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .innernews {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid #e3e2e3;
  }
  .newshead {
    padding: 0.5rem;
  }
  .newshead .picture,
  .newshead .nopicture,
  .newshead .picture img {
    overflow: hidden !important;
    text-align: center !important;
    position: relative !important;
    max-width: 133px !important;
    max-height: 100px !important;
    height: 100px !important;
    min-height: 100px !important;
  }
  .newsinfo,
  .text_bottom .newsinfooverhead {
    padding: 0.5rem 0.5rem 0.5rem 0 !important;
    border-bottom: none;
  }
  .newstitle {
    font-size: 1.125rem !important;
    font-weight: 400 !important;
  }
}

/*****************************
*	NOTE LNE -> applies to .lne-latest-main-categories
******************************/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .lne-latest-main-categories .innernews {
    border-bottom: 1px solid #e3e2e3;
    padding: 0.5rem 0;
  }
  .lne-latest-main-categories .newshead {
    padding: 0.5rem;
  }
  .lne-latest-main-categories .newshead .picture,
  .lne-latest-main-categories .newshead .nopicture,
  .lne-latest-main-categories .newshead .picture img {
    overflow: hidden;
    text-align: center;
    position: relative;
    max-width: 100px !important;
    max-height: 75px !important;
    height: 75px !important;
    min-height: 75px !important;
  }
  .lne-latest-main-categories .newsinfo,
  .lne-latest-main-categories .text_bottom .newsinfooverhead {
    padding: 0.5rem 0 0.5rem 0.5rem !important;
    border-bottom: none;
  }
  .lne-latest-main-categories .newstitle span,
  .lne-latest-main-categories .newstitle {
    font-size: 1rem !important;
    font-weight: 500;
  }
}
/*****************************
*	END LNE -> applies to .lne-latest-main-categories
******************************/

/*****************************
*	NOTE LNE -> applies to .sidebar-r
******************************/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .sidebar-r .innernews {
    border-bottom: 1px solid #e3e2e3;
    padding: 0.5rem 0;
  }
  .sidebar-r .newshead {
    padding: 0.5rem;
  }
  .sidebar-r .newshead .picture,
  .sidebar-r .newshead .nopicture,
  .sidebar-r .newshead .picture img {
    overflow: hidden;
    text-align: center;
    position: relative;
    max-width: 100px !important;
    max-height: 75px !important;
    height: 75px !important;
    min-height: 75px !important;
  }
  .sidebar-r .newsinfo,
  .sidebar-r .text_bottom .newsinfooverhead {
    padding: 0.5rem 0 0.5rem 0.5rem !important;
    border-bottom: none;
  }
  .sidebar-r .newstitle span,
  .sidebar-r .newstitle {
    font-size: 1rem !important;
    font-weight: 500;
  }
}
/*****************************
*	END LNE -> applies to .sidebar-r
******************************/

/*****************************
*	END Latest News Enhanced
******************************/
/* ************************************************************************* */

/*****************************
*	SOCIAL SET
******************************/
.social .fas.fa-square {
  color: var(--mainnav-link-color);
}
.social .facebook,
.social .youtube,
.social .twitter,
.social .whatsapp,
.social .instagram,
.social .telegram {
  color: #f9f9fc !important;
}
.social .facebook:hover,
.social .facebook:focus {
  background: #3b5998;
}
.social .youtube:hover,
.social .youtube:focus {
  background: #bb0000;
}
.social .twitter:hover,
.social .twitter:focus {
  background: #3a92c8;
}
.social .whatsapp:hover,
.social .whatsapp:focus {
  background: #25d366;
}
.social .instagram:hover,
.social .instagram:focus {
  background: #c32aa3;
}
.social .telegram:hover,
.social .telegram:focus {
  background: #0088cc;
}
.social .smallborderrad-transition:hover,
.social .smallborderrad-transition:focus {
  border-radius: var(--border-radius-md);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
/*****************************
*	END SOCIAL SET
******************************/
/* ************************************************************************* */

/*****************************
*	SECTION TYPOGRAPHY
******************************/
.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw);
}
.h2,
h2 {
  font-size: calc(1.325rem + 0.9vw);
}
.h3,
h3 {
  font-size: calc(1.3rem + 0.6vw);
}
.h4,
h4 {
  font-size: calc(1.275rem + 0.3vw);
}
.h5,
h5 {
  font-size: 1.25rem;
}
.h6,
h6 {
  font-size: 1rem;
}
/*****************************
*	END TYPOGRAPHY
******************************/
/* ************************************************************************* */

/*****************************
*	NOTE DEFAULT BOOTSTRAP BREAKPOINTS
******************************/
/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
/*****************************
*	END DEFAULT BOOTSTRAP BREAKPOINTS
******************************/
/* ************************************************************************* */

/*****************************
*	CUSTOM STYLE
******************************/

/* Carousel Full Width */
@media (min-width: 1400px) {
  .full-width {
    max-width: 1320px;
    height: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
  }
}
/* END Carousel Full Width */

/* CUSTOM STYLE */
legend {
  font-size: 1rem;
}

/* Small Title */
.module-title.small-title,
.small-title .module-title span {
  font-size: 0.875rem !important;
}

.articles-related,
.tags-similar {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.mostread li,
.latestnews li,
.relateditems li,
.tagssimilar li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mostread,
.latestnews,
.relateditems,
.tagssimilar {
  margin: 0;
  padding: 0;
}
.mostread li a,
.latestnews li a,
.relateditems li a,
.tagssimilar li a {
  display: block;
  padding: 0.25rem;
  padding-left: calc(1rem + 16px);
  position: relative;
}

.relateditems li a::before {
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  position: absolute;
  left: 0;
}
.tagssimilar li a::before {
  content: "";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  position: absolute;
  left: 0;
}

/* Social Inline Article */
.social-inline-article {
  margin-bottom: 1rem;
}

/* Pagenav */
.pagenav {
  margin: 1rem auto;
  padding: 0.5rem 0;
  text-align: center;
  display: flex;
}
.pagenav li:last-child {
  margin-left: auto;
}

/* Tags */
.tags > li > a {
  display: block;
  margin: 0.3333333333rem 0;
}
/* Category */
/* Image Category Blog */
.img-fluid.img-thumbnail.item-image,
.category-desc > img {
  margin: 0 0 1rem 0;
  padding: 0.25rem;
  max-width: 100%;
  height: auto;
  float: none;
}
/* Title Category Blog */
.com-content-category-blog.blog .page-subheader h1.page-subtitle {
  margin-top: 0;
}
/* Item */
.item-page .page-header h2,
.item-page .page-header .h2 {
  font-weight: 500;
}
.com-content-article.item-page .read-item {
  margin-top: 0 !important;
}

/* List All Categories in an Article Category Tree */
h3.module-title span {
  font-family: var(--heading-font-family);
}
h3.module-title span.icon-plus.icon-minus::before {
  display: none !important;
}
@media (min-width: 992px) {
  .categories-list .com-content-categories__items .com-content-categories__item {
    margin-bottom: 2rem;
  }
}
/* END List All Categories in an Article Category Tree */
/* ************************************************************************* */
