:root {
  --font-heading: "IBM Plex Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-weight-medium: 500;
  --font-weight-regular: 400;
  --color-dark: #002f37;
  --color-lime: #e0e06e;
  --color-serum: #fffef2;
  --color-veil: #f4f3e8;
  --color-white: #ffffff;
  --color-black-grey: #1d1d1f;
}

:root {
  --letter-spacing-default: -0.04em;
  --letter-spacing-small: 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark);
  background-color: var(--color-serum);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--color-dark);
  transition: all 0.3s ease;
}
.post-content h4 a,
.post-content a {
  text-decoration: underline;
  font-size: 18px;
}
ul,
ol {
  list-style: none;
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

textarea {
  display: block;
  resize: none;
}

.container {
  max-width: 1592px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.theme_btn {
  background: var(--color-dark);
  border-radius: 6px;
  padding: 14px 18px;
}

.theme_btn_border {
  background: transparent;
  border: 1px solid var(--color-dark);
  color: var(--color-dark) !important;
}
.theme_btn_border span {
  color: var(--color-dark) !important;
}

.theme_btn .text {
  height: 24px;
  overflow: hidden;
}

.theme_btn .text span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
  transition: all 0.4s ease;
  text-transform: capitalize;
}
.main-header .theme_btn span {
  font-size: 16px;
}

.theme_btn:hover .text span {
  transform: translateY(-24px);
}
.theme_btn.white_btn {
  background: var(--color-white);
  padding-left: 53px;
  padding-right: 53px;
}
.theme_btn.white_btn span {
  color: var(--color-dark);
}
@media (max-width: 1500px) {
  .container {
    max-width: 1384px;
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 100%;
  }
}

.heading-block p:first-child {
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.72px;
  font-weight: 500;
  font-family: var(--font-heading);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.heading-block h2 + p {
  opacity: 60%;
  letter-spacing: -0.8px;
  font-size: 20px;
  line-height: 28px;
}

/* (Regular/1920px) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading) !important;
}
h1,
.h1 {
  font-size: 110px;
  line-height: 120px;
  font-weight: 500;
}

h2,
.h2 {
  font-size: 68px;
  line-height: 68px;
  font-weight: 500;
  letter-spacing: -2.72px;
}

h3,
.h3 {
  font-size: 56px;
  line-height: 56px;
  font-weight: 500;
}

h4,
.h4 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 500;
}

h5,
.h5 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: -0.72px;
}

h6,
.h6 {
  font-size: 32px;
  line-height: 35px;
  font-weight: 500;
}

/* --- 2. 15 INCH (Max-width 1500px) --- */
@media (max-width: 1500px) {
  h1,
  .h1 {
    font-size: 100px;
    line-height: 105px;
  }

  h2,
  .h2 {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -2.72px;
  }

  h3,
  .h3 {
    font-size: 48px;
    line-height: 49px;
  }

  h4,
  .h4 {
    font-size: 38px;
    line-height: 44px;
  }

  h5,
  .h5 {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -0.6px !important;
  }

  h6,
  .h6 {
    font-size: 28px;
    line-height: 32px;
  }

  body {
    font-size: 16px;
    line-height: 24px;
  }
}

/* --- 3. 13 INCH (Max-width 1400px) --- */
@media (max-width: 1400px) {
  h1,
  .h1 {
    font-size: 80px;
    line-height: 85px;
  }

  h2,
  .h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2.24px;
  }

  h3,
  .h3 {
    font-size: 40px;
    line-height: 40px;
  }

  h4,
  .h4 {
    font-size: 34px;
    line-height: 40px;
  }

  h5,
  .h5 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px !important;
  }
  h6,
  .h6 {
    font-size: 24px;
    line-height: 32px;
  }
  .heading-block p:first-child {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

/* --- 4. TABLET LARGE (Max-width 1199px) --- */
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 60px;
    line-height: 65px;
  }
  h2,
  .h2 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -2px;
  }

  h3,
  .h3 {
    font-size: 36px;
    line-height: 36px;
  }

  h4,
  .h4 {
    font-size: 32px;
    line-height: 38px;
  }

  /* h5,
    .h5 {
        font-size: 26px;
        line-height: 30px;
        letter-spacing: -0.52px !important;

    } */

  h6,
  .h6 {
    font-size: 22px;
    line-height: 30px;
  }

  body {
    font-size: 18px;
    line-height: 26px;
  }
  .heading-block h2 + p {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.72px;
  }
}

