:root {
  --primary: #1a1617;
  --secondary: #6a9fad;
  --white: #ffffff;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary);
}

body.overflow-hidden {
  overflow: hidden;
}

@media (max-width: 1023px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 639px) {
  body {
    font-size: 14px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1272px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* Typography */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "the-seasons", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 52px;
}

h2,
.h2 {
  font-size: 40px;
}

h3,
.h3 {
  font-size: 32px;
}

h4,
.h4 {
  font-size: 28px;
}

h5,
.h5 {
  font-size: 24px;
}

h6,
.h6 {
  font-size: 18px;
}

@media (max-width: 1023px) {
  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 34px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h5,
  .h5 {
    font-size: 20px;
  }

  h6,
  .h6 {
    font-size: 16px;
  }
}

@media (max-width: 639px) {
  h1,
  .h1 {
    font-size: 30px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  h6,
  .h6 {
    font-size: 15px;
  }
}

/* Richtext */
.richtext h1,
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5,
.richtext h6,
.richtext p {
  margin-bottom: 16px;
}

.richtext > *:last-child {
  margin-bottom: 0;
}

/* Section Classes */
.sec-header {
  text-align: center;
  max-width: 968px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.sec-lg-heading {
  line-height: 1.2;
  margin-bottom: 24px;
}

.sec-md-heading {
  margin-bottom: 16px;
}

.sec-sub-heading {
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
}

.sec-desc {
  font-size: 18px;
}

.sec-desc h1,
.sec-desc .h1,
.sec-desc h2,
.sec-desc .h2,
.sec-desc h3,
.sec-desc .h3,
.sec-desc h4,
.sec-desc .h4,
.sec-desc h5,
.sec-desc .h5,
.sec-desc h6,
.sec-desc .h6,
.sec-desc p {
  font-weight: 400;
}

@media (max-width: 1023px) {
  .sec-desc {
    font-size: 16px;
  }
}

@media (max-width: 639px) {
  .sec-header {
    margin-bottom: 30px;
  }

  .sec-lg-heading {
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .sec-desc {
    font-size: 15px;
  }
}

/* Button's */
.btn-black a,
.btn-white a,
.btn-outline a {
  display: inline-block;
  font-weight: 700;
  line-height: 1.3;
  padding: 14px 32px;
  border-radius: 20px;
  position: relative;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-black a {
  border: 2px solid var(--primary);
  color: var(--white);
  background-color: var(--primary);
}

.btn-black a:hover {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: var(--white);
}

.btn-white a {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-white a:hover {
  color: var(--white);
  background-color: var(--primary);
}

.btn-outline a {
  border: 2px solid var(--secondary);
  color: var(--white);
  background-color: transparent;
}

.btn-outline a:hover {
  background-color: var(--secondary);
}

.cta-btn {
  max-width: 100%;
}

.cta-btn .hs-cta-embed {
  max-width: 100%;
}

/* Video */
.video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  display: block;
  overflow: hidden;
  position:relative;
}

@media (max-width: 639px) {
  .video {
    border-radius: 16px;
  }
}

/* Hero Banner */
.hero-section .sec-lg-heading {
  max-width: 940px;
  margin-inline: auto;
}

.hero-section .sec-desc {
  margin-bottom: 40px;
}

.hero-img {
  border-radius: 20px;
  width: 100%;
  min-height: 400px;
  height: auto;
  aspect-ratio: 1/0.395;
  object-fit: cover;
  display: block;
}

.hero-section .btn-customization a {
  padding-inline: 48px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 639px) {
  .hero-img {
    border-radius: 16px;
  }
}

/* Video Session */
.video-sessions-section {
  padding-top: 0;
}

.session-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

@media (max-width: 991px) {
  .session-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 568px) {
  .session-videos {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.info-card-img {
  background-color: #f8f8f8;
  margin-bottom: 32px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-img img {
  width: 100%;
  max-height: 100%;
}

.info-cards .sec-desc {
  margin-top: 24px;
}

.info-cards .btn-customization {
  margin-top: 32px;
}

.info-cards .btn-customization a {
  padding: 13px 48px;
}

@media only screen and (max-width: 767px) {
  .info-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .info-cards {
    gap: 50px 30px;
  }
}

@media (max-width: 639px) {
  .info-card-img {
    margin-bottom: 20px;
  }

  .info-cards .sec-desc {
    margin-top: 10px;
  }

  .info-cards .btn-customization {
    margin-top: 20px;
  }
}

/* Seven Core Team */
.seven-core-team {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
  row-gap: 40px;
}

.core-team-item {
  padding-inline: 12px;
  width: calc(100% / 4);
}

.core-team {
  display: block;
  text-decoration: none;
  text-align: center;
}

.core-team-img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 24px;
  border-radius: 6px;
  overflow: hidden;
}

.core-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.core-team-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
}

.core-team .richtext {
  margin-top: 14px;
}

@media only screen and (max-width: 1023px) {
  .core-team-item {
    width: calc(100% / 3);
  }
}

@media only screen and (max-width: 767px) {
  .core-team-item {
    width: calc(100% / 2);
  }
}

@media only screen and (max-width: 639px) {
  .seven-core-team {
    row-gap: 30px;
  }

  .core-team-item {
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
  }

  .core-team-img {
    margin-bottom: 14px;
  }
}

/* Video Sessions */
.video-wrapper-img {
  display: inline-block;
}

.video-session {
  display: flex;
  margin-inline: -16px;
  flex-wrap: wrap;
  row-gap: 40px;
}

.video-session-item {
  width: 33.33%;
  padding-inline: 16px;
}

.video-session-card {
  width: 100%;
}

.video-wrapper-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.73;
  margin-bottom: 23px;
}

.session-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.video-session-card:hover .session-play-icon {
  opacity: 1;
  visibility: visible;
}

.video-session-img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.video-session-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.video-session-card:hover .video-session-img:after {
  opacity: 0.5;
  visibility: visible;
}

.video-session-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session-play-icon {
  width: 110px;
  aspect-ratio: 1;
  background-color: #434554;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.session-play-icon img {
  left: 3px;
  width: 38px;
  height: 38px;
  position: relative;
}

.video-session-content h5 {
  font-weight: 500;
  margin-bottom: 12px;
}

.video-session-content .richtext {
  margin-bottom: 32px;
}

.video-session-content .btn-customization a {
  padding: 12px 47px;
}

@media only screen and (max-width: 1023px) {
  .video-session-item {
    width: 50%;
  }
}

@media only screen and (max-width: 639px) {
  .video-session-item {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }

  .session-play-icon {
    width: 90px;
  }

  .session-play-icon img {
    height: 30px;
    width: 30px;
  }

  .video-session-content .richtext {
    margin-bottom: 20px;
  }

  .video-session-content .btn-customization a {
    padding: 10px 30px;
  }
}

/* Footer */
footer {
  font-size: 14px;
  color: var(--white);
  background-color: #252122;
  padding-block: 75px;
}

footer .hs_error_rollup {
  display: none;
}

footer .hs-form-field {
  position: relative;
}

footer .hs-error-msgs {
  position: absolute;
  top: calc(100% + 7px);
  z-index: 1;
  left: 18px;
  color: red;
  font-size: 14px;
}

footer li {
  list-style: none;
}

.subscribe-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--white);
}

.subscribe-title {
  margin-bottom: 10px;
}

.subscribe-form {
  width: 100%;
  max-width: 510px;
}

.subscribe-form .hs-form-private {
  display: flex;
  gap: 16px;
}

.subscribe-form .hs-form-field {
  flex-grow: 1;
}

.subscribe-form .input {
  height: 100%;
}

.subscribe-form .hs-input {
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.714;
  color: var(--primary);
  background-color: var(--white);
  padding: 14px 20px;
  border: 0;
  border-radius: 20px;
  outline: 0;
  width: 100%;
  height: 100%;
}

.subscribe-form .hs-input::placeholder {
  color: #666666;
}

.subscribe-form .hs-submit {
  flex-shrink: 0;
}

.subscribe-form .hs-button {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: inherit;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 20px;
  padding: 11px 20px;
  outline: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.subscribe-form .hs-button:hover {
  background-color: var(--secondary);
}

.footer-wrapper {
  display: flex;
  gap: 32px;
  padding-block: 40px;
  border-bottom: 1px solid var(--white);
}

.footer-logo {
  max-width: 456px;
}

.footer-logo-img {
  max-width: 84px;
  height: auto;
  max-height: 114px;
}

.footer-logo-title {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
  color: var(--secondary);
  margin-block: 26px 14px;
}

.footer-desc {
  font-size: 14px;
}

.footer-desc > *:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col-list {
  flex-grow: 1;
  display: flex;
  gap: 32px;
  max-width: 784px;
  margin-left: auto;
}

.footer-col {
  flex-grow: 1;
}

.footer-col-title {
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-link {
  font-weight: 500;
  line-height: 2.657;
  display: block;
  transition: all 0.3s linear;
  color: inherit;
  text-decoration: none;
}

.footer-link-lists .footer-link:hover {
  color: var(--secondary);
}

.schedule-time:not(:last-child) {
  margin-bottom: 8px;
}

.schedule-time-title {
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  color: inherit;
  text-decoration: none;
}

.social-icon svg,
.social-icon img {
  width: 24px;
  height: auto;
  transform: scale(1);
  transition: all 300ms ease-in-out;
}

.social-icon:hover img {
  transform: scale(1.2);
}

.social-icon span {
  display: block;
  line-height: 1.5;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
}

.footer-copyright .footer-link-lists {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copyright .footer-link-lists li:not(:last-child) {
  margin-bottom: 0;
}

.footer-copyright .footer-link {
  font-weight: 400;
  text-decoration: underline;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .footer-logo {
    padding-right: 0;
  }
}

@media (max-width: 1023px) {
  .subscribe-form .hs-button {
    font-size: 15px;
  }
}

@media screen and (max-width: 1099px) {
  footer {
    padding-block: 55px;
  }

  .subscribe-form {
    max-width: 460px;
  }

  .footer-wrapper,
  .footer-col-list {
    gap: 22px;
  }

  .footer-logo {
    max-width: 318px;
  }
}

@media screen and (max-width: 991px) {
  .subscribe-wrapper {
    flex-direction: column;
    align-items: start;
  }

  .subscribe-form {
    max-width: unset;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 42px;
  }

  .footer-logo {
    max-width: unset;
  }

  .footer-col-list {
    margin-left: 0;
    max-width: unset;
  }
}

@media screen and (max-width: 767px) {
  .footer-col-list {
    flex-wrap: wrap;
    column-gap: 0;
    margin-inline: -12px;
  }

  .footer-col {
    width: 50%;
    padding-inline: 12px;
  }

  .footer-col-list {
    row-gap: 28px;
  }

  .footer-link {
    line-height: 2.3;
  }
}

@media screen and (max-width: 639px) {
  footer,
  .footer-desc {
    font-size: 13px;
  }

  .schedule-time-title {
    font-size: 13px;
  }

  .footer-logo-title {
    font-size: 14px;
  }

  .subscribe-form .hs-button,
  .subscribe-form .hs-input {
    border-radius: 18px;
  }

  .subscribe-form .hs-button {
    font-size: 14px;
  }

  .social-icon img,
  .social-icon svg {
    width: 20px;
  }

  .social-icon {
    gap: 8px;
  }

  .subscribe-form .hs-form-private {
    gap: 12px;
  }

  footer .hs-error-msgs {
    left: 0;
  }
}

@media screen and (max-width: 575px) {
  .footer-col {
    min-width: 190px;
  }
}




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

/* hero section */

.hero_section{padding:80px 0px 50px 0px;}
.hero_cover { border-radius: 20px; padding: 120px 0px; background-repeat: no-repeat; position:relative; z-index:1; }
.hero_main { color: var(--white);padding-left: 60px; }
.hero_title h2 { line-height: 57.6px; }
.hero_contain { padding-top: 24px; max-width: 865px; padding-bottom: 60px; }
.hero_button { display: inline-block; }
.hero_button a { background: var(--white); border: none; text-transform: uppercase; display: inline-block; line-height: 19px; padding: 14px 40px 15px 37px; }
.hero_cover:after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 20px; background: var(--black); opacity: 0.6; z-index: -1; }
@media(max-width:991px){
  .hero_cover {padding:90px 0px;}
  .hero_contain {padding-top: 15px;padding-bottom: 50px;}
  .hero_section {padding: 70px 0px 50px 0;}
  .hero_main{padding:0 30px;}
}
@media(max-width:767px){
  .hero_cover {padding:70px 0px;}
  .hero_contain {padding-bottom: 40px; }
  .hero_section {padding: 50px 0px;}
  .hero_main {padding: 0 15px;}
}

/* why we give */

.why_we_give { padding: 45px 0px 65px; }
.title_wrapper { padding-bottom: 80px; }
.title_wrapper .content { padding-top: 24px; font-size: 18px; }
.title.align_center { text-align: center; }
.tab_row { background: #FAF6F3; box-shadow: 0px 4px 10px 0px #5252521A; border: 1px solid rgba(212, 212, 212, 1); margin-top: 60px; }
.tab ul { padding: 0; margin: 0; list-style: none; display: flex; flex-flow: wrap; }
.tab ul li { text-transform:capitalize; width: calc(100% / 3); ); text-align: center; padding: 24px 32px; text-transform: capitalize; }
.tab ul li:first-child { border-left: none; }
.title.align_center { text-align: center; }
.tab_row { background: #FAF6F3; box-shadow: 0px 4px 10px 0px #5252521A; border: 1px solid rgba(212, 212, 212, 1); }
.tab ul li { width: calc(100% / 3); ); text-align: center; padding: 24px 32px; border-left: 1px solid rgba(212, 212, 212, 1); border-bottom: 1px solid rgba(212, 212, 212, 1); font-size: 20px; line-height: 22px; font-weight: 700; cursor: pointer; }
.tab ul li:first-child { border-left: none; }
.thumbnail img { width: 100%; display: block; border-radius: 6px; }
.content_cover { display: flex; flex-flow: wrap; align-items: center; gap: 80px; }
.thumbnail, .tab_content { width: calc(50% - 40px); }
.inner_content { padding: 48px; }
.tab_content .content { padding: 24px 0px 32px; font-size: 18px; line-height: 24px; }
.tab ul li.active { border-bottom: none; }

@media(min-width:991px) {
  h2.size_48 { font-size: 48px; line-height: 56px; }
}
@media(max-width:991px) {
  .title_wrapper { padding-bottom: 60px; }
  .inner_content { padding: 32px; }
  .content_cover { gap: 40px; }
  .thumbnail, .tab_content { width: calc(50% - 20px); }
}
@media(max-width:767px) {
  .why_we_give { padding: 25px 0px 40px 0; }
  .title_wrapper { padding-bottom: 40px; }
  .tab_row { margin-top: 30px; }
  .tab ul { flex-flow: nowrap; width: auto; overflow: scroll; }
  .tab ul li { width: 100%; white-space: nowrap; padding: 24px 22px; }
  .inner_content { padding: 24px; }
  .content_cover { row-gap: 32px; }
  .thumbnail, .tab_content { width: 100%; }
  .tab_content .content { padding: 15px 0px; font-size: 16px; }
}

/* others way */

.others_way { padding: 60px 0 129px; }
.tabbing_cover { padding: 89px 82px 0px; background: #FAF6F3; margin-top: 60px; box-shadow: 0px 4px 10px 0px rgba(82, 82, 82, 0.1); border: 1px solid rgba(212, 212, 212, 1); }
.tabbing_row { display: flex; flex-flow: wrap; align-items: center; gap: 110px; }
.tabbing_left, .tabbing_right { width: calc(50% - 55px); }
.title_row { display: flex; flex-flow: wrap; align-items: center; gap: 24px; }
.title_row span.index { cursor:pointer; height: 42px; width: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid #A4A5AC; border-radius: 100px; font-size: 26px; line-height: 26px; font-weight: 600; }
.title_row .title h5 { font-weight: 700; font-family: PP Neue Montreal, sans-serif; }
.title_row .title { width: calc(100% - 66px); cursor: pointer; }
.tabbing .content { padding:16px 0px 0px 66px; font-size: 18px; line-height: 28px; }
.tabbing .content ul { margin: 0; padding: 0; list-style: none; }
.tabbing .content ul li { padding-bottom: 12px; }
.tabbing { padding-bottom: 40px; }

.title_row.active span.index { background: var(--black); color: var(--white); }
.tab_thumb img {  width: 100%; display: block;}
.tab_thumb.tab_img_2 { padding-bottom: 68px; border-radius: 6px;}


@media(max-width:1200px) {
  .others_way { padding-bottom: 60px; }
}


@media(max-width:991px) {
  .tabbing_cover { margin-top: 40px; padding: 32px; }
  .tabbing_row { gap: 30px; }
  .tabbing_left, .tabbing_right { width: calc(50% - 15px); }
  .tabbing { padding-bottom: 10px; }
  .tabbing .content { padding: 10px 0px 0px 45px; }
  .title_row span.index { height: 35px; width: 35px; font-size: 18px; line-height: 18px; }
  .title_row { gap: 10px; }
  .title_row .title { width: calc(100% - 45px); }
  .tab_thumb.tab_img_2 { padding-bottom: 32px; }
}

@media(max-width:767px) {
  .others_way { padding:40px 0px; }
  .tabbing_cover { margin-top: 30px; padding: 24px; }
  .tabbing_row { row-gap: 32px; }
  .tabbing_left, .tabbing_right { width: 100%; }
  .tab_thumb.tab_img_2 { padding-bottom: 24px; }
  .tabbing_left { order: 1; }
  .tabbing { padding-bottom: 20px; }
  .title_row { gap: 15px; }
  .title_row span.index { height: 32px; width: 32px; font-size: 19px; line-height: 19px; }
  .tabbing .content { padding:5px 0px 0px 47px; }
  .title_row .title { width: calc(100% - 47px);}
}

/* matters section */

.matters_section {padding: 80px 0 105px;  background-color: #fff;}
.matters_row {display: flex;  flex-wrap: wrap;  align-items: center;}
.matters_left { width: 50%; padding-right: 125px;}
.matters_left {position: relative;}
.matters_position_img { left: auto; position: absolute; top: 50%; transform: translateY(-50%); right: 0; max-width: 230px;}
.matters_left_img img { width: 100%;display: block;}
.matters_position_img img  {width: 100%; display: block;}
.matters_right {   width: 50%;  padding-left: 65px;}
.matters_heading { padding-bottom: 30px;}
.matters_row_box { margin:0 -10px; display: flex; align-items: center; padding-top: 24px; flex-wrap: wrap;}
.matters_row_box_cover { width: calc(100% / 3 - 20px); margin:10px 10px;}
.matters_row_box_cover img { display: block; max-height: 238px; width: 100%;}
.matters_row_box_cover { position: relative; border-radius: 20px; overflow: hidden;}

.matters_row_box_cover iframe .ytp-impression-link-content { display: none;}
.matters_row_box_cover iframe { width: 100%; display: block; height: 222px;}

@media(max-width:991px){
  .matters_section {  padding: 40px 0 60px;}
  .matters_left {  padding-right: 85px;}
  .matters_right { padding-left: 50px;}
  .matters_heading { padding-bottom: 15px;}
  .matters_row_box_cover { width: calc(100% / 2 - 20px);}
}

@media(max-width:767px){
  .matters_left {width: 100%;padding-right: 0px;}
  .matters_right { padding: 0;width: 100%;}
  .matters_row {gap: 25px;}
  .matters_row_box_cover { width: 100%;}
  .matters_position_img { max-width: 100%; position: static; transform: translate(0px, 0px); padding-top: 20px;}
}

/* faq section */

.faq_section { padding-top: 100px; padding-bottom: 68px; }
.faq_heading { text-align:center; }
.faq_heading h2 { line-height: 60px; }
.faq_section { padding-bottom: 68px; padding-top: 100px; background: var(--primary); color: var(--white); }
.faq_main { padding-top: 60px; }
.faq_title { cursor: pointer; padding: 32px 0px; border-top: 1px solid var(--white); display: flex; flex-wrap: wrap; gap: 8px; }
.faq_title h5 { line-height: 25.6px; width: calc(100% - 32px); }
.faq_contain { padding-bottom: 32px; }
.faq_icon svg { display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease; }
.faq_item.active .faq_title .faq_icon svg { transform: rotate(180deg); }

@media(max-width:991px) {
  .faq_heading h2 { line-height: 40px; }
  .faq_section { padding-top: 90px; padding-bottom: 40px; }
  .faq_main { padding-top: 45px; }
  .faq_title { padding: 30px 0px; }
}

@media(max-width:767px) {
  .faq_section { padding-top: 70px; }
  .faq_heading { text-align: center; }
  .faq_main { padding-top: 35px; }
  .faq_title { padding: 25px 0px; }
}