@charset "UTF-8";
/* Use this vscode extension for complie SCSS to CSS
   Live Sass
   https://marketplace.cursorapi.com/items?itemName=ritwickdey.live-sass
*/
/* SCSS Variables */
/* Breakpoints */
/* ปรับขนาดให้รองรับ iPad ที่มีความกว้างหน้าจอ 1024px */
#svg-gradient {
  --color-stop: $secondary-color;
  --color-stop-2: $accent-color;
}

/* Mixins */
/* Reset & Base style */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans Thai", sans-serif;
  color: #222;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

a {
  text-decoration: none;
  color: #009de0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #0079ad;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  line-height: 1.2;
}

h2 {
  line-height: 1.2;
}

h3 {
  line-height: 1.2;
}

h4 {
  line-height: 1.2;
}

h5 {
  line-height: 1.2;
}

h6 {
  line-height: 1.2;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

ul {
  list-style: none;
}

/* End reset base & style */
.proen-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 15px 5rem 15px;
}

.proen-section__title {
  font-size: 3rem;
  font-weight: 600;
  color: #009de0;
  margin-bottom: 20px;
}

.proen-btn {
  min-width: 169px;
  border: 1.5px solid #009de0;
  color: #009de0;
  border-radius: 40px;
  padding: 0.825rem 1.25rem;
  -webkit-transition: none;
  transition: none;
  font-size: 1rem;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.proen-btn .proen-btn__icon,
.proen-btn .fas {
  width: 15px;
  height: 15px;
  margin-left: 5px;
}

.proen-btn:hover .proen-btn__text,
.proen-btn:hover .proen-btn__icon,
.proen-btn:hover .fas {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.proen-btn:hover:hover {
  background-image: linear-gradient(135deg, #322b80, #c20e1a);
  background: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1.5px solid transparent;
}

.proen-btn--download-all {
  float: right;
  background-color: #fff;
}
.proen-btn--download-all svg{
  fill: #009de0;
}
.proen-btn--download-all:hover svg{
  fill: #C20E1A;
}
.proen-doc-card__link{
  -webkit-transition: all .4s;
    transition: all .4s;
}
.proen-doc-card__link svg{
  fill: #FFF;
  width: 18px;
  height: 18px;
  margin-bottom: -3px;
  margin-left: 2px;
}
/* .proen-btn--download-all svg{
  width: 10px;
  height: 10px;
} */
.proen-btn--download-all:hover {
  background-image: linear-gradient(135deg, #322b80, #c20e1a);
  background: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  border: 1.5px solid transparent;
}

/* Header Styles */
.proen-site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0)));
  background: transparent linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  padding: 15px;
  color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 0px 0px 16px 16px;
}

.proen-site-header--scrolled {
  position: fixed;
  width: 100%;
  background: #FFF;
  color: #000;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}

body.admin-bar .proen-site-header--scrolled {
  top: 32px;
}


.proen-site-header--scrolled .proen-site-header__logo img {
  -webkit-filter: none;
          filter: none;
}

.proen-site-header--scrolled span.search-top svg{
  color: #009de0;
}


.proen-site-header--scrolled .proen-nav__item,
.proen-site-header--scrolled .proen-site-header__top-menu span,
.proen-site-header--scrolled .menu-item a {
  color: #009de0;
}

.proen-site-header__top, .proen-site-header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.proen-site-header__logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.proen-site-header a,
.proen-site-header span {
  color: #FFF;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.proen-site-header .proen-nav__item {
  font-size: 1rem;
  font-weight: 500;
  padding: .45rem 1rem;
  position: relative;
  white-space: nowrap;
  border-radius: 40px;
  background-color: transparent;
}

.proen-site-header .proen-nav__item:hover {
  color: #FFF;
  background-color: #009de0;
}

.proen-site-header__top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}

.proen-site-header__top-menu span {
  position: relative;
  padding: 0 1.5rem;
}
.proen-site-header__top-menu span.search-top{
  padding-right: 0;
}
.proen-site-header__top-menu span.search-top svg {
  width: 19px;
  height: 19px;
  margin-bottom: -2.5px;
}


.proen-site-header__top-menu span::before, .proen-site-header__top-menu span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 17px;
  background-color: #aeaeae;
}

.proen-site-header__top-menu span::after {
  left: 0.5rem;
}

.proen-site-header__top-menu span::before {
  right: 0.5rem;
}

.proen-site-header__top-menu span:last-child::before {
  display: none;
}

.proen-site-header__top-menu-mobile {
  display: none;
  position: relative;
  text-align: center;
  /* เพิ่ม CSS สำหรับปุ่ม mobile menu toggle */
}

.proen-site-header__top-menu-mobile .proen-nav__item:first-child {
  margin-left: 2rem;
}