/* --- 5. TABLET SMALL (Max-width 991px) --- */
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 60px;
    line-height: 65px;
  }
  h2,
  .h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.6px;
  }

  h3,
  .h3 {
    font-size: 34px;
    line-height: 34px;
  }

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

  /* h5,
    .h5 {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.48px !important;

    } */

  h6,
  .h6 {
    font-size: 21px;
    line-height: 28px;
  }
}

/* --- 6. MOBILE (Max-width 767px) --- */
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2,
  .h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1.28px;
  }

  h3,
  .h3 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.54px;
  }

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

  /* h5,
    .h5 {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.48px !important;

    } */

  h6,
  .h6 {
    font-size: 20px;
    line-height: 25px;
  }
  .heading-block p:first-child {
    font-size: 14px;
  }
  .heading-block h2 + p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.64px;
  }
  body {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Header CSS */
.default-content {
  float: left;
  width: 100%;
  min-height: 450px;
}

.main-header {
  /* padding-top: 32px; */
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-left: 20px;
  padding-right: 20px;
  transition: transform 0.3s ease;
}
body.admin-bar .main-header {
  top: 62px;
}
.main-header.nav-up {
  transform: translateY(-200%);
}
.main-header.nav-up.sticky {
  top: 0;
  transform: translateY(0%);
  animation: 1.2s ease 0s normal both 1 running fixedAnim;
}
.main-header.nav-up.full-width-bg {
  background-color: var(--color-serum);
}
body.admin-bar .main-header.nav-up.sticky {
  top: 32px;
}
header.main-header.nav-up.full-width-bg.sticky:has(.mobile-nav-overlay.open) {
  transform: none;
}

@media (max-width: 782px) {
  body.admin-bar .main-header.nav-up {
    top: 46px;
  }
  body.logged-in .main-header.nav-up.sticky {
    top: 0px;
  }
}
/*
body.admin-bar header.main-header.show-header.full-width-header {
  top: 32px;
  background-color: var(--color-serum);
}
body header.main-header.show-header.full-width-header {
  top: 0;
  background-color: var(--color-serum);
}
.hide-header {
  transform: translateY(-150%);
}

.main-header.hide-header {
  transform: translateY(-150%);
}
.show-header {
  transform: translateY(0);
}*/
.show-header:has(.mobile-nav-overlay.open) {
  transform: none;
}
.main-header .container {
  background-color: var(--color-serum);
  border-radius: 12px;
  max-width: 1552px;
}

.header_wrapper {
  /* background: var(--color-serum); */
  border-radius: 12px;
  /* padding: 0 24px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 42px;
}

.header-left .logo a img {
  width: 148px;
  height: 40px;
}

.main-nav .nav-list {
  display: flex;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-item a {
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
  position: relative;
  padding: 34px 0;
}

.nav-item a:hover,
.main-nav .nav-list > .current-menu-item.nav-item > a {
  text-decoration: underline;
}

.nav-item.has-dropdown > a {
  padding-right: 19px;
}

.nav-item.has-dropdown > a::after {
  content: "";
  background-image: url(../images/desktop-dropdown-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 10px;
  height: 6px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.dropdown-menu {
  padding-top: 16px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.nav-item.has-dropdown > a:has(+ .dropdown-menu[style="display: flex;"]):after {
  transform: rotate(180deg);
}
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu::before {
  content: "";
  background-color: transparent;
  width: 100%;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown-menu ul {
  background: var(--color-serum);
  border-radius: 12px;
  width: fit-content;
  min-width: 100px;
  padding: 24px;
}

.dropdown-menu ul li {
  line-height: 0;
  margin-bottom: 20px;
}

.dropdown-menu ul li:last-child {
  margin-bottom: 0;
}

.dropdown-menu ul li a {
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
  white-space: nowrap;
  padding: 0;
}

.dropdown_resources_content {
  background: var(--color-serum);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 32px;
  min-width: 597px;
}

.dropdown-resources ul {
  border-right: 1px solid rgb(0 47 55 / 10%);
  border-radius: 0;
  min-width: initial;
  padding: 0 32px 0 0;
}

.resource-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dropdown_resources_content ul li.active a {
  text-decoration: underline;
}

.resource_preview_image {
  position: relative;
  padding-bottom: 92%;
}

.resource_preview_image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.resource_preview_bottom_content {
  margin-top: 6px;
}

.resource_preview_bottom_content .date p {
  font-weight: var(--font-weight-regular);
  font-size: 10px;
  line-height: 14.4px;
  color: rgb(0 47 55 / 70%);
  margin-bottom: 5px;
}

.resource_preview_bottom_content .title p {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  font-size: 12px;
  line-height: 16px;
  color: var(--color-dark);
  letter-spacing: -0.24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.resource_preview_bottom_content .read-more a {
  font-weight: var(--font-weight-medium);
  font-size: 12px;
  line-height: 14.4px;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  padding: 0;
  gap: 5px;
}
.resource_preview_bottom_content .read-more .btn {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 47, 55, 0.1);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.resource_preview_bottom_content .read-more .btn svg {
  width: 7px;
  height: 6px;
  transition: transform 0.2s ease-out;
}
.resource_preview_bottom_content .read-more:hover .btn svg {
  animation: arrow-reenter 0.4s ease forwards;
}
p:empty {
  display: none;
}
@keyframes arrow-reenter {
  0% {
    transform: translateY(0); /* Normal position */
    opacity: 1;
  }
  30% {
    transform: translateY(-10px); /* Move up & disappear */
    opacity: 0;
  }
  60% {
    transform: translateY(10px); /* Jump to bottom */
    opacity: 0;
  }
  100% {
    transform: translateY(0); /* Come up to original */
    opacity: 1;
  }
}
.resource_preview_bottom_content .read-more::before,
.resource_preview_bottom_content .read-more::after {
  display: none;
}

