@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #141414;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000000;
}

h1 {
  font-size: 56px;
  line-height: 64px;
}

h2 {
  font-size: 36px;
  line-height: 46px;
}

h3 {
  font-size: 32px;
  line-height: 40px;
}

h4 {
  font-size: 26px;
  line-height: 34px;
}

h5 {
  font-size: 22px;
  line-height: 30px;
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 26px;
    line-height: 34px;
  }

  h4 {
    font-size: 22px;
    line-height: 30px;
  }

  h5 {
    font-size: 20px;
    line-height: 28px;
  }
}

:only-child,
:last-child {
  margin-bottom: 0;
}

:first-child {
  margin-top: 0;
}

a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

blockquote {
  margin-left: 0;
  background: #F1F1F1;
}

blockquote:before {
  background: #9B8041;
}

.down-arrow-animated {
  position: absolute;
  left: 0;
  right: 0;
}

.down-arrow-animated span {
  display: block;
  width: 13px;
  height: 13px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin: -2px auto;
  -webkit-animation: animate-down-arrow 2s infinite;
  animation: animate-down-arrow 2s infinite;
}

.down-arrow-animated span:nth-child(2) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.down-arrow-animated span:nth-child(3) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

@-webkit-keyframes animate-down-arrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-8px, -8px);
  }

  50% {
    transform: rotate(45deg) translate(-8px, -8px);
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(8px, 8px);
  }
}

@keyframes animate-down-arrow {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(8px, 8px);
  }
}

.highlighted {
  color: #9B8041 !important;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: normal;
}

iframe {
  width: 100%;
  height: 100%;
}

.mobile-img {
  display: none;
}

:not(.single) .wysiwyg-content p>img {
  border-radius: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}


.wysiwyg-content h2:not(:first-child),
.wysiwyg-content h3:not(:first-child),
.wysiwyg-content h4:not(:first-child),
.wysiwyg-content h5:not(:first-child),
.wysiwyg-content h6:not(:first-child) {
  color: #000;
  margin-top: 32px;
  margin-bottom: 0;
}

.wysiwyg-content h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
}

.wysiwyg-content h3 {
  font-size: 34px;
  font-weight: 400;
  line-height: 42px;
}

.wysiwyg-content h4 {
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
}

.wysiwyg-content h5 {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
}

.wysiwyg-content h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.wysiwyg-content>*:first-child {
  margin-top: 0 !important;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
  margin-left: 0;
  padding-left: 32px;
  margin-top: 12px;
  margin-bottom: 0;
}

.wysiwyg-content ul:not(.two-column-list),
.wysiwyg-content ol:not(.two-column-list) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wysiwyg-content p,
.wysiwyg-content li {
  color: #3A3A3B;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.wysiwyg-content strong {
  font-weight: 700 !important;
}

.wysiwyg-content p {
  margin-top: 12px;
}

.wysiwyg-content a:not(.ez-toc-link) {
  text-decoration: underline;
  color: inherit !important;
  font-weight: inherit !important;
  word-break: break-all;
  font-size: inherit !important;
  line-height: inherit !important;
}

.wysiwyg-content>p a:not(.ez-toc-link),
.wysiwyg-content li>a:not(.ez-toc-link) {
  color: #06A77D !important;
}

.wysiwyg-content strong {
  font-weight: 700;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.wysiwyg-content blockquote {
  background: #978A60;
  padding: 12px 16px;
  padding-left: 36px;
  position: relative;
  margin-top: 12px;
  border-radius: 2px;
  margin-left: 0;
  margin-right: 0;
}

.wysiwyg-content blockquote * {
  margin-top: 0 !important;
  color: #fff;
}

.wysiwyg-content blockquote:before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 16px;
  width: 4px;
  background: #FFFFFF;
}

.wysiwyg-content .two-column-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}

.wysiwyg-content .two-column-list li {
  border-bottom: solid 1px #dedee2;
  width: 50%;
  padding: 12px;
  position: relative;
  padding-left: 36px;
}

.wysiwyg-content .two-column-list li::before {
  content: "";
  left: 0;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: block;
  position: absolute;
}

.wysiwyg-content .two-column-list li:last-child:not(:nth-child(even)) p {
  width: 100%;
  max-width: 50%;
  margin-top: 0;
}

.wysiwyg-content .two-column-list li:last-child:not(:nth-child(even)) {
  width: 100%;
}