.proen-site-header__top-menu-mobile .proen-nav__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: .45rem 1rem;
  border-radius: 40px;
  background-color: transparent;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle {
  position: relative;
  background: transparent;
  border: none;
  width: calc(100% / 3);
  height: 25px;
  cursor: pointer;
  z-index: 1010;
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 30px;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle span:nth-child(2) {
  top: 8px;
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle span:nth-child(3) {
  top: 16px;
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.proen-site-header__top-menu-mobile .proen-mobile-menu-toggle.active span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}


body.page-template-page-default-canvas .entry-content h5,
body.page-template-page-default-canvas  .entry-content .h5 {
    font-size: 1.7rem;
    line-height: 2.2rem;
    font-weight: 600;
    margin-bottom: 3px;
}
body.page-template-page-default-canvas .entry-content p {
      font-size: 18px;
    line-height: 30px;
    margin-bottom: 1rem;
}

body.page-template-page-default-canvas .entry-content {
    padding: 60px 0;
    margin: 0;
}

body.page-template-page-default-canvas .entry-content ol,
body.page-template-page-default-canvas .entry-content ul {
    padding-left: 2rem;
    margin: 0;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
body.page-template-page-default-canvas .entry-content ul{
      list-style-type: circle;
}

@media (max-width: 1024px) {
  .proen-site-header__top-menu-mobile .proen-mobile-menu-toggle {
    display: block;
  }
  .proen-site-header--scrolled .proen-site-header__top-menu-mobile .proen-mobile-menu-toggle span {
    background: #009de0;
  }
}

.proen-site-header__top-menu-mobile-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}

.proen-site-header .main-navigation {
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.proen-site-header .main-navigation .menu-all-pages-container {
  width: 100%;
}

.proen-site-header .main-navigation .main-menu {
  border-top: 0.5px solid #aeaeae;
  margin: 0;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

/* .proen-site-header .main-navigation .menu-item {

} */
.proen-site-header .main-navigation .menu-item > a{
  font-size: 1rem;
  font-weight: 500;
  padding: .45rem 1rem;
  position: relative;
  white-space: nowrap;
  border-radius: 40px;
  background-color: transparent;
}
.proen-site-header .logo-color{
display: none;;
}

 .proen-site-header--scrolled .logo-color{
  display: flex;
}
.proen-site-header--scrolled .custom-logo-link {
  display: none;
}
.proen-site-header .main-navigation .main-menu > .menu-item:hover > a,
.proen-site-header .main-navigation .main-menu > .menu-item.active {
  color: #FFF;
  background-color: #009de0;
}

.proen-site-header .main-navigation .main-menu > .menu-item:hover a,
.proen-site-header .main-navigation .main-menu > .menu-item.active a {
  color: #FFF;
}

.proen-site-header .main-navigation-mobile {
  display: none;
}

/* Hero Section */
.proen-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: inherit;
  background: url("../images/bg/banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  background-position: right;
padding-top: 90px;
}

.proen-hero .proen-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.proen-hero .proen-entry-header {
  width: 40%;
}

.proen-hero .proen-entry-header .proen-subtitle {
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.proen-hero .proen-entry-header .proen-entry-title {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.proen-hero .proen-stock-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: relative;
  width: 60%;
  height: 400px;
}

.proen-hero .proen-stock-widgets .proen-stock-widgets__bg {
  height: 100%;
}

.proen-hero .proen-stock-widgets .proen-stock {
  position: absolute;
  padding: 1rem 1.5rem;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.proen-hero .proen-stock-widgets .proen-stock:nth-child(2) {
  top: 0;
  left: 0;
}

.proen-hero .proen-stock-widgets .proen-stock:nth-child(3) {
  top: 0;
  right: 0;
}

.proen-hero .proen-stock-widgets .proen-stock:nth-child(4) {
  bottom: -2px;
  left: -15px;
}

.proen-hero .proen-stock-widgets .proen-stock:nth-child(5) {
  bottom: 0;
  right: -70px;
}

.proen-hero .proen-stock-widgets .proen-stock--primary {
  background-color: #009de0;
  color: #fff;
}

.proen-hero .proen-stock-widgets .proen-stock--primary .proen-stock__value {
  color: #fff;
}

.proen-hero .proen-stock-widgets .proen-stock--primary .proen-btn {
  background-color: #fff;
}

.proen-hero .proen-stock-widgets .proen-stock--light {
  background-color: #fff;
  color: #aeaeae;
}

.proen-hero .proen-stock-widgets .proen-stock--light .proen-stock__value {
  color: #009de0;
}

.proen-hero .proen-stock-widgets .proen-stock__title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  color: inherit;
}

.proen-hero .proen-stock-widgets .proen-stock__title .uppercase {
  text-transform: uppercase;
}

.proen-hero .proen-stock-widgets .proen-stock .proen-wpt_stock_currency {
  font-size: 1rem;
  font-weight: 400;
}

.proen-hero .proen-stock-widgets .proen-stock__value {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.5rem;
}
.proen-hero .proen-stock-widgets .proen-stock__value.big{
  font-size: 2.2rem;
}

.proen-hero .proen-stock-widgets .proen-stock__date-time {
  display: block;
  font-weight: normal;
  font-size: 0.9rem;
  margin-top: 3px;
}

.proen-hero .proen-stock-widgets .proen-stock .proen-btn {
  margin-top: 0.5rem;
  background-color: #fff;
}
.proen-hero .proen-stock-widgets .proen-stock .proen-btn svg{
  width: 13px;
  height: 13px;
  margin-left: 4px;
  margin-bottom: -1px;
}

@media screen and (max-width: 576px) {
  .proen-hero {
    padding-top: 6rem;
  }
  .proen-hero .proen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .proen-hero .proen-entry-header {
    width: 100%;
  }
  .proen-hero .proen-entry-header .proen-entry-title {
    font-size: 3.125rem;
    margin-bottom: 0;
  }
  .proen-hero .proen-stock-widgets {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .proen-hero .proen-stock-widgets .proen-stock {
    position: relative;
    width: 100%;
    -webkit-transform: none !important;
            transform: none !important;
    margin-bottom: 1rem;
    right: 0!important;
  }
  .proen-hero .proen-stock-widgets .proen-stock:nth-child(1), .proen-hero .proen-stock-widgets .proen-stock:nth-child(2), .proen-hero .proen-stock-widgets .proen-stock:nth-child(3), .proen-hero .proen-stock-widgets .proen-stock:nth-child(4) {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

/* About Section */
.proen-about {
  background-color: #fff;
  position: relative;
}

.proen-about::before {
  content: " ";
  background: url("../images/bg/fade-top.png");
  background-position: top left;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background-size: 100% 100%;
}

.proen-about .proen-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.proen-about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.proen-about__image img {
  border-radius: 10px;
  width: 100%;
}

.proen-about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.proen-about__content .proen-section__title {
  text-align: left;
}

.proen-about__content .proen-section__description {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
  .proen-about .proen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .proen-about__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .proen-about__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 30px;
    text-align: center;
  }
  .proen-about__content .proen-proen-about__content {
    text-align: left;
  }
  .proen-about__content .proen-section__description {
    text-align: left;
  }
  .proen-about__content .proen-btn {
    float: left;
  }
}

.proen-financial {
  position: relative;
  /* ปรับเปลี่ยนสไตล์สำหรับ mobile */
}

.proen-financial::before {
  content: " ";
  background: url("../images/bg/fade-bottom.png");
  background-position: bottom right;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background-size: 100% 100%;
  z-index: -1;
}

.proen-financial .proen-entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.proen-financial .proen-entry-header .proen-section__title {
  margin-bottom: 0;
}

.proen-financial__grid {
  /* display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  /* display: flex;
  flex-wrap: wrap;
  gap: 0px; */
}

.proen-financial__column {
  margin: 0;
  padding: 2rem 2rem 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}

.proen-financial__column .proen-financial__title {
  font-size: 1.375rem;
  font-weight: 300;
  color: #454545;
}

.proen-financial__column .proen-financial__value {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.proen-financial__column .proen-financial__value span {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.proen-financial__column .proen-financial__unit {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  color: #aeaeae;
}

@media screen and (max-width: 576px) {
  .proen-financial .proen-entry-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

/* Documents Section */
.proen-documents {
  position: relative;
  padding: 4rem 15px 2rem 15px;
  color: #fff;
}

.proen-documents .proen-wrapper {
  padding-bottom: 0;
}

.proen-documents__video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

.proen-documents__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-auto-flow: row;
  gap: 25px;
}

.proen-documents__grid .proen-section__title {
  margin-bottom: 4rem;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.proen-documents__grid .proen-documents__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.proen-documents__grid .proen-documents__column .proen-doc-card {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-bottom: 4rem;
  min-height: 230px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(117deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.16) 99.45%);
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.proen-documents__grid .proen-documents__column .proen-doc-card__image {
  position: absolute;
  top: -40px;
  right: 0;
  max-width: 190px;
  pointer-events: none;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__content {
  margin: 3rem 0 0 0;
  width: 50%;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__content .proen-doc-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__content .proen-doc-card__title .proen-doc-card__year {
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__content .proen-doc-card__year {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__content .proen-doc-card__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__actions .proen-doc-card__link {
  font-size: 1rem;
  font-weight: 500;
  color: #FFF;
  width: 50%;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__actions .proen-doc-card__link:hover span {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__actions .proen-doc-card__link i {
  margin-left: 5px;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__actions--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

.proen-documents__grid .proen-documents__column .proen-doc-card__actions--wrap .proen-doc-card__link {
  width: 100%;
}

.proen-documents__grid .proen-documents__column .proen-doc-card--last-child {
  margin-bottom: 2rem;
}

@media screen and (max-width: 576px) {
  .proen-documents__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .proen-documents__grid .proen-section__title {
    font-size: 2.6875rem;
  }
  .proen-documents__grid .proen-documents__column .proen-doc-card {
    margin-bottom: 2rem;
  }
  .proen-documents__grid .proen-documents__column .proen-doc-card__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .proen-documents__grid .proen-documents__column .proen-doc-card__actions .proen-doc-card__link + .proen-doc-card__link {
    margin-left: 0;
    margin-top: 10px;
  }
  .proen-documents__grid .proen-documents__column:nth-child(2) {
    gap: 2rem;
  }
  .proen-documents .proen-btn {
    float: left;
  }
}

/* News Section */
.proen-news {
  padding: 7rem 0 5rem 0;
  overflow: hidden;
  position: relative;
  /* Tablet */
  /* Mobile */
}

.proen-news::before {
  content: " ";
  background-image: url("../images/bg/circle-top.png");
  background-position: top left;
  background-size: auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.proen-news::after {
  content: " ";
  background-image: url("../images/bg/circle-bottom.png");
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.proen-news__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 2fr;
      grid-template-columns: 3fr 2fr;
  gap: 1rem;
}

.proen-news__grid .proen-news__stock-news {
  position: relative;
}

.proen-news__grid .proen-news__stock-news .proen-section__title {
  text-align: left;
  color: #009de0;
}

.proen-news__list .proen-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  min-height: 140px;
  margin-bottom: 1.5rem;
}

.proen-news__list .proen-news__item .proen-news__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}

.proen-news__list .proen-news__item .proen-news__date .proen-news__day {
  line-height: 1;
  font-size: 3.5rem;
  font-weight: 600;
}

.proen-news__list .proen-news__item .proen-news__date .proen-news__month {
  font-size: 1.25rem;
  font-weight: 500;
}

.proen-news__list .proen-news__item .proen-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.proen-news__list .proen-news__item .proen-news__content .proen-news__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  /* จำกัดจำนวนบรรทัดที่แสดงไว้ที่ 3 บรรทัด */
  min-height: calc(1.2rem * 3);
  /* กำหนดพื้นที่คงที่สำหรับ 3 บรรทัดของ title */
  color: #454545;
  font-size: 1.2rem;
}

.proen-news__list .proen-news__item .proen-news__content .proen-news__read-more-link {
  color: #FFF;
  font-size: 16px;
  display: flex;
      align-items: center;
}

.proen-news__list .proen-news__item:hover .proen-news__read-more-link span {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.proen-news__list .proen-news__item .proen-news__content .proen-news__read-more-link svg{
  width: 15px;
  height: 15px;
  margin-left: 2px;
  margin-bottom: -3px;
}
.proen-news__list .proen-news__item:hover .proen-news__read-more-link svg{
  color: #c20e1a;
}

.proen-news .proen-events-widget .proen-section__title {
  text-align: left;
  color: #009de0;
}

.proen-news .proen-events-widget .proen-event-card {
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.proen-news .proen-events-widget .proen-event-card__thumbnail {
  margin: 0;
}

.proen-news .proen-events-widget .proen-event-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.proen-news .proen-events-widget .proen-event-card__body {
  padding: 2rem;
}

.proen-news .proen-events-widget .proen-event-card__body .proen-event-card__date {
  display: block;
  font-weight: 500;
  color: #322b80;
  font-size: 1.25rem;
}

.proen-news .proen-events-widget .proen-event-card__body .proen-event-card__title {
  font-size: 1.35rem;
  font-weight: 500;
  margin: .5rem 0;
  color: #009de0;
}

.proen-news .proen-events-widget .proen-event-card__body .proen-event-card__details {
  padding-top: 1rem;
}

.proen-news .proen-events-widget .proen-event-card__body .proen-event-card__details .proen-event-card__time,
.proen-news .proen-events-widget .proen-event-card__body .proen-event-card__details .proen-event-card__location {
  margin-bottom: 0.5rem;
}

.proen-news .proen-events-widget .proen-event-card__body .proen-event-card__details .proen-event-card__time i,
.proen-news .proen-events-widget .proen-event-card__body .proen-event-card__details .proen-event-card__location i {
  margin-right: 0.5rem;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#322b80), to(#c20e1a));
  background-image: linear-gradient(90deg, #322b80, #c20e1a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.proen-news .proen-events-widget .proen-event-card__body .proen-btn.proen-event-card__btn-calendar {
  border: none;
  display: inline-block;
  padding-left: 0;
  background: #FFF;
  padding: 0;
}

.proen-news .proen-events-widget > .proen-btn {
  margin-top: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .proen-news__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .proen-news__grid .proen-news__stock-news {
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
  .proen-news__grid .proen-news__stock-news:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(34, 34, 34, 0.1);
  }
  .proen-news__grid .proen-news__stock-news .proen-section__title {
    text-align: center;
  }
  .proen-news .proen-events-widget .proen-section__title {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .proen-news .proen-news__grid .proen-section__title {
    text-align: left;
    font-size: 2.5rem;
  }
  .proen-news .proen-news__grid .proen-news__stock-news {
    padding-bottom: 0;
  }
  .proen-news .proen-news__grid .proen-news__stock-news:after {
    display: none;
  }
  .proen-news .proen-events-widget .proen-event-card__body .proen-btn.proen-event-card__btn-calendar {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

/* Contact IR Section */
.proen-contact-section {
  position: relative;
  /* Newsletter Section */
  /* Responsive Styles */
}

.proen-contact-section::before {
  content: "";
  background-image: url("../images/bg/circle-middle-left.png");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.proen-contact-section .proen-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.proen-contact-section .proen-contact .proen-wrapper {
  padding: 0 15px 2rem 15px;
}

.proen-contact-section .proen-contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: relative;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
}

.proen-contact-section .proen-contact__wrap::before {
  background-image: url("../images/bg/contact.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.proen-contact-section .proen-contact__wrap::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(131, 27, 71, 0)), color-stop(30%, rgba(131, 27, 71, 0.1)), color-stop(47.5%, #322B80), to(#009DE0));
  background: linear-gradient(90deg, rgba(131, 27, 71, 0) 0%, rgba(131, 27, 71, 0.1) 30%, #322B80 47.5%, #009DE0 100%);
  background: transparent -webkit-gradient(linear, left top, right top, from(rgba(131, 27, 71, 0)), color-stop(30%, rgba(131, 27, 71, 0.1)), color-stop(47.5%, #322B80), to(#009DE0));
  background: transparent linear-gradient(90deg, rgba(131, 27, 71, 0) 0%, rgba(131, 27, 71, 0.1) 30%, #322B80 47.5%, #009DE0 100%);
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.proen-contact-section .proen-contact__space-holder {
  width: 50%;
}

.proen-contact-section .proen-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 50%;
  color: #FFF;
}

.proen-contact-section .proen-contact__body .proen-section__title {
  color: #FFF;
  margin-bottom: 0;
}

.proen-contact-section .proen-contact__body .proen-contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.proen-contact-section .proen-contact__body .proen-contact__list .proen-contact__item i {
  margin-right: 0.5rem;
}

.proen-contact-section .proen-contact__body .proen-btn {
  margin-top: 1rem;
  background-color: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.proen-contact-section .proen-newsletter {
  position: relative;
  overflow: hidden;
}

.proen-contact-section .proen-newsletter::before {
  content: "";
  background-image: url("../images/bg/newsletter-circle.png");
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.proen-contact-section .proen-newsletter .proen-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 2rem 2rem 5rem 2rem;
}

.proen-contact-section .proen-newsletter .proen-wrapper .proen-newsletter__content {
  color: #888;
  width: 50%;
}

.proen-contact-section .proen-newsletter .proen-wrapper .proen-newsletter__image {
  width: 50%;
  position: relative;
}
























/* stock-quote */
.section--stock-quote{
  position: relative;
}

.section.section--stock-quote::before, .section.section--stock-quote::after {
    position: absolute;
    content: "";
    width: 100%;
    background-repeat: no-repeat;
}
.section.section--stock-quote {
    background: linear-gradient(116deg, #831B47 0%, #322B80 50.5%, #009DE0 100%);
    background: -moz-linear-gradient(116deg, #831B47 0%, #322B80 50.5%, #009DE0 100%);
    background: -webkit-linear-gradient(116deg, #831B47 0%, #322B80 50.5%, #009DE0 100%);
    background: transparent linear-gradient(116deg, #831B47 0%, #322B80 50.5%, #009DE0 100%);
    padding: 6rem 0;
    overflow: hidden
}
.section.section--stock-quote::before {
  inset: 0;
    background-image: url(../images/highlight-contentx.png);
    background-size: cover;
    background-position: top left;
    mix-blend-mode: color-dodge;
    opacity: .8;
}


.wpt-stock-quote {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 566px;
}
.wpt-stock-quote .wpt_stock_highlight {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    width: fit-content;
    min-width: 613px;
    height: fit-content;
    padding: 4rem 5rem 3.5rem 7.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
        inset: 4.5rem auto auto auto;
        z-index: 1;
}
.wpt-stock-quote .wpt_stock_highlight::before {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/cloudx.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
}
 .wpt-stock-quote .wpt_stock_highlight .wpt-stock_value .wpt_stock_lastdone {
    font-size: 3.5rem;
    font-weight: 600;
}
.wpt-stock-quote .wpt_stock_highlight .wpt-stock_change {
    font-size: 2rem;
    font-weight: 600;
}
.wpt-stock-quote .wpt_stock_highlight .wpt-stock_update {
    color: rgba(255, 255, 255, .7);
}
.wpt-stock-quote .wpt-stock_body {
    width: 100%;
    position: absolute;
    inset: 0;
}
.wpt-stock-quote .wpt-stock_block {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    width: 100%;
    max-height: fit-content;
    background-color: #f2f2f2;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, .1);
    padding: 1.5rem 1rem;
    text-align: center;
        width: fit-content;
        /* min-width: calc(100% - 5rem); */
        padding: 1.5rem;
        min-width: 250px;

}


.wpt-stock-quote .wpt-stock_block .wpt-stock_item {
    position: relative;
    display: flex;
   flex-direction: column;
}
.wpt-stock-quote .wpt-stock_block .wpt-stock_item .wpt-stock_text {
    color: #aeaeae;
    font-size: 1rem;
    font-weight: 500;
}
.wpt-stock-quote .wpt-stock_block .wpt-stock_item .wpt-stock_value {
    font-size: 2rem;
    font-weight: 600;
    color: #009de0;
}
.wpt-stock-quote .wpt-stock_block .wpt-stock_item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.wpt-stock-quote .wpt-stock_block .wpt-stock_item:last-child::before {
    position: absolute;
    inset: -1rem 0 auto 0;
    content: "";
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
    background: -moz-linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
    background: -webkit-linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
    background: transparent linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
}
.st-container{max-width: 1320px;margin: 0 auto;}



@media (min-width: 992px) {

    .wpt-stock-quote .wpt-stock_block {
        position: absolute;
    }
        .wpt-stock-quote .wpt-stock_block:nth-child(1) {
        inset: 0 auto auto 6%;
    }
        .wpt-stock-quote .wpt-stock_block:nth-child(2) {
        inset: 5% 9% auto auto;
    }
        .wpt-stock-quote .wpt-stock_block:nth-child(3) {
        inset: auto auto 0 10%;
    }
        .wpt-stock-quote .wpt-stock_block:nth-child(4) {
        inset: auto 0 5% auto;
    }
}



/*for Mobile*/
@media (max-width: 767px) {
  .wpt-stock-quote .wpt_stock_highlight .wpt-stock_change,
  .wpt-stock-quote .wpt_stock_highlight .wpt-stock_value .wpt_stock_lastdone {
    font-size: 29px;
}
.section.section--stock-quote {
    padding: 0;
    padding-bottom: 70px;
}
  .wpt-stock-quote .wpt_stock_highlight {
    min-width: 100%;
    padding: 4rem 2rem 3.5rem 3.5rem;
    gap: 0;
}
.wpt-stock-quote .wpt-stock_block {
    width: 100%;
}
    .wpt-stock-quote .wpt-stock_body {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        max-width: 100%;
        margin: 0 auto;
        margin-top: 70px;
        padding: 0 15px;
    }

  .wpt-stock-quote {
    flex-direction: column;
    align-items: center;
            margin-top: -50px;

  }
}
/* end for Mobile */

/*for tabletV*/
@media (min-width: 768px) and (max-width: 991px) {
    .wpt-stock-quote {
    flex-direction: column;
    align-items: center;
    margin-top: -90px;
  }
    .wpt-stock-quote .wpt-stock_body {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        max-width: 85%;
        margin: 0 auto;
        margin-top: 100px;
    }

}
/* end for tabletV */

/*for tabletH*/
@media (min-width: 992px) and (max-width: 1199px) {
  
}
/* end for tabletH */

@media (min-width: 768px) {
.wpt-stock-quote .wpt-stock_block:nth-child(4) {
        inset: auto 6% 4% auto;
    }
}
/* stock-quote */





@media screen and (max-width: 576px) {
  .proen-contact-section .proen-contact {
    overflow: hidden;
  }
  .proen-contact-section .proen-contact__space-holder {
    width: 100%;
    min-height: 282px;
  }
  .proen-contact-section .proen-contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .proen-contact-section .proen-contact__wrap::before {
    width: 100%;
    background-size: 130%;
    background-position: top center;
  }
  .proen-contact-section .proen-contact__wrap::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(131, 27, 71, 0)), color-stop(30%, rgba(131, 27, 71, 0.1)), color-stop(40%, #322B80), to(#009DE0));
    background: linear-gradient(180deg, rgba(131, 27, 71, 0) 0%, rgba(131, 27, 71, 0.1) 30%, #322B80 40%, #009DE0 100%);
    background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(131, 27, 71, 0)), color-stop(30%, rgba(131, 27, 71, 0.1)), color-stop(40%, #322B80), to(#009DE0));
    background: transparent linear-gradient(180deg, rgba(131, 27, 71, 0) 0%, rgba(131, 27, 71, 0.1) 30%, #322B80 40%, #009DE0 100%);
    z-index: 0;
  }
  .proen-contact-section .proen-contact .proen-section__title {
    font-size: 2.6875rem;
  }
  .proen-contact-section .proen-contact__body {
    width: 100%;
    padding: 2rem;
    z-index: 1;
  }
  .proen-contact-section .proen-contact .proen-contact__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  .proen-contact-section .proen-newsletter::before {
    right: -4rem;
  }
  .proen-contact-section .proen-newsletter .proen-section__title {
    font-size: 2.6875rem;
  }
  .proen-contact-section .proen-newsletter .proen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 1rem 4rem 1rem;
  }
  .proen-contact-section .proen-newsletter .proen-wrapper .proen-newsletter__content,
  .proen-contact-section .proen-newsletter .proen-wrapper .proen-newsletter__image {
    width: 100%;
  }
  .proen-contact-section .proen-newsletter .proen-wrapper .proen-newsletter__image {
    margin-top: 2rem;
  }
  .proen-contact-section .proen-newsletter .proen-wrapper .proen-newsletter__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .proen-contact-section .proen-newsletter .proen-btn {
    margin-top: 1rem;
  }
}

/* Footer */
.proen-site-footer {
  background-color: #222;
  color: #fff;
  padding: 0;
  /* Responsive Styles */
}

.proen-site-footer .proen-wrapper {
  padding: 0 50px;
  max-width: 100%;
}
.proen-site-footer__menu .proen-site-footer__company-info ul svg {
  width: 12px;
  height: 12px;
}

.proen-site-footer__top {
  padding: 2rem 0;
  border-bottom: 1px solid #aeaeae;
}

.proen-site-footer__top .proen-site-footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.proen-site-footer__top .proen-site-footer__logos img:first-child {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.proen-site-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0;
}

.proen-site-footer__menu .proen-site-footer__company-info {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.proen-site-footer__menu .proen-site-footer__company-info .proen-widget__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.proen-site-footer__menu .proen-site-footer__company-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.proen-site-footer__menu .proen-site-footer__company-info li {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.proen-site-footer__menu .proen-site-footer__company-info .proen-widget__info i {
  color: #009de0;
  margin-right: 0.5rem;
}

.proen-site-footer__menu .proen-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.proen-site-footer__menu .proen-social-icons li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #009de0;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.proen-site-footer__menu .proen-social-icons li a:hover {
  background-color: #009de0;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.proen-site-footer__menu .proen-site-footer__widget-menu {
  position: relative;
  display: block;
  width: 66.6666%;
  -webkit-column-count: 3;
          column-count: 3;
}

.proen-site-footer__menu .proen-site-footer__widget-menu .proen-widget-box {
  margin-bottom: 1.5rem;
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
}

.proen-site-footer__menu .proen-site-footer__widget-menu .proen-widget-box a {
  font-size: 1rem;
}

.proen-site-footer__menu .proen-site-footer__widget-menu .proen-widget-box .proen-widget__title {
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  position: relative;
}

.proen-site-footer__menu .proen-site-footer__widget-menu .proen-widget-box .proen-widget__title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 25px;
  height: 4px;
  background-color: #009de0;
}

.proen-site-footer__menu .proen-site-footer__widget-menu .proen-widget-box .proen-widget__links {
  list-style: none;
  padding-top: 0.5rem;
}

.proen-site-footer__menu .proen-site-footer__widget-menu .proen-widget-box .proen-widget__links li {
  margin-bottom: 0.25rem;
}

.proen-site-footer__menu .proen-site-footer__widget-menu .proen-widget-box .proen-widget__links li a {
  color: #FFF;
}

.proen-site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background: -webkit-gradient(linear, left top, right top, from(#322B80), to(#C20E1A));
  background: linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
  background: transparent -webkit-gradient(linear, left top, right top, from(#322B80), to(#C20E1A));
  background: transparent linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
  padding: .875rem 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.proen-site-footer__bottom .proen-site-footer__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.proen-site-footer__bottom .proen-site-footer__bottom-links li::before {
  content: "/";
  margin-right: 5px;
}

.proen-site-footer__bottom .proen-site-footer__bottom-links li:first-child::before {
  display: none;
}

.proen-site-footer__bottom .proen-site-footer__bottom-links li a {
  color: #FFF;
}

.proen-site-footer__bottom .proen-site-footer__bottom-links li a:hover {
  color: #009de0;
}

@media screen and (max-width: 1024px) {
  .proen-site-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .proen-site-footer__menu .proen-site-footer__company-info,.proen-site-footer__menu .proen-site-footer__widget-menu {
    width:100%;
  }
}

@media screen and (max-width: 576px) {
  .proen-site-footer__top .proen-site-footer__logos {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .proen-site-footer__top .proen-site-footer__logos img {
    height: 40px;
  }
  .proen-site-footer__menu .proen-site-footer__company-info,
  .proen-site-footer__menu .proen-site-footer__widget-menu {
    width: 100% !important;
  }
  .proen-site-footer__menu .proen-site-footer__company-info {
    gap: 0.5rem;
  }
  .proen-site-footer__menu .proen-site-footer__company-info .proen-widget__info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .proen-site-footer__menu .proen-site-footer__company-info .proen-social-icons {
    margin-bottom: 1.5rem;
  }
  .proen-site-footer__menu .proen-site-footer__widget-menu {
    -webkit-column-count: 2;
            column-count: 2;
  }
  .proen-site-footer__bottom .proen-site-footer__bottom-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .proen-section__title {
    font-size: 3.125rem;
  }
  .proen-wrapper {
    max-width: 960px;
  }
  .main-navigation,
  .proen-site-header__top-menu {
    display: none;
  }
  .proen-site-header__top-menu-mobile,
  .proen-mobile-menu-toggle {
    display: block;
  }
  .main-navigation-mobile {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: white;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    z-index: 1001;
    overflow-y: auto;
    color: #575757;
  }
  .main-navigation-mobile.active {
    display: block;
    height: calc(100vh - 100px);
    border-top: 1px solid #aeaeae;
    border-radius: 0;
  }
  .main-navigation-mobile .main-menu {
    width: 100%;
  }
  .main-navigation-mobile .main-menu .menu-item {
    color: #575757;
    padding-top: 0.75rem;
    padding-bottom: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
  }
  .main-navigation-mobile .main-menu .menu-item a {
    color: #575757;
    display: block;
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .main-navigation-mobile .main-menu .menu-item a:hover {
    background-color: rgba(0, 157, 224, 0.05);
    color: #009de0;
  }
  .main-navigation-mobile .dropdown {
    position: relative;
  }
  .main-navigation-mobile .dropdown .dropdown-toggle {
    position: relative;
    display: block;
    border-bottom: 0.5px solid #aeaeae;
    padding-bottom: 0.75rem;
    text-align: left;
  }
  .main-navigation-mobile .dropdown .dropdown-toggle::after {
    /* content: "\f054"; */
    /* font-family: "Font Awesome 6 Free"; */
    /* font-weight: 900; */
    margin-left: 5px;
    /* font-size: 16px; */
    content: '';
    display: block;
    background-image: url('../images/chevron-right.svg');
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    position: absolute;
    right: -5px;
    top: 4px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .main-navigation-mobile .dropdown .dropdown-toggle.active {
    color: #009de0;
  }
  .main-navigation-mobile .dropdown .dropdown-toggle.active::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    color: #009de0;
  }
  .main-navigation-mobile .dropdown .dropdown-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
  }
  .main-navigation-mobile .dropdown .dropdown-menu.show {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    visibility: visible;
    opacity: 1;
  }
  .main-navigation-mobile .dropdown .dropdown-menu .menu-item {
    padding: 0;
  }
  .proen-site-header--scrolled .proen-mobile-menu-toggle span {
    background: #009de0;
  }
  .proen-site-header__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .proen-site-header__logo img {
    max-height: 40px;
  }
  .proen-site-header__top-menu {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10px;
  }
  .proen-site-header__top-menu .proen-nav__item {
    padding: .25rem .75rem;
    font-size: 0.9rem;
  }
  .proen-site-header__top-menu span {
    padding: 0 0.75rem;
  }
  .proen-site-header.active {
    border-radius: 0;
    background: #fff;
  }
  .proen-site-header.active .proen-site-header__logo img {
    -webkit-filter: none;
            filter: none;
  }
  .proen-site-header.active a {
    color: #009de0;
  }
  .proen-site-header.active span {
    background: #009de0;
  }
  .proen-financial__grid,
  .proen-documents__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .proen-news .proen-section__title {
    font-size: 2.5rem;
  }
  .proen-news .proen-events-widget .proen-event-card__body .proen-btn.proen-event-card__btn-calendar {
    padding-top: 1rem;
  }
  .proen-newsletter .proen-btn {
    margin-top: 1rem;
  }
}

/* Mobile */
@media screen and (max-width: 1024px) {

  .proen-site-header__top-menu-mobile .proen-nav__item:first-child {
    margin-top: -0.005em;
}
  .proen-site-header a {
    display: flex;
}
  .proen-section__title {
    font-size: 2.6875rem;
  }
  .proen-site-header__top-menu-mobile {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 12px;
  }
  .proen-financial__grid,
  .proen-documents__grid {
    display: block;
  }
  .proen-documents__grid .proen-documents__column:nth-child(2) {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .proen-wrapper {
    padding: 2rem 15px;
  }
  .proen-news .proen-wrapper {
    padding: 2rem 10px;
  }
}
/*# sourceMappingURL=style.css.map */