/* .resource_preview_bottom_content .read-more a img {
    width: 12px;
    height: 12px;
    object-fit: cover;
} */

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-actions .btn {
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
}

.header-actions .btn:hover,
.header-actions .btn.current-menu-item {
  text-decoration: underline;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-toggle .menu-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  background: var(--color-dark);
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  cursor: pointer;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.mobile-nav-overlay.open {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--color-veil);
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px 20px 32px 20px;
  overflow-y: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
}

.mobile-nav-overlay.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
  padding: 16px;
  background: var(--color-serum);
  border-radius: 12px;
}

.mobile-header .logo img {
  width: 148px;
  min-width: 148px;
  height: 40px;
  object-fit: contain;
}

.mobile-header .menu-close-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  background: var(--color-dark);
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  cursor: pointer;
}

.mobile-nav-list {
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-nav-item {
  margin-bottom: 20px;
}

.mobile-nav-item:last-child {
  margin-bottom: 0;
}

.mobile-nav-item > a {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  font-size: 32px;
  line-height: 32px;
  color: var(--color-dark);
  letter-spacing: -1.28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mobile-nav-item.has-dropdown > a {
  position: relative;
}

.mobile-nav-item.has-dropdown > a::after {
  content: "";
  background-image: url("../images/mobile-dropdown-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 8px;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-item.has-dropdown.open > a::after {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  margin-top: 15px;
  padding-left: 20px;
  display: none;
}

.mobile-dropdown-menu li {
  margin-bottom: 15px;
}

.mobile-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.mobile-dropdown-menu li a {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #002f37;
}

.mobile-footer-action {
  padding-top: 20px;
  flex-shrink: 0;
}

.mobile-footer-action .btn-contact {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: var(--color-serum);
  background: var(--color-dark);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}
.single .post-content p:empty.single .post-content p em:empty,
.single .post-content p:empty {
  display: none;
}

@media (min-width: 1200px) {
  .header-left .logo a img {
    width: 225px;
    height: 100px;
  }
  .nav-item a,
  .header-actions .btn,
  .main-header .theme_btn span {
    font-size: 24px;
  }
}

/* --- Responsive Design --- */

@media (max-width: 1500px) {
  /* .main-header {
        padding-top: 24px;
    } */
}

@media (max-width: 1400px) {
  .dropdown_resources_content {
    min-width: 570px;
    gap: 20px;
  }

  .dropdown-resources ul {
    padding: 0 20px 0 0;
  }
}

@media (max-width: 1199px) {
  /* .main-header {
        padding-top: 20px;
    } */

  .header-left {
    gap: 20px;
  }

  .dropdown_resources_content {
    gap: 5px;
    padding: 15px;
    min-width: 415px;
  }

  .dropdown-resources ul {
    padding: 0 5px 0 0 !important;
  }

  .dropdown-menu ul li {
    margin-bottom: 15px;
  }

  .resource-previews {
    gap: 10px;
  }

  .dropdown-menu ul li a {
    font-size: 14px;
    line-height: 20px;
  }

  .dropdown-menu ul {
    padding: 15px;
  }
  .main-nav .nav-list {
    gap: 17px;
  }
}

@media (max-width: 991px) {
  /* .main-header {
        padding-top: 16px;
    } */

  .main-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-left {
    gap: 0;
  }

  .header_wrapper {
    padding: 13px 0px;
  }
}

@media (max-width: 350px) {
  .header_wrapper {
    padding: 10px 10px;
  }

  .mobile-menu-toggle .menu-btn {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 20px;
  }

  .mobile-nav-content {
    padding: 16px 15px 32px 15px;
  }

  .mobile-header {
    padding: 10px;
  }
  .main-header .container {
    padding: 0 !important;
  }
}

/* Footer CSS */

.site-footer {
  background-color: #f7f7f0;
  padding: 80px 0 32px;
  float: left;
  width: 100%;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.footer-logo img {
  max-width: 148px;
  height: auto;
  margin-top: 10px;
}

.footer-columns {
  display: flex;
  gap: 64px;
  flex-grow: 1;
  max-width: 591px;
  justify-content: space-between;
}
.footer-column:nth-of-type(2) {
  max-width: 230px;
}
.column-header,
.subscribe-header {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 24px;
  font-family: var(--font-body) !important;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 4px;
  line-height: 24px;
}

.footer-column a,
.footer-legal-social a,
.subscribe-consent {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  transition: color 0.3s;
}
.footer-legal-social a {
  font-size: 14px;
}

.footer-subscribe {
  max-width: 465px;
}

.footer-subscribe p {
  margin-bottom: 16px;
  line-height: 24px;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 24px;
  font-weight: 500;
}

.contact-form p {
  display: flex;
  border: 1px solid var(--color-dark);
  align-items: center;
  border-radius: 6px;
}
.footer-subscribe p:has(input[type="email"]) {
  margin-bottom: 7px;
}
.contact-form input[type="email"] {
  border: 0;
  padding: 16px 0 16px 16px;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  color: var(--color-dark);
  opacity: 1;
}
footer .subscribe-consent {
  font-size: 14px;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  font-size: 12px;
}
.contact-form input[type="email"]::placeholder {
  color: var(--color-dark);
  opacity: 70%;
}
.contact-form .wpcf7-submit {
  border-radius: 4px;
  background-color: var(--color-dark);
  padding: 14.5px 30px;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
.contact-form .wpcf7-form-control-wrap {
  width: calc(100% - 137px);
}
.subscribe-consent {
  margin-top: 5px;
  line-height: 1.4;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--color-dark);
  opacity: 10%;
  margin: 32px auto;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin: 0 auto;
  line-height: 24px;
  font-weight: 500;
  gap: 24px;
}
.footer-bottom-bar p:empty {
  display: none;
}

.copyright {
}

.footer-legal-social {
  display: flex;
  align-items: center;
  gap: 24px;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.social-icons a {
  color: #0b222c;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.wpcf7-spinner {
  display: none;
}
@media (max-width: 1500px) {
  .column-header,
  .subscribe-header {
    font-size: 20px;
  }
}
@media (max-width: 1299px) {
  .footer-columns {
    gap: 44px;
  }
}

@media (max-width: 1199px) {
  .footer-main-content {
    flex-wrap: wrap;
  }
  .footer-columns {
    width: calc(100% - 228px);
  }
  .footer-subscribe {
    max-width: 400px;
  }
  .column-header,
  .subscribe-header {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .footer-main-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
  }
  .footer-bottom-bar {
    gap: 10px;
  }

  .footer-columns {
    width: 100%;
    justify-content: space-between;
    gap: 30px;
    max-width: none;
  }

  .footer-column {
    flex: 1;
    min-width: unset;
  }

  .footer-subscribe {
    max-width: 500px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-column {
    padding: 27px 0;
    border-top: 1px solid rgba(0, 47, 55, 0.1);
    position: relative;
    max-width: 100% !important;
  }
  .footer-columns .footer-column:last-child {
    border-bottom: 1px solid rgba(0, 47, 55, 0.1);
  }
  .contact-form p {
    flex-direction: column;
    border: 0;
    border-radius: 0;
    gap: 8px;
  }
  .subscribe-consent {
    margin-bottom: 0 !important;
  }
  .contact-form p br {
    display: none;
  }

  .footer-divider {
    margin-top: 48px;
  }
  .site-footer {
    padding: 40px 0 32px;
  }
  .contact-form .wpcf7-form-control-wrap {
    width: 100%;
  }
  .contact-form input[type="email"] {
    border: 1px solid var(--color-dark);
    border-radius: 6px;
    width: 100%;
  }
  .contact-form .wpcf7-submit {
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 0px;
  }

  .column-header {
    margin-bottom: 5px;
  }

  .footer-column ul {
    display: none;
    padding-top: 15px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-legal-social {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal-social a {
    margin-right: auto;
  }

  .social-icons {
    margin: auto;
    order: 1;
    margin-bottom: 8px;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
  }
  .footer-bottom-bar > P {
    order: 2;
  }
  .footer-bottom-bar .footer-legal-social {
    order: 3;
  }
  .column-header,
  .subscribe-header {
    font-size: 18px;
    line-height: 24px;
  }
  .footer-column a,
  .footer-legal-social a,
  .subscribe-consent,
  .footer-bottom-bar {
    font-size: 14px;
    line-height: 20px;
  }
  span.footer-toggle {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    background-image: url(../images/chevron-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    top: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .footer-toggle.active {
    transform: rotate(180deg);
  }
  .footer-column li {
    margin-bottom: 10px;
  }
  .section-trigger ul li.active a {
    padding-bottom: 0px;
  }
  .section-trigger ul {
    gap: 10px;
  }
}

.slick-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.slick-dots li button {
  font: 0;
  padding: 0;
  border: 0;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 47, 55, 0.1);
  width: 8px;
  height: 8px;
  font-size: 0;
  border-radius: 50px;
}
.slick-dots li.slick-active button {
  width: 21px;
  border-radius: 8px;
  background-color: var(--color-dark);
}

/* breadcumb */

.section-trigger {
  background-color: var(--color-veil);
  padding: 20px 0;
  position: sticky;
  top: 0px;
  left: 0;
  right: 0;
  float: left;
  width: 100%;
  z-index: 5;
  margin-bottom: 100px;
  transition: all 0.3s ease-in-out;
}
body:has(.main-header.nav-up.sticky) .section-trigger {
  top: 106px;
}
body:has(.main-header.nav-up.sticky).admin-bar .section-trigger {
  top: 124px;
}
.section-trigger ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.section-trigger ul li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -0.36px;
}
.section-trigger ul li.active a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-dark);
}
.error-404.not-found {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 254, 242, 1);
}

.error-404.not-found .page-title {
  font-size: 200px;
  line-height: 200px;
  text-align: center;
}
.error-404.not-found .page-content {
  max-width: 630px;
  text-align: center;
}

.error-404.not-found .page-content a {
  margin-top: 24px;
}
.default-content-main {
  padding-top: 268px;
  padding-bottom: 200px;
}
.default-content-main .title {
  margin-bottom: 80px;
  text-align: center;
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1501px) {
  .default-content-main .page-content {
    max-width: 960px !important;
  }
}
.default-content-main .page-content {
  max-width: 888px;
  margin: auto;
}
.default-content-main .page-content h1,
.default-content-main .page-content h2,
.default-content-main .page-content h3,
.default-content-main .page-content h4,
.default-content-main .page-content h5,
.default-content-main .page-content h6,
.single .post-content h1,
.single .post-content h2,
.single .post-content h3,
.single .post-content h4,
.single .post-content h5,
.single .post-content h6 {
  margin-bottom: 24px;
  margin-top: 48px;
}
.default-content-main .page-content > *:first-child,
.single .post-content > *:first-child {
  margin-top: 0;
}
.page-template-full-width .main-header .container,
.single .main-header .container {
  background-color: var(--color-veil);
  border: 1px solid #002f371a;
}
.page-template-full-width .main-header .container .header_wrapper,
.single .main-header .container .header_wrapper {
  background-color: var(--color-veil);
}
.default-content-main .page-content p,
.single .post-content p {
  opacity: 60%;
  margin-bottom: 20px;
}
.default-content-main .page-content ul li,
.default-content-main .page-content ol li,
.single .post-content ul li,
.single .post-content ol li {
  color: rgba(0, 47, 55, 0.6);
}
.default-content-main .page-content ul,
.default-content-main .page-content ol,
.single .post-content ul,
.single .post-content ol {
  padding-left: 20px;
  list-style: disc;
}
.default-content-main .page-content ul li::marker,
.default-content-main .page-content ol li::marker,
.single .post-content ul li::marker,
.single .post-content ol li::marker {
  color: var(--color-dark);
}
.default-content-main .page-content ul li strong,
.default-content-main .page-content ol li strong,
.single .post-content ul li strong,
.single .post-content ol li strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.default-content-main .page-content ul li:not(:last-child),
.default-content-main .page-content ol li:not(:last-child),
.single .post-content ul li:not(:last-child),
.single .post-content ol li:not(:last-child) {
  margin-bottom: 20px;
}
.single-page-content {
  overflow: hidden;
}
.single:has(.single-page-content) {
  padding-top: 135px;
}
.single .back-btn a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  background-color: var(--color-veil);
  border-radius: 6px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 47, 55, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
.single .header-block {
  padding-top: 120px;
}
.single .header-block {
  max-width: 1260px;
  margin: auto;
}
.single .header-block .meta-block {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.single .header-block .meta-block .cate ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single .header-block .meta-block .time {
  width: 65px;
}
.single .header-block .meta-block .cate ul li a,
.single .header-block .meta-block .time,
.single .related-cat ul li a,
.reading-time {
  background-color: rgba(0, 47, 55, 0.1);
  padding: 1px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0;
  display: block;
}
/* .single .featured-img{
    padding-top: 80px;
} */
.single .header-block .meta-block .time,
.reading-time,
.page-template-full-width .header-top-bar {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.single .header-block .meta-block .reading-time {
  flex-shrink: 0;
}
.single .header-block .meta-block .cate a {
  text-transform: capitalize;
}
.page-template-full-width .header-top-bar {
  justify-content: center;
  margin-bottom: 24px;
}
.single .title h1 {
  text-align: center;
}
.single .featured-img {
  padding-top: 80px;
}
.single .featured-img img {
  border-radius: 12px;
  width: auto;
  margin: auto;
}
.single .post-content {
  max-width: 1060px;
  padding-top: 80px;
  margin: auto;
  padding-bottom: 100px;
}
.single .post-content figure {
  width: 100% !important;
}
.single .post-content img {
  width: 100%;
  border-radius: 12px;
  margin-top: 48px;
  max-width: max-content;
  margin-bottom: 30px;
}
.single .post-content figcaption {
  margin-top: 16px;
}
.single .post-content figcaption,
.single .post-share-block p {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
  opacity: 40%;
  padding-left: 17px;
}
.single .post-share-block {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 28, 40, 0.1);
}
.single .post-share-block ul li {
  list-style: none;
  margin: 0 !important;
}
.single .post-share-block ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.single .post-share-block ul img {
  margin: 0;
  width: 40px;
}
.single .post-share-block p {
  opacity: 60%;
  margin-bottom: 16px;
  padding: 0;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip:nth-child(2) {
  display: block !important;
  position: absolute;
}
.wpcf7-response-output {
  font-size: 16px;
  line-height: 24px;
}
.get_in_touch_col_wrap .form_btn input[type="submit"] {
  cursor: pointer;
}
.single-page-content .table-wrapper {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.single-page-content table {
  border: 1px solid #002f371a;
  margin: 0 0 15px;
  text-align: left;
  width: 100%;
}
.single-page-content table td,
.single-page-content table th,
.single-page-content table tr {
  padding: 10px;
  max-width: 100%;
}
.single-page-content tr:not(:first-child) td {
  border-top: 1px solid #eee;
}
@media (max-width: 1499px) {
  .wpcf7-response-output {
    font-size: 20px;
    line-height: 26px;
  }
  .error-404.not-found .page-content p,
  .default-content-main .page-content p,
  .default-content-main .page-content ul li,
  .default-content-main .page-content ol li,
  .single .post-content p,
  .single .post-content ul li,
  .single .post-content ol li {
    font-size: 16px;
    line-height: 24px;
  }
  .single .post-content figcaption,
  .single .post-share-block p {
    font-size: 14px;
    line-height: 22px;
  }
  .single .header-block {
    max-width: 1080px;
    margin: auto;
  }
  .single .post-content {
    max-width: 888px;
  }
}
@media (max-width: 1199px) {
  .single .header-block {
    padding-top: 80px;
  }
  .featured-img,
  .single .post-content {
    padding-top: 60px;
  }
  body:has(.main-header.nav-up.sticky) .section-trigger {
    top: 92px;
  }
}
@media (max-width: 991px) {
  .section-trigger ul {
    gap: 16px;
  }
  .section-trigger {
    margin-bottom: 50px;
  }

  .section-trigger ul li a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.28px;
  }
  body:has(.main-header.nav-up.sticky).admin-bar .section-trigger,
  body:has(.main-header.nav-up.sticky) .section-trigger {
    top: 72px;
  }
}
@media (max-width: 767px) {
  .wpcf7-form.invalid .contact-form p {
    gap: 24px;
  }
  .wpcf7-response-output {
    font-size: 16px;
    line-height: 22px;
  }
  .error-404.not-found .page-title {
    font-size: 100px;
    line-height: 100px;
  }
  .single .header-block {
    padding-top: 60px;
  }
  .featured-img,
  .single .post-content,
  .single .featured-img {
    padding-top: 48px;
  }
  .single .post-content {
    padding-bottom: 50px;
  }
  .single .post-content figcaption {
    padding-left: 10px;
  }
  .default-content-main .page-content h1,
  .default-content-main .page-content h2,
  .default-content-main .page-content h3,
  .default-content-main .page-content h4,
  .default-content-main .page-content h5,
  .default-content-main .page-content h6,
  .single .post-content h1,
  .single .post-content h2,
  .single .post-content h3,
  .single .post-content h4,
  .single .post-content h5,
  .single .post-content h6 {
    margin-bottom: 16px;
    margin-top: 30px;
  }
  .single .post-share-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .single .post-share-block ul {
    flex-wrap: wrap;
  }
  .single-page-content table td,
  .single-page-content table th,
  .single-page-content table tr {
    font-size: 16px;
    line-height: 24px;
  }
  .default-content-main {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  /* .error-404.not-found .page-title{
    font-size: 60px;
    line-height: 60px;
} */
}

.main-nav #menu-header-menu li.d-md-none.d-lg-none {
  display: none !important;
}
section.herobanner-section + .container {
  text-align: center;
  padding: 50px 15%;
}

@media (max-width: 575px) {
  section.herobanner-section + .container {
    padding: 50px 15px;
  }
}
