/* --------------------------------------

Custom styles

--------------------------------------- */
*:root {
  --color-primary: #21375b;
  --color-secondary: #30d5fd;
  --color-accent: #ee7348;
  --color-surface: #f4fbff;
  --heading-font: "arvo", serif;
  --body-font: "poppins", sans-serif;
}
/* --------------------------------------

Google fonts

--------------------------------------- */
/* arvo-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Arvo";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/arvo-v23-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* arvo-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Arvo";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/arvo-v23-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* arvo-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Arvo";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/arvo-v23-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins-v23-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v23-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/poppins-v23-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins-v23-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins-v23-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/poppins-v23-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* --------------------------------------

Global

--------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}
html body.bootstrap-page {
  font-family: var(--body-font) !important;
  font-size: 24px !important;
  line-height: 1.6 !important;
  font-weight: 400;
  color: var(--color-primary);
}
.bootstrap-page h1, .bootstrap-page h2, .bootstrap-page h3, .bootstrap-page h4, .bootstrap-page h5, .bootstrap-page h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 0.7em;
  letter-spacing: normal;
}
.bootstrap-page h1, .bootstrap-page .text-size-h1 {
  font-size: 3.75rem;
}
.bootstrap-page h2, .bootstrap-page .text-size-h2 {
  font-size: 3rem;
}
.bootstrap-page h3, .bootstrap-page .text-size-h3, .bootstrap-page .text-size-h3 p {
  font-size: 2.438rem;
}
.bootstrap-page h4, .bootstrap-page .text-size-h4 {
  font-size: 1.944rem;
}
.bootstrap-page p, .bootstrap-page ul, .bootstrap-page ol {
  font-family: var(--body-font);
  font-size: 24px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1em;
}
.bootstrap-page ul li, .bootstrap-page ol li {
  margin-bottom: 0.5em;
}
.bootstrap-page .large-simibold {
  font-size: 1.75rem;
  font-weight: 600;
}
.bootstrap-page .heading-font-small-regular {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-accent);
}
.bootstrap-page section {
  padding: 5rem 0 5rem;
}
.bootstrap-page .col-pl-2 {
  padding-left: 2rem;
}
.bootstrap-page .container {
  padding-top: 0 !important;
}
/* ----- Backgrounds ----- */
.bootstrap-page .color-primary-bg {
  background-color: var(--color-primary);
}
.bootstrap-page .color-surface-bg {
  background-color: var(--color-surface);
}
/* ----- Text color ----- */
.bootstrap-page .heading-white h2, .bootstrap-page .heading-white h3 {
  color: #fff;
}
.bootstrap-page .color-accent-text, .bootstrap-page .color-accent-text p {
  color: var(--color-accent);
}
.bootstrap-page .color-primary-text p {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--color-primary);
}
/* ----- Link styling ----- */
.bootstrap-page a:link, .bootstrap-page a:visited {
  color: var(--color-secondary);
  text-decoration: underline;
}
.bootstrap-page a:hover, .bootstrap-page a:active, .bootstrap-page a:focus {
  color: var(--color-primary);
  text-decoration: none;
  opacity: 0.9;
}
.bootstrap-page .book-stores a:link {
  text-decoration: none;
}
/* ----- Buttons ----- */
.bootstrap-page .large-btn {
  font-family: var(--heading-font);
  color: #fff !important;
  font-size: 1.75rem;
  font-weight: 700;
  background-color: var(--color-accent);
  padding: 0.4em 1.4em 0.4em 1.4em;
  text-decoration: none !important;
  word-break: break-word;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
}
.bootstrap-page .large-btn:hover {
  color: #ffffff;
  background: var(--color-secondary);
  text-decoration: none;
}
.bootstrap-page .large-btn.white-secondary {
  background-color: #fff;
  color: var(--color-primary) !important;
}
.bootstrap-page .large-btn.white-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary) !important;
}
.bootstrap-page .large-btn.white-accent {
  background-color: #fff;
  color: var(--color-accent) !important;
}
.bootstrap-page .large-btn.white-accent:hover {
  background-color: var(--color-accent);
  color: var(--color-primary) !important;
}
.bootstrap-page .large-btn.secondary-accent {
  background-color: var(--color-secondary);
}
.bootstrap-page .large-btn.secondary-accent:hover {
  background-color: var(--color-accent);
}
/* --------------------------------------

Nav menu

--------------------------------------- */
.bootstrap-page .w-nav-menu .nav-link-2.w-nav-link {
  display: inline-block;
  transition: transform 0.3s ease;
  color: white;
  text-decoration: none;
}
.bootstrap-page .w-nav-menu .nav-link-2.w-nav-link:hover {
  color: #ff6a39;
}
/* --------------------------------------

Homepage

--------------------------------------- */
.bootstrap-page .home-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.bootstrap-page .home-header h1 {
  color: #fff;
}
.bootstrap-page .home-header p {
  font-family: var(--body-font);
  line-height: 130%;
}
.bootstrap-page .btn-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.bootstrap-page .color-accent-underline {
  box-shadow: inset 0 -8px 0 0 var(--color-accent);
}
.bootstrap-page .color-secondary-underline {
  box-shadow: inset 0 -8px 0 0 var(--color-secondary);
}
/* ----- Book stores dropdown ----- */
.bootstrap-page .book-stores .dropdown-menu, .bootstrap-page .book-stores li.dropdown-menu {
  font-family: var(--body-font) !important;
  font-size: 1.125rem;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--color-accent);
  overflow: hidden;
}
.bootstrap-page .book-stores .dropdown-item {
  font-weight: 400;
}
.bootstrap-page .book-stores a.dropdown-item {
  color: var(--color-primary);
}
.bootstrap-page .book-stores .dropdown-item:hover, .bootstrap-page .book-stores .dropdown-item:active {
  color: var(--color-accent);
  background-color: transparent;
}
.bootstrap-page .book-stores a.dropdown-item {
  font-family: var(--body-font);
}
.bootstrap-page .book-stores .dropdown-header {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.2rem 1rem;
  color: var(--color-primary);
}
.bootstrap-page .book-stores .dropdown-header span {
  box-shadow: inset 0 -3px 0 0 var(--color-secondary);
}
/* ----- Sample download modal ----- */
.bootstrap-page #sampleDownload .modal-content {
  background-color: #fff;
  border: 1px solid var(--color-accent);
  border-radius: 0;
  position: relative;
  padding: 2rem;
}
.bootstrap-page #sampleDownload .btn-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
}
.bootstrap-page #sampleDownload h2 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
}
.bootstrap-page #sampleDownload .small {
  font-size: 0.875rem;
  font-style: italic;
  color: #000000;
}
.bootstrap-page #sampleDownload input[type="text"], .bootstrap-page #sampleDownload input[type="email"] {
  font-family: var(--heading-font);
  width: 100%;
  border: 1px solid var(--color-primary);
  padding: 0.5em 1em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--color-accent) !important;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.bootstrap-page #sampleDownload input[type="submit"] {
  font-family: var(--heading-font);
  color: #fff !important;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: var(--color-secondary);
  border: none;
  padding: 0.4em 1.4em 0.4em 1.4em;
  text-decoration: none !important;
  word-break: break-word;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
}
.bootstrap-page #sampleDownload input[type="submit"]:hover {
  background: var(--color-accent);
  text-decoration: none;
}
.bootstrap-page .danger-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  column-gap: 90px;
}
.bootstrap-page .danger-zones-grid p {
  color: var(--color-primary);
}
.bootstrap-page .danger-zone-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-top: 7rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-primary);
  align-items: center;
  position: relative;
  width: 100%;
}
.bootstrap-page .danger-zone-box h3 {
  font-family: var(--body-font);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bootstrap-page .number {
  margin-top: -76px;
}
/* ----- Checkmark bullets ----- */
.bootstrap-page .checkmark-bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2; /* Two columns */
  column-gap: 3rem; /* Space between columns */
}
.bootstrap-page .checkmark-bullets li {
  font-family: var(--body-font);
  font-size: 24px;
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  padding-left: 70px; /* Space for bullet image (50px + gap) */
  break-inside: avoid; /* Prevent item break across columns */
  margin-bottom: 1.4em;
}
.bootstrap-page .checkmark-bullets li strong {
  font-weight: 700;
}
.bootstrap-page .checkmark-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em; /* Adjust as needed for vertical alignment */
  width: 50px;
  height: 50px;
  background: url("../images/check-mark-circle.png") no-repeat center center;
  background-size: contain;
}
.bootstrap-page .bird-and-clouds {
  margin-top: -175px;
}
/* ----- Testimonials ----- */
.bootstrap-page blockquote {
  color: var(--color-primary);
  font-style: normal;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  border: none;
}
.bootstrap-page blockquote p {
  color: var(--color-primary);
}
.bootstrap-page blockquote footer {
  margin: 0;
}
.bootstrap-page blockquote cite {
  font-family: var(--heading-font);
  font-size: 24px;
  color: var(--color-secondary);
  font-style: normal;
  line-height: 1.3;
  font-weight: 700;
}
.bootstrap-page blockquote cite::before {
  content: "\2014";
  margin-right: 0.5em;
}
.bootstrap-page .author-image {
  position: relative;
}
.bootstrap-page .clouds-image {
  margin-left: -30px;
}
.bootstrap-page .author-photo {
  position: absolute;
  bottom: -70px;
  right: 0px;
  border: 3px solid #fff;
}
/* --------------------------------------

Footer

--------------------------------------- */
.bootstrap-page .footer-left-block {
  font-size: 14px;
}
.bootstrap-page .footer-left-block .text-block {
  padding-bottom: 0;
}
.bootstrap-page .footer-left-block a:link, .bootstrap-page .footer-left-block a:visited {
  color: #fff;
  text-decoration: none;
}
.bootstrap-page .footer-left-block a:hover, .bootstrap-page .footer-left-block a:active, .bootstrap-page .footer-left-block a:focus {
  color: #ff6a39;
}
.bootstrap-page .footer-right-block a:link, .bootstrap-page .footer-right-block a:visited {
  color: #ff6a39 !important;
  text-decoration: none;
}
.bootstrap-page .footer-right-block a:hover, .bootstrap-page .footer-right-block a:active, .bootstrap-page .footer-right-block a:focus {
  color: #ff6a39 !important;
}
/* --------------------------------------

Formkit form

--------------------------------------- */
.bootstrap-page .formkit-form .large-btn {
  font-size: 1.5rem;
}
/* --------------------------------------

Media queries

--------------------------------------- */
/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  .bootstrap-page .author-photo {
    bottom: -70px;
    width: 340px;
  }
}
/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .bootstrap-page .author-photo {
    bottom: -20px;
    width: 260px;
  }
  .bootstrap-page .navbar-brand img {
    width: 200px;
    height: auto;
  }
}
/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .bootstrap-page h1, .bootstrap-page .text-size-h1 {
    font-size: 3rem;
  }
  .bootstrap-page h2, .bootstrap-page .text-size-h2 {
    font-size: 2.25rem;
  }
  .bootstrap-page h3, .bootstrap-page .text-size-h3, .bootstrap-page .text-size-h3 p {
    font-size: 1.688rem;
  }
  .bootstrap-page h4, .bootstrap-page .text-size-h4 {
    font-size: 1.25rem;
  }
  .bootstrap-page .large-btn, .bootstrap-page .large-simibold {
    font-size: 1.375rem;
  }
  .bootstrap-page .heading-font-small-regular {
    font-size: 1.563rem;
  }
  .bootstrap-page .book-cover {
    width: 100%;
    max-width: 350px;
    margin: 3rem auto 0;
  }
  .bootstrap-page .danger-zones-grid {
    grid-template-columns: 1fr;
  }
  .bootstrap-page .danger-zone-box {
    margin-top: 6rem;
  }
  .bootstrap-page .checkmark-bullets ul {
    column-count: 1; /* Single column on mobile */
  }
  .bootstrap-page .bird-and-clouds {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .bootstrap-page .author-image {
    width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
  .bootstrap-page .col-pl-2 {
    padding-left: 0;
  }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .bootstrap-page section {
    padding: 3rem 0 3rem;
  }
  .bootstrap-page .btn-row {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
  }
  body.page-template-page-freedombydesign, .bootstrap-page p, .bootstrap-page ul, .bootstrap-page ol, .bootstrap-page blockquote cite, .bootstrap-page .checkmark-bullets li {
    font-size: 18px;
  }
  .bootstrap-page .checkmark-bullets li {
    padding-left: 55px;
  }
  .bootstrap-page .checkmark-bullets li::before {
    width: 35px;
    height: 35px;
  }
  .bootstrap-page .author-image {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
  .bootstrap-page .author-photo {
    bottom: -20px;
    width: 220px;
  }
  .bootstrap-page .clouds-image {
    margin-left: -10px;
  }
  .bootstrap-page .book-stores .large-btn {
    width: 100%;
  }
}
/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .bootstrap-page h1, .bootstrap-page .text-size-h1 {
    font-size: 2.438rem;
  }
  .bootstrap-page h2, .bootstrap-page .text-size-h2 {
    font-size: 1.813rem;
  }
  .bootstrap-page h3, .bootstrap-page .text-size-h3, .bootstrap-page .text-size-h3 p {
    font-size: 1.563rem;
  }
  .bootstrap-page h4, .bootstrap-page .text-size-h4, .bootstrap-page .heading-font-small-regular {
    font-size: 1.25rem;
  }
  .bootstrap-page .large-btn {
    font-size: 1.125rem;
  }
  .bootstrap-page .danger-zone-box h3 {
    font-size: 1.375rem;
  }
  .bootstrap-page .danger-zone-box {
    margin-top: 5rem;
  }
  .bootstrap-page .book-cover {
    width: 100%;
    max-width: 230px;
    margin: 3rem auto 0;
  }
  .bootstrap-page .author-image {
    width: 280px;
  }
  .bootstrap-page .author-photo {
    width: 180px;
  }
  .bootstrap-page .number {
    margin-top: -63px;
  }
  .bootstrap-page .number img {
    width: 80px;
    height: auto;
  }
}