.wysiwyg-content ul.custom-with-heading .heading {
  color: var(--grey-grey-1000-black, #000);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
}

.wysiwyg-content ul.custom-with-heading li {
  color: var(--grey-grey-800, #404040);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;

  display: block;
}

.wysiwyg-content ul.checkmark {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wysiwyg-content ul.checkmark li {
  position: relative;
  list-style: none;
}

.wysiwyg-content ul.checkmark li::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14 4C8.47727 4 4 8.47727 4 14C4 19.5227 8.47727 24 14 24C19.5227 24 24 19.5227 24 14C24 8.47727 19.5227 4 14 4ZM18.3345 12.3091C18.4144 12.2179 18.4751 12.1116 18.5133 11.9965C18.5514 11.8815 18.5661 11.7599 18.5566 11.6391C18.5471 11.5182 18.5135 11.4005 18.4578 11.2928C18.4021 11.1852 18.3254 11.0897 18.2323 11.0121C18.1392 10.9345 18.0315 10.8763 17.9155 10.841C17.7996 10.8056 17.6777 10.7938 17.5572 10.8062C17.4366 10.8186 17.3197 10.855 17.2134 10.9133C17.1071 10.9716 17.0135 11.0505 16.9382 11.1455L13.0291 15.8355L11.0064 13.8118C10.8349 13.6462 10.6053 13.5546 10.3669 13.5567C10.1285 13.5587 9.90054 13.6543 9.73198 13.8229C9.56343 13.9914 9.46782 14.2195 9.46575 14.4578C9.46368 14.6962 9.55531 14.9258 9.72091 15.0973L12.4482 17.8245C12.5375 17.9138 12.6445 17.9835 12.7622 18.0291C12.8799 18.0748 13.0059 18.0954 13.1321 18.0897C13.2582 18.084 13.3818 18.052 13.4949 17.9959C13.608 17.9397 13.7082 17.8606 13.7891 17.7636L18.3345 12.3091Z' fill='%2373926F'/%3E%3C/svg%3E");
  left: -32px;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: block;
  position: absolute;
}

@media screen and (max-width: 767px) {
  :not(.single) .wysiwyg-content p>img {
    width: 100%;
  }

  .wysiwyg-content p,
  .wysiwyg-content li,
  .wysiwyg-content strong,
  .wysiwyg-content a {
    font-size: 18px;
    line-height: 26px;
  }

  .wysiwyg-content .two-column-list li {
    width: 100%;
  }

  .wysiwyg-content .two-column-list li:last-child:not(:nth-child(even)) p {
    width: 100%;
    max-width: 100%;
  }

  .wysiwyg-content ul.custom-with-heading .heading {
    font-size: 24px;
    line-height: 32px;
  }

  .wysiwyg-content ul.custom-with-heading li {
    font-size: 18px;
    line-height: 26px;
  }

  .article-wrap .article-img-wrap img {
    height: 100% !important;
  }

  .wysiwyg-content h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .wysiwyg-content h2 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 800;
  }

  .wysiwyg-content h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 34px;
  }

  .wysiwyg-content h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
  }

  .wysiwyg-content h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }

  .wysiwyg-content h6 {
    font-size: 18px;
    line-height: 26px;
  }
}


/* ONLY FOR PAGE 404 */
.page-404-section {
  background-color: #EEF4F4;
  padding: 140px 20px;
}

.page-404-section .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.page-404-section .wrap h1 {
  margin-bottom: 8px;
  color: #000000;
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 0;
}

.page-404-section .icon-wrap {
  display: flex;
  height: 60px;
  width: 138px;
}

.page-404-section .wrap p {
  color: #000000;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.page-404-section .wrap a {
  color: #000 !important;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .page-404-section {
    padding: 80px 20px;
  }

  .page-404-section .wrap h1 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .page-404-section .wrap p {
    font-size: 18px;
    line-height: 26px;
  }

  .page-404-section .wrap {
    gap: 40px;
  }

  .page-404-section .wrap a {
    display: block;
  }
}

.tablepress tbody tr {
  background: #FFF;
}

.tablepress tbody tr:nth-child(even) {
  background: #F4F4F4;
}

.tablepress tbody tr td {
  background: none;
  border: 0;
  padding: 20px 32px;
  color: #3A3A3B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 144.444% */
}

.tablepress tbody tr td:first-child {
  border-right: 1px solid #D5D7E8;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  /* 144.444% */
  text-transform: capitalize;
  width: 276px;
}

.tablepress tbody tr td:last-child {
  border-right: 0;
}

.tablepress tbody tr:first-child td {
  border-top: 16px solid #06A77D;
}

.tablepress tbody tr:first-child td:first-child {
  border-top: 16px solid #082D5A;
}

.tablepress tbody tr td br {
  display: none;
}

.tablepress tbody tr td ul {
  margin-bottom: 16px;
  margin-left: 0;
  padding-left: 20px;
}

.tablepress tbody tr td ul li::marker {
  color: #1A2D71;
}

.tablepress tbody tr td p.note {
  color: #1A2D71;
  font-style: italic;
  font-weight: 600;
}

.table-wrap {
  overflow: auto;
}

@media only screen and (max-width: 767px) {
  .tablepress {
    table-layout: fixed !important;
  }

  .tablepress tbody tr td {
    padding: 12px;
    width: 250px;
  }

  .tablepress tbody tr td:first-child {
    padding: 12px;
    width: 234px !important;
    font-size: 16px;
    line-height: 24px;
  }
}

.pagination {

  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  border-radius: 200px;
  letter-spacing: 0.36px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 60px;
}

.pagination .page-numbers.current {
  background: #06A77D;
  color: #fff;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  padding: 8px 27px;
  color: #616161;
}

.pagination .page-numbers:focus {
  outline: none !important;
}

.wysiwyg-content ul.checkmark-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.wysiwyg-content ul.one-column {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wysiwyg-content ul.checkmark-list li {
  position: relative;
  padding: 12px 12px 12px 52px;
}

.wysiwyg-content ul.one-column li {
  width: 100%;
}

.wysiwyg-content ul.checkmark-list li::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  top: 12px;
  left: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14 23.9999C19.5229 23.9999 24 19.5228 24 13.9999C24 8.47703 19.5229 3.99988 14 3.99988C8.47715 3.99988 4 8.47703 4 13.9999C4 19.5228 8.47715 23.9999 14 23.9999ZM19.4312 12.5081C19.8818 12.0575 19.8818 11.3269 19.4312 10.8763C18.9807 10.4257 18.2501 10.4257 17.7995 10.8763L13.1225 15.5533L10.8462 13.846C10.3364 13.4637 9.61312 13.567 9.23077 14.0768C8.84842 14.5866 8.95174 15.3098 9.46154 15.6922L12.5385 17.9999C12.9978 18.3444 13.6406 18.2987 14.0467 17.8927L19.4312 12.5081Z' fill='%23978A60'/%3E%3C/svg%3E%0A");
}