/*------------------------------------
  Text Highlight
------------------------------------*/

[class*="text-highlight-"] {
  background: left 1em/1em 0.2em;
}

/* primary text highlight */

.text-highlight-primary {
  background-image: linear-gradient(
    to bottom,
    rgba(55, 125, 255, 0.5) 0%,
    rgba(55, 125, 255, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* secondary text highlight */

.text-highlight-secondary {
  background-image: linear-gradient(
    to bottom,
    rgba(113, 134, 157, 0.5) 0%,
    rgba(113, 134, 157, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* success text highlight */

.text-highlight-success {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 201, 167, 0.5) 0%,
    rgba(0, 201, 167, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* info text highlight */

.text-highlight-info {
  background-image: linear-gradient(
    to bottom,
    rgba(9, 165, 190, 0.5) 0%,
    rgba(9, 165, 190, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* warning text highlight */

.text-highlight-warning {
  background-image: linear-gradient(
    to bottom,
    rgba(245, 202, 153, 0.5) 0%,
    rgba(245, 202, 153, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* danger text highlight */

.text-highlight-danger {
  background-image: linear-gradient(
    to bottom,
    rgba(237, 76, 120, 0.5) 0%,
    rgba(237, 76, 120, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* light text highlight */

.text-highlight-light {
  background-image: linear-gradient(
    to bottom,
    rgba(247, 250, 255, 0.5) 0%,
    rgba(247, 250, 255, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* dark text highlight */

.text-highlight-dark {
  background-image: linear-gradient(
    to bottom,
    rgba(33, 50, 91, 0.5) 0%,
    rgba(33, 50, 91, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/* indigo text highlight */

.text-highlight-indigo {
  background-image: linear-gradient(
    to bottom,
    rgba(45, 21, 130, 0.5) 0%,
    rgba(45, 21, 130, 0.5) 100%
  );
  background-repeat: repeat-x;
}

/*------------------------------------
  Whatsapp floating-wpp.css 
------------------------------------*/

.floating-wpp {
  position: fixed;
  bottom: 15px;
  left: 15px;
  font-size: 14px;
  transition: bottom 0.2s;
}

.floating-wpp .floating-wpp-button {
  position: relative;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
  transition: box-shadow 0.2s;
  cursor: pointer;
  overflow: hidden;
}

.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
}

.floating-wpp:hover {
  bottom: 17px;
}

.floating-wpp:hover .floating-wpp-button {
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}

.floating-wpp .floating-wpp-popup {
  /*border: 2px solid white;*/
  border-radius: 6px;
  background-color: #e5ddd5;
  position: absolute;
  overflow: hidden;
  padding: 0;
  box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
  width: 0px;
  height: 0px;
  bottom: 0;
  opacity: 0;
  transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
  transform-origin: bottom;
}

.floating-wpp .floating-wpp-popup.active {
  padding: 0 12px 12px 12px;
  width: 260px;
  height: auto;
  bottom: 82px;
  opacity: 1;
}

.floating-wpp .floating-wpp-popup .floating-wpp-message {
  background-color: white;
  padding: 8px;
  border-radius: 0px 5px 5px 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
  opacity: 1;
  transition-delay: 0.2s;
}

.floating-wpp .floating-wpp-popup .floating-wpp-head {
  text-align: right;
  color: white;
  margin: 0 -15px 10px -15px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.floating-wpp .floating-wpp-input-message {
  background-color: white;
  margin: 10px -15px -15px -15px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.floating-wpp .floating-wpp-input-message textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  padding: 8px;
  margin: 10px 0;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  font-size: inherit;
  resize: none;
}

.floating-wpp .floating-wpp-btn-send {
  margin-left: 12px;
  font-size: 0;
  cursor: pointer;
}

/* light air */
.btn-soft-light-1 {
  color: #f8f9fa;
  background: rgba(248, 249, 250, 0.1);
  border-color: transparent;
}

.btn-soft-light-1[href]:hover,
.btn-soft-light-1[href]:focus,
.btn-soft-light-1[href]:active,
.btn-soft-light-1[href].active,
.btn-soft-light-1[type]:hover,
.btn-soft-light-1[type]:focus,
.btn-soft-light-1[type]:active,
.btn-soft-light-1[type].active {
  color: #f8f9fa;
  background: #f8f9fa;
  box-shadow: 0 4px 11px rgba(248, 249, 250, 0.35);
}

.btn-soft-light-1[href].disabled,
.btn-soft-light-1[href]:disabled,
.btn-soft-light-1[type].disabled,
.btn-soft-light-1[type]:disabled {
  color: #f8f9fa;
  background-color: rgba(248, 249, 250, 0.1);
  box-shadow: none;
}

.btn-soft-light-1[href]:not(:disabled):not(.disabled):active,
.btn-soft-light-1[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-light-1[href].dropdown-toggle,
.btn-soft-light-1[type]:not(:disabled):not(.disabled):active,
.btn-soft-light-1[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-light-1[type].dropdown-toggle {
  color: #f8f9fa;
  background-color: #f8f9fa;
}

.btn.btn-soft-light-1 {
  color: #f8f9fa;
}

/*------------------------------------
    Typography Font Size
  ------------------------------------*/

  .font-size-h {
    font-size: 1rem;
}

.font-size-mh {
    font-size: 1.2rem;
}


/*------------------------------------
    Promo
  ------------------------------------*/

/* Promo */
.u-header1__promo {
  background-color: #f8fafd;
}

.u-header1__promo-inner {
  padding: 0.5rem;
}

.u-header1__promo-item {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.u-header1__promo-item ~ .u-header1__promo-item {
  border-top: 1px solid #e7eaf3;
}

.u-header1__promo-link {
  display: block;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}

.u-header1__promo-link:hover .u-header1__promo-title {
  color: #377dff;
}

.u-header1__promo-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
}

.u-header1__promo-card-deck {
  display: block;
}

.u-header1__promo-card-deck:not(:last-child) .u-header1__promo-item {
  border-bottom: 1px solid #e7eaf3;
}

.u-header1__promo-card-deck .u-header1__promo-item {
  border-top: none;
}

.u-header1__promo-card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.u-header1__promo-icon {
  width: 100%;
  max-width: 0.7rem;
  margin-right: 0.5rem;
}

.u-header1__promo-icon--sm {
  max-width: 0.35rem;
}

.u-header1__promo-title {
  display: block;
  color: #1e2022;
  font-size: 0.2rem;
  font-weight: 500;
}

.u-header1__promo-text {
  display: block;
  color: #77838f;
}

.u-header1__promo-footer {
  background-color: #f8fafd;
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.u-header1__promo-footer-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.u-header1__promo-footer-ver-divider {
  position: relative;
}

.u-header1__promo-footer-ver-divider::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 1px solid #bdc5d1;
  content: "";
}


/*------------------------------------
    Promo 2
  ------------------------------------*/

/* Promo */
.u-header2__promo {
  background-color: #f8fafd;
}

.u-header2__promo-inner {
  padding: 0.7rem;
}

.u-header2__promo-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.u-header2__promo-item ~ .u-header2__promo-item {
  border-top: 1px solid #e7eaf3;
}

.u-header2__promo-link {
  display: block;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}

.u-header2__promo-link:hover .u-header2__promo-title {
  color: #377dff;
}

.u-header2__promo-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
}

.u-header2__promo-card-deck {
  display: block;
}

.u-header2__promo-card-deck:not(:last-child) .u-header2__promo-item {
  border-bottom: 1px solid #e7eaf3;
}

.u-header2__promo-card-deck .u-header2__promo-item {
  border-top: none;
}

.u-header2__promo-card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.u-header2__promo-icon {
  width: 100%;
  max-width: 0.7rem;
  margin-right: 0.5rem;
}

.u-header2__promo-icon--sm {
  max-width: 0.35rem;
}

.u-header2__promo-title {
  display: block;
  color: #1e2022;
  font-size: 0.2rem;
  font-weight: 500;
}

.u-header2__promo-text {
  display: block;
  color: #77838f;
}

.u-header2__promo-footer {
  background-color: #f8fafd;
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.u-header2__promo-footer-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.u-header2__promo-footer-ver-divider {
  position: relative;
}

.u-header2__promo-footer-ver-divider::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 1px solid #bdc5d1;
  content: "";
}



/*------------------------------------
  modall.css 
------------------------------------*/

.modall {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modall-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modall.fade .modall-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modall.fade .modall-dialog {
    transition: none;
  }
}

.modall.show .modall-dialog {
  -webkit-transform: none;
          transform: none;
}

.modall.modall-static .modall-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modall-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modall-dialog-scrollable .modall-content {
  max-height: 100%;
  overflow: hidden;
}

.modall-dialog-scrollable .modall-body {
  overflow-y: auto;
}

.modall-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: calc(100% - 1rem);
}

.modall-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.0625rem solid transparent;
  border-radius: 0.75rem;
  outline: 0;
}

.modall-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: rgba(33, 50, 91, 0.25);
}

.modall-backdrop.fade {
  opacity: 0;
}

.modall-backdrop.show {
  opacity: 1;
}

.modall-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 0 solid rgba(33, 50, 91, 0.1);
  border-top-left-radius: 0.6875rem;
  border-top-right-radius: 0.6875rem;
}

.modall-header .btn-close {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem -0.5rem auto;
}

.modall-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modall-body {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 2rem;
}

.modall-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 1.75rem;
  border-top: 0.0625rem solid rgba(33, 50, 91, 0.1);
  border-bottom-right-radius: 0.6875rem;
  border-bottom-left-radius: 0.6875rem;
}

.modall-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modall-dialog {
    max-width: 550px;
    margin: 1.75rem auto;
  }
  .modall-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modall-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modall-sm {
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  .modall-lg,
  .modall-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modall-xl {
    max-width: 1140px;
  }
}

.modall-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modall-fullscreen .modall-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modall-fullscreen .modall-header {
  border-radius: 0;
}

.modall-fullscreen .modall-body {
  overflow-y: auto;
}

.modall-fullscreen .modall-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modall-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modall-fullscreen-sm-down .modall-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modall-fullscreen-sm-down .modall-header {
    border-radius: 0;
  }
  .modall-fullscreen-sm-down .modall-body {
    overflow-y: auto;
  }
  .modall-fullscreen-sm-down .modall-footer {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .modall-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modall-fullscreen-md-down .modall-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modall-fullscreen-md-down .modall-header {
    border-radius: 0;
  }
  .modall-fullscreen-md-down .modall-body {
    overflow-y: auto;
  }
  .modall-fullscreen-md-down .modall-footer {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .modall-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modall-fullscreen-lg-down .modall-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modall-fullscreen-lg-down .modall-header {
    border-radius: 0;
  }
  .modall-fullscreen-lg-down .modall-body {
    overflow-y: auto;
  }
  .modall-fullscreen-lg-down .modall-footer {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .modall-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modall-fullscreen-xl-down .modall-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modall-fullscreen-xl-down .modall-header {
    border-radius: 0;
  }
  .modall-fullscreen-xl-down .modall-body {
    overflow-y: auto;
  }
  .modall-fullscreen-xl-down .modall-footer {
    border-radius: 0;
  }
}

@media (max-width: 1399.98px) {
  .modall-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modall-fullscreen-xxl-down .modall-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modall-fullscreen-xxl-down .modall-header {
    border-radius: 0;
  }
  .modall-fullscreen-xxl-down .modall-body {
    overflow-y: auto;
  }
  .modall-fullscreen-xxl-down .modall-footer {
    border-radius: 0;
  }
}


/*------------------------------------
  modall
------------------------------------*/
.modall-header {
  -ms-flex-align: center;
      align-items: center;
  padding-bottom: 0;
}

.modall-header .close {
  padding: 0.25rem 0.25rem;
  margin: 0 0 0 auto;
}

.modall-footer {
  border-top-width: 0.0625rem;
}

.modall-footer > * {
  margin-top: 0;
  margin-bottom: 0;
}

.modall-footer-text:last-child {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.modall-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.modall-top-cover {
  position: relative;
  overflow: hidden;
  min-height: 8rem;
  border-top-right-radius: 0.6875rem;
  border-top-left-radius: 0.6875rem;
}

.modall-top-cover-avatar {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

/* Marquee */

/* a {
  color: #fff;
  text-decoration: none
}

body {
  height: 100vh;
  background: #3e3232;
  font-family: 'Poppins', sans-sherif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden
} */

.ticker {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  margin: 0 auto
}

.newsm {
  width: 100%;
  background: #0156ff;
  /* background: #377dff; */
  /* padding: 0 2% */
}

.titlem {
  width: 5%;
  text-align: center;
  background: #377dff;
  position: relative
}

.titlem:after {
  position: absolute;
  content: "";
  right: -10%;
  border-left: 20px solid #377dff;
  border-top: 28px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 21px solid transparent;
  top: 0px
}

.titlem h5 {
  font-size: 18px;
  margin: 8% 0
}

.newsm marquee {
  font-size: 18px;
  margin-top: 12px
}

.newsm-content p {
  margin-right: 10px;
  display: inline
}