@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");

:root {
  /* Font families */
  --ff-main: "Roboto Slab", serif;
  --ff-secondary: "Open Sans", sans-serif;

  /* Font sizes */
  --fs-h1: 50px;
  --fs-h2: 42px;
  --fs-h2-blog: 32px;
  --fs-h3: 34px;
  --fs-h4: 28px;
  --fs-h5: 24px;
  --fs-h6: 22px;
  --fs-p-big: 18px;
  --fs-p: 18px;
  --fs-p-small: 18px;

  /* Line heights */
  --lh-h1: 110%;
  --lh-h2: 120%;
  --lh-h2-blog: 150%;
  --lh-h3: 120%;
  --lh-h4: 120%;
  --lh-h5: 120%;
  --lh-h6: 120%;
  --lh-p-big: 170%;
  --lh-p: 170%;
  --lh-p-small: 170%;

  /* Font weights */
  --fw-h1: 700;
  --fw-h2: 700;
  --fw-h2-blog: 600;
  --fw-h3: 700;
  --fw-h4: 700;
  --fw-h5: 700;
  --fw-h6: 500;
  --fw-p-big: 400;
  --fw-p: 400;
  --fw-p-small: 400;

  /* Letter Spacings */

  --ls-h1: -2%;
  --ls-h2: -2%;
  --ls-h2-blog: -0.64px;
  --ls-h3: -2%;
  --ls-h4: -2%;
  --ls-h5: -2%;
  --ls-h6: -0.48px;
  --ls-p-big: -0.4px;
  --ls-p: -0.4px;
  --ls-p: -0.28px;
}

@media (min-width: 1281px) and (max-width: 1440px) {
}
@media (min-width: 1025px) and (max-width: 1280px) {
}
@media (min-width: 981px) and (max-width: 1279px) {
}
@media (min-width: 481px) and (max-width: 980px) {
  :root {
    --fs-h1: 52px;
    --fs-h2: 42px;
    --fs-h3: 32px;
    --fs-h4: 24px;
    --fs-h5: 22px;
    --fs-h6: 20px;
    --fs-p-big: 18px;
    --fs-p: 16px;
    --fs-p-small: 14px;
  }
}
@media (max-width: 480px) {
  :root {
    --fs-h1: 42px;
    --fs-h2: 32px;
    --fs-h2-blog: 28px;
    --fs-h3: 30px;
    --fs-h4: 22px;
    --fs-h5: 20px;
    --fs-h6: 20px;
    --fs-p-big: 18px;
    --fs-p: 16px;
    --fs-p-small: 14px;
  }
}

body #page-container .et_pb_section:not(.blog-content-section) h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-h1);
  line-height: var(--lh-h1);
  font-family: var(--ff-main);
}

body #page-container .et_pb_section:not(.blog-content-section) h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-h2);
  line-height: var(--lh-h2);
  font-family: var(--ff-main);
}
body #page-container .et_pb_section:not(.blog-content-section) h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-h3);
  line-height: var(--lh-h3);
  font-family: var(--ff-main);
}
body #page-container .et_pb_section:not(.blog-content-section) h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-h4);
  line-height: var(--lh-h4);
}
body #page-container .et_pb_section:not(.blog-content-section) h5 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-h5);
  line-height: var(--lh-h5);
}
body #page-container .et_pb_section:not(.blog-content-section) h6 {
  font-size: var(--fs-h6);
  font-weight: var(--fw-h5);
  line-height: var(--lh-h5);
  font-family: var(--ff-secondary);
}
body #page-container .et_pb_section.blog-content-section h1 {
  font-size: var(--fs-h1);
}
body #page-container .et_pb_section.blog-content-section h2 {
  font-weight: 400;
  font-size: var(--fs-h3)!important;
}
body #page-container .et_pb_section.blog-content-section h3 {
  font-weight: 400;
  font-size: var(--fs-h4)!important;
}
body #page-container .et_pb_section.blog-content-section h4 {
  font-weight: 400;
  font-size: var(--fs-h5)!important;
}
body #page-container .et_pb_section.blog-content-section h5 {
  font-weight: 400;
  font-size: var(--fs-h6)!important;
}
body #page-container .et_pb_section.blog-content-section h6 {
  font-weight: 400;
  font-size: var(--fs-p-big)!important;
}

body #page-container .et_pb_section.blog-content-section strong h2 {
  font-weight: 700;
}
body #page-container .et_pb_section.blog-content-section strong h3 {
  font-weight: 700;
}
body #page-container .et_pb_section.blog-content-section strong h4 {
  font-weight: 700;
}
body #page-container .et_pb_section.blog-content-section strong h5 {
  font-weight: 700;
}
body #page-container .et_pb_section.blog-content-section strong h6 {
  font-weight: 700;
}
body,
ul,
ol,
li,
#page-container .et_pb_section:not(.blog-content-section) p {
  font-size: var(--fs-p);
  font-weight: var(--fw-p);
  line-height: var(--lh-p);
  letter-spacing: var(--ls-p);
}

#page-container .et_pb_section:not(.blog-content-section) p.big {
  font-size: var(--fs-p-big);
  font-weight: var(--fw-p-big);
  line-height: var(--lh-p-big);
  letter-spacing: var(--ls-p-big);
}
#page-container .et_pb_section:not(.blog-content-section) p.small {
  font-size: var(--fs-p-small);
  font-weight: var(--fw-p-small);
  line-height: var(--lh-p-small);
  letter-spacing: var(--ls-p-small);
}
h1,
h2,
h3,
h4,
h5,
h6,
body,
ul,
ol,
li,
p,
input,
select,
textarea,
blockquote {
  font-family: var(--ff-main);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding-bottom: 0;
}

body #page-container .et_pb_section.blog-content-section p,
body #page-container .et_pb_section.blog-content-section li {
  font-size: 18px !important;
  color: #182027 !important;
	font-family: "Open Sans" !important;
}

body #page-container .et_pb_section.blog-content-section ul,
body #page-container .et_pb_section.blog-content-section ol {
  padding-left: 40px !important;
}

@media (max-width: 480px) {
  body #page-container .et_pb_section.blog-content-section ul,
  body #page-container .et_pb_section.blog-content-section ol {
    padding-left: 20px !important;
  }
}
