/*!
* Bootstrap v5.0.0-beta2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}

*,
::after,
::before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
	
	@supports (-moz-appearance: none) {
		scrollbar-width: thin;
		scrollbar-color: var(--color-gray-100);
		* {
			scrollbar-width: thin;
			scrollbar-color: transparent transparent;

			&:hover,
			&:focus {
				scrollbar-color: var(--color-gray-200);
			}
		}
	}
}

html {
  scroll-padding-top: 9rem;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 2.5rem;
  }
}
.h2,
h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  .h2,
  h2 {
    font-size: 2rem;
  }
}
.h3,
h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  .h3,
  h3 {
    font-size: 1.75rem;
  }
}
.h4,
h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  .h4,
  h4 {
    font-size: 1.5rem;
  }
}
.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #111;
  background: #f7f7f7;
  color: #222;
  font-style: italic;
  line-height: 1.6;
  border-radius: 6px 8px 8px 6px;
}

/* Attribution/citation */
blockquote footer,
blockquote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-size: .9rem;
  color: #555;
}
blockquote cite::before {
  content: "— ";
}

.wp-block-quote p {
  margin-bottom: 0 !important;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: white !important;
  word-wrap: break-word;
  background-color: #2a3137;
  padding: 20px;
  border-radius: 20px;
}

a > code {
  color: inherit;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
@media (max-width: 992px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) / 1.2);
    padding-left: calc(var(--bs-gutter-x) / 1.2);
  }
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/*# sourceMappingURL=bootstrap.min.css.map */
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 19, 2021 */
@font-face {
  font-family: "latoblack";
  src: url("../fonts/lato-black-webfont.eot");
  src: url("../fonts/lato-black-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/lato-black-webfont.woff2") format("woff2"),
    url("../fonts/lato-black-webfont.woff") format("woff"),
    url("../fonts/lato-black-webfont.ttf") format("truetype"),
    url("../fonts/lato-black-webfont.svg#latoblack") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoblack_italic";
  src: url("../fonts/lato-blackitalic-webfont.eot");
  src: url("../fonts/lato-blackitalic-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lato-blackitalic-webfont.woff2") format("woff2"),
    url("../fonts/lato-blackitalic-webfont.woff") format("woff"),
    url("../fonts/lato-blackitalic-webfont.ttf") format("truetype"),
    url("../fonts/lato-blackitalic-webfont.svg#latoblack_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latobold";
  src: url("../fonts/lato-bold-webfont.eot");
  src: url("../fonts/lato-bold-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/lato-bold-webfont.woff2") format("woff2"),
    url("../fonts/lato-bold-webfont.woff") format("woff"),
    url("../fonts/lato-bold-webfont.ttf") format("truetype"),
    url("../fonts/lato-bold-webfont.svg#latobold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latobold_italic";
  src: url("../fonts/lato-bolditalic-webfont.eot");
  src: url("../fonts/lato-bolditalic-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lato-bolditalic-webfont.woff2") format("woff2"),
    url("../fonts/lato-bolditalic-webfont.woff") format("woff"),
    url("../fonts/lato-bolditalic-webfont.ttf") format("truetype"),
    url("../fonts/lato-bolditalic-webfont.svg#latobold_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoitalic";
  src: url("../fonts/lato-italic-webfont.eot");
  src: url("../fonts/lato-italic-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lato-italic-webfont.woff2") format("woff2"),
    url("../fonts/lato-italic-webfont.woff") format("woff"),
    url("../fonts/lato-italic-webfont.ttf") format("truetype"),
    url("../fonts/lato-italic-webfont.svg#latoitalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latolight";
  src: url("../fonts/lato-light-webfont.eot");
  src: url("../fonts/lato-light-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/lato-light-webfont.woff2") format("woff2"),
    url("../fonts/lato-light-webfont.woff") format("woff"),
    url("../fonts/lato-light-webfont.ttf") format("truetype"),
    url("../fonts/lato-light-webfont.svg#latolight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latolight_italic";
  src: url("../fonts/lato-lightitalic-webfont.eot");
  src: url("../fonts/lato-lightitalic-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lato-lightitalic-webfont.woff2") format("woff2"),
    url("../fonts/lato-lightitalic-webfont.woff") format("woff"),
    url("../fonts/lato-lightitalic-webfont.ttf") format("truetype"),
    url("../fonts/lato-lightitalic-webfont.svg#latolight_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoregular";
  src: url("../fonts/lato-regular-webfont.eot");
  src: url("../fonts/lato-regular-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lato-regular-webfont.woff2") format("woff2"),
    url("../fonts/lato-regular-webfont.woff") format("woff"),
    url("../fonts/lato-regular-webfont.ttf") format("truetype"),
    url("../fonts/lato-regular-webfont.svg#latoregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latohairline";
  src: url("../fonts/lato-thin-webfont.eot");
  src: url("../fonts/lato-thin-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/lato-thin-webfont.woff2") format("woff2"),
    url("../fonts/lato-thin-webfont.woff") format("woff"),
    url("../fonts/lato-thin-webfont.ttf") format("truetype"),
    url("../fonts/lato-thin-webfont.svg#latohairline") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latohairline_italic";
  src: url("../fonts/lato-thinitalic-webfont.eot");
  src: url("../fonts/lato-thinitalic-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lato-thinitalic-webfont.woff2") format("woff2"),
    url("../fonts/lato-thinitalic-webfont.woff") format("woff"),
    url("../fonts/lato-thinitalic-webfont.ttf") format("truetype"),
    url("../fonts/lato-thinitalic-webfont.svg#latohairline_italic")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  box-sizing: border-box;
}

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

p,
ul {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style-type: none;
}

button {
  cursor: pointer;
}

button,
input {
  outline: none;
  border: none;
}

body {
  overflow-x: hidden;
}
body.overflow-hidden {
  overflow: hidden;
}

h1 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.1px;
  font-family: "latoblack";
  color: #113a54;
}
@media (min-width: 992px) {
  h1 {
    font-size: 56px;
    line-height: 72px;
    letter-spacing: 0.2px;
  }
}

h2 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.1px;
  font-family: "latoblack";
  color: #113a54;
}
@media (min-width: 992px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

h3 {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.1px;
  font-family: "latobold";
  color: #4f4f4f;
}
@media (min-width: 992px) {
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

h5 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.1px;
  font-family: "latobold";
  color: #4f4f4f;
}

h6 {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1px;
  font-family: "latobold";
  color: #333333;
}

p {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.3px;
  font-family: "latoregular";
  color: #4f4f4f;
}

.date {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  font-family: "latoregular";
  color: #bdbdbd;
}

.btn {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1px;
  font-family: "latobold";
  padding: 14px 20px;
  background: linear-gradient(17deg, #00c3ff 40%, #00e0ce, #00faa7) padding-box,
    linear-gradient(17deg, #00c3ff 40%, #00e0ce, #00faa7) border-box;
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ffffff inset;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  box-shadow: 2px 1000px 1px #dff6f6 inset;
}

.btn.gray {
	background: unset;
	border-color: #103A54;
	align-self: flex-start;
}

.btn.visibleMD {
	display: none;
}

.btn.gray:hover {
	box-shadow: unset;
	background: #103A54;
	color: white;
}

@media only screen and (max-width: 991px) {
	.btn.gray.hiddenMD {
		display: none;
	}
	
	.btn.visibleMD {
		display: inline-block;
	}
}

.btn-filled {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1px;
  font-family: "latobold";
  padding: 14px 20px;
  border-radius: 10px;
  display: inline-block;
  background-color: #00cec7;
  color: #ffffff;
}

.text-align-center {
  text-align: center;
}

a.category {
  font-family: "latoregular";
  font-size: 12px;
  padding: 10px;
  border-radius: 10px;
  color: #4f4f4f;
}
a.category:first-child {
  margin-right: 10px;
}

.sidebar-wrapper
  .IN-74a7d7b0-81d1-4475-af64-727c42231d82-1G9ISYhSF8XoOmdcl0yKDu,
.sidebar-wrapper
  .IN-74a7d7b0-81d1-4475-af64-727c42231d82-1G9ISYhSF8XoOmdcl0yKDu.IN-74a7d7b0-81d1-4475-af64-727c42231d82-3uCBSbQNVNf2QjqHe1rfb6 {
  background-color: transparent !important;
  background-image: url(http://localhost/publer/wp-content/themes/Publer/dist/img/LinkedIn-white.svg);
  text-indent: -10000000000000px;
  width: 32px;
  height: 32px !important;
}
.sidebar-wrapper
  .IN-74a7d7b0-81d1-4475-af64-727c42231d82-1G9ISYhSF8XoOmdcl0yKDu
  xdoor-icon,
.sidebar-wrapper
  .IN-74a7d7b0-81d1-4475-af64-727c42231d82-1G9ISYhSF8XoOmdcl0yKDu.IN-74a7d7b0-81d1-4475-af64-727c42231d82-3uCBSbQNVNf2QjqHe1rfb6
  xdoor-icon {
  display: none !important;
}
.sidebar-wrapper
  .IN-74a7d7b0-81d1-4475-af64-727c42231d82-1G9ISYhSF8XoOmdcl0yKDu:not(:disabled):not(.IN-74a7d7b0-81d1-4475-af64-727c42231d82-1zhzkayakwEXovVYUbq5Gy):hover,
.sidebar-wrapper
  .IN-74a7d7b0-81d1-4475-af64-727c42231d82-1G9ISYhSF8XoOmdcl0yKDu.IN-74a7d7b0-81d1-4475-af64-727c42231d82-3uCBSbQNVNf2QjqHe1rfb6:not(:disabled):not(.IN-74a7d7b0-81d1-4475-af64-727c42231d82-1zhzkayakwEXovVYUbq5Gy):hover {
  background-color: transparent !important;
}

.banner-wrapper {
	padding: 5vh 0;
	text-align: center;
}

.banner-wrapper img.not-found {
	width: 50vh;
}

.banner-wrapper p {
  font-size: 18px;
  font-family: "latoregular";
}
.banner-wrapper p a {
  text-decoration: underline;
}
.banner-wrapper .search-form {
	margin: 20px auto 40px auto;
	width: auto;
	max-width: 500px;
}

.banner-wrapper .search-form input {
	color: #113A54;
}

#submenu {
  position: sticky;
  top: 0px;
  background: white;
  margin-bottom: 30px;
  border-top: 1px solid #e0e0e0 !important;
  border-bottom: 1px solid #e0e0e0 !important;
  z-index: 100;
  transition: 0.4s;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#submenu.on-scroll__up {
	top: 62px;
}

#submenu.on-scroll__down {
	top: 0;
	border-top: 0 !important;
}

@media (min-width: 1201px) {
	#submenu a {
	  font-size: 16px;
	  line-height: 32px;
	  letter-spacing: 0.3px;
	  font-family: "lato";
	  color: #113A54;
	  padding: 10px 15px;
	}
	
	#submenu a:hover {
		color: #00CEC7;
	}
}

@media (max-width: 1200px) {
	#submenu .blog-mobile-menu {
		padding-top: 7.5px;
		padding-bottom: 7.5px;
	}
	
	#submenu ul {
		display: block !important;
	}
	
	#submenu .search-form {
		width: 100%;
		height: 62px;
	}
	
	#submenu.on-scroll__up {
		top: 50px;
	}
	
	header ul li > a {
		margin-bottom: 15px !important;
		display: inline-flex !important;
	}
	
	header ul li .menu a {
		font-size: 16px !important;
		margin-bottom: 15px !important;
	}
	
	#submenu header .menu div {
		gap: 0 !important;
	}
	
	header ul li svg {
		width: 14px;
		height: 14px;
		margin-left: 4px !important;
	}
	
	#navbar .container, #submenu .container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

#submenu .search-form img {
  width: 16px;
  height: 16px;
}

#submenu ul li a {
	margin-right: unset;
}

#submenu header .menu:not(.languages) {
	max-width: 400px;
	width: max-content;
	margin-top: 0;
	flex-direction: row;
	gap: 50px;
}

#submenu header .menu:not(.languages) div {
	display: flex;
    flex-direction: column;
    gap: 20px;
}

#submenu header .menu:not(.languages) a {
	padding: 0;
	font-family: 'lato' !important;
	background: unset !important;
} 

#submenu header menu a.active {
	font-family: 'latobold';
}

.search-form {
    width: 256px;
    gap: 5px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    display: flex;
    border-radius: 10px;
	height: 44px;
}

.search-form input {
	width: 100%;
  	color: #bdbdbd;
	
	&.active, &:focus, &:active, &:hover {
		color: #113A54;
	}
}

.search-form input::placeholder {
  color: #bdbdbd;
}


@media (max-width: 992px) {
	.search-form { 
		width: 100%;
	}
}
.search-form .search img {
  height: 24px;
  width: 24px;
  margin-right: 10px;
  vertical-align: middle;
}
#submenu ul {
  display: flex;
}
#submenu ul li.active {
  color: #00CEC7;
}

#submenu ul li.active svg {
  color: #00CEC7;
}
#submenu ul li.selected a {
  font-family: "latobold" !important;
} 
#submenu ul div.menu a {
	font-family: "lato" !important;
}
#submenu ul li a.selected {
	font-family: "latobold" !important;
}
#submenu ul li a {
  position: relative;
  display: inline-block;
}
#submenu ul li a::after {
  content: "";
  background-color: #006757;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  visibility: hidden;
  opacity: 0;
}

header {
  display: flex;
}
@media (max-width: 1200px) {
  header {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
/*     padding: 0 8px; */
  }
	
  header #login-button {
	border: 1px solid #113b55;
	padding: 14px 20px;
	text-align: center !important;
	margin-right: 0 !important;
  }
	
  header #signup-button {
	margin-top: 20px;
    transition: 0.4s;
  }
}

header #login-button {
	margin-right: 8px;
}

header .logo {
  padding: 30px 0;
  transition: 0.4s;
}

@media (max-width: 1200px) {
  header .logo {
    padding: 10.5px 0;
  }
}
header .logo img {
  height: 38px;
  object-fit: contain;
  width: 115px;
}
@media (max-width: 1200px) {
  header .logo img {
    height: 29px !important;
	width: 87.76px !important;
  }
}

header nav {
  width: 100%;
  display: none;
}

@media (max-width: 1200px) {
	/* 48px is the banner and 50px are the headers 	 */
	header nav {
		height: calc(100vh - 48px - 50px);
		height: calc(100dvh - 48px - 50px);
		padding-top: 15px;
		padding-bottom: 15px;
	}
	
	header nav.active {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		overflow-y: auto;
	}
	
	#navbar.on-scroll__up header nav {
		height: calc(100vh - 50px);
		height: calc(100dvh - 50px);
	}
	
	#submenu header nav {
		height: calc(100vh - 48px -  50px - 50px);
		height: calc(100dvh - 48px -  50px - 50px);
	}
	
	#submenu.on-scroll__up header nav {
		height: calc(100vh - 50px - 50px);
		height: calc(100dvh - 50px - 50px);
	}
	
	#submenu.on-scroll__down header nav {
		height: calc(100vh - 50px);
		height: calc(100dvh - 50px);
	}
	
	#submenu header nav ul li:first-child {
		display: none;
	}
}

@media (min-width: 1201px) {
  header nav {
    margin-left: 100px;
    display: flex;
    justify-content: space-between;
  }
	
  #submenu nav {
	margin-left: unset;
	align-items: center;
  }
	
  header #continue-button {
  	max-width: 256px;
	padding-left: 0px !important;
	padding-right: 0px !important;
	transition: 0.4s;
  }
}
header ul {
  display: block;
}
@media (min-width: 1201px) {
  header ul {
    display: flex;
    align-items: center;
  }
}
header ul li {
  position: relative;
}
header ul li.has-sub {
  z-index: 20;
}

header ul li.has-sub.active .menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
header ul li.has-sub.active > a > svg {
  transform: rotate(180deg);
}
header ul li:last-child a {
  margin: 0;
}
header ul li a {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.3px;
  font-family: "latoregular";
  color: #113a54;
  margin-right: 60px;
  align-items: center;
  display: flex;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  header ul li a {
    font-size: 18px;
    letter-spacing: 0.1px;
    font-family: "latobold";
  }
}
header ul li a:hover {
  color: #006757;
}
header ul li a svg {
  margin-left: 4px;
}
header ul li > .menu {
  padding: 0 0 30px 24px;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  header ul li > .menu {
    position: absolute;
    top: 48px;
    left: 0px;
    display: flex;
    width: 891px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #f2f2f2;
    transform: translate(0, 30px);
    border-radius: 10px;
    padding: 20px;
  }
  
  
  #navbar.on-scroll header ul li > .menu {
    top: 35px;
  }
	
  header ul li > .menu li > a > svg {
    transition: all 0.3s ease-in-out;
  }
  header ul li > #tools.menu {
	max-width: 390px; 
  }
	
  header ul li > .menu a.coming-soon span{
	color: hsla(178, 100%, 40%, 1); 
	font-weight: bold; 
	font-family: 'Lato';
  }
}
@media (max-width: 1200px) {
  header ul li > .menu {
    display: none;
  }
	
	header ul li > .menu a.coming-soon {
		display: none;
	}
}
header ul li > .menu a {
  margin: 0;
  align-items: baseline;
  border-radius: 10px;
  transition: all 0.33s ease-in-out;
}

@media (min-width: 1201px) {
  header ul li > .menu a {
    padding: 10px;
  }

  header ul li > .menu a.new-feature,  header ul li > .menu a.new-feature:hover {
	background: rgb(0, 169, 255, 0.1);
  }
}
header ul li > .menu a:hover {
  background-color: #f5fcfc;
}
header ul li > .menu a:hover .link__description,
header ul li > .menu a:hover .link__subtitle {
  color: #006757;
}
header ul li > .menu a .link__subtitle {
  font-family: "latobold";
  color: #113a54;
}
@media (max-width: 992px) {
  header ul li > .menu a .link__subtitle {
    font-family: "latoregular";
  }
}
header ul li > .menu a .link__description {
  font-size: 14px;
  line-height: 20px;
  color: #828282;
}

header ul li > .menu a .link__new {
	display: flex;
	align-items: center;
}

header ul li > .menu a .link__new span {
	margin-left: auto;
	background: #00a9ff;
	padding: 4px 8px;
	color: white;
	font-weight: bold;
	border-radius: 10px;
	font-size: 12px;
	line-height: 20px;
}

@media (max-width: 1201px) {
  header ul li > .menu a .link__new span {
    margin-left: 10px;
  }
}

header ul li > .menu a svg, header ul li > .menu a img {
  margin: 0 12px 0 0;
  width: 36px !important;
  top: 5px;
  position: relative;
}

header .authentication-wrapper {
/* 	margin-top: 10px; */
}

@media (max-width: 992px) {
  header .authentication-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}
header .authentication-wrapper li {
  border-radius: 10px;
}
@media (max-width: 992px) {
  header .authentication-wrapper li {
    text-align: center;
  }
}
header .authentication-wrapper li svg {
  margin: 0 12px 0 0;
}
@media (max-width: 992px) {
  header .authentication-wrapper li:first-child {
    border: 1px solid #113a54;
    padding: 14px 20px;
  }
}
header .authentication-wrapper li:last-child {
  padding: 14px 20px;
  background: #00cec7;
  border: 1px solid #00cec7;
  text-align: center;
}

header #continue-button {
  padding: 14px 20px;
  border: 1px solid #113b55;
  text-align: center;
}

header #continue-button a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0 !important;
}

header #signup-button a, header #login-button a {
  margin-bottom: 0 !important;
}

@media (max-width: 1200px) {
  header .authentication-wrapper li:last-child {
    margin-bottom: 20px;
  }
  header .authentication-wrapper li:last-child a {
    color: #ffffff;
  }
}
@media (min-width: 1200px) {
  header .authentication-wrapper li:last-child, header #continue-button {
    background: linear-gradient(17deg, #00c3ff 40%, #00e0ce, #00faa7)
        padding-box,
      linear-gradient(17deg, #00c3ff 40%, #00e0ce, #00faa7) border-box;
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #fff inset;
    border: 2px solid transparent;
  }
}
header .authentication-wrapper li a {
  font-family: "latobold";
  margin: 0 40px;
  display: block;
}
@media (max-width: 1200px) {
  header .authentication-wrapper li a {
    font-family: "latoregular";
    font-size: 16px;
    letter-spacing: 0.3px;
  }
}

.menubar {
  display: inline-block;
  height: 100%;
}

.blog-mobile-menu {
	width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-mobile-menu a {
	padding: 0 !important;
}

.blog-mobile-menu .blogbar > a.active > svg {
  transform: rotate(180deg);
}

.mobile-menubar {
	display: flex;
	align-items: center;
	gap: 20px;
}

body #submenu .languages-toggler, body #submenu .mobile-languages-toggler {
	display: none !important;
}

body #submenu.on-scroll__down .languages-toggler, body #submenu.on-scroll__down .mobile-languages-toggler {
	display: block !important;
}

@media (min-width: 1201px) {
  .mobile-menubar, .blog-mobile-menu {
    display: none;
  }
}

.menubar a {
  position: relative;
  width: 20px;
  display: block;
}
.menubar a span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #113a54;
  border-radius: 20px;
  transition: all 0.3s;
  margin-bottom: 5px;
}
.menubar a span:last-child {
  margin-bottom: 0;
}
.menubar a.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.menubar a.active span:nth-child(2) {
  opacity: 0;
}
.menubar a.active span:nth-child(3) {
  top: -6px;
  transform: rotate(-45deg);
}

.featured-blog-wrapper img {
  width: calc(100% - 16px);
  height: 550px;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 10px rgba(189, 189, 189, 0.2);
}
@media (max-width: 991px) {
	.featured-blog-wrapper {
		border-bottom: 1px solid #e0e0e0;
		padding-bottom: 40px;
	}	
	
	.featured-blog-wrapper img {
		height: 165px;
	}
}
@media (min-width: 993px) {
  .featured-blog-wrapper p {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .featured-blog-wrapper h2 {
    font-size: 18px;
    line-height: 32px;
  }
}
.featured-blog-wrapper h1 {
  margin-bottom: 20px;
}
.featured-blog-wrapper .featured-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-blog-wrapper .featured-content-wrapper h2 {
	font-weight: 700;
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0.1px;
}

@media (min-width: 992px) {
	.featured-blog-wrapper .featured-content-wrapper h2 {
		font-size: 44px;
    	line-height: 56px;
    	letter-spacing: 0.2px;
	}
}

.featured-blog-wrapper .author-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .featured-blog-wrapper .author-wrapper {
    display: none;
  }
}
.featured-blog-wrapper .author-wrapper .author {
  display: flex;
}
.featured-blog-wrapper .author-wrapper .author p {
  margin-bottom: 0;
  margin-left: 10px;
}
.featured-blog-wrapper .author-wrapper .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.category-nav {
  padding-top: 20px;
  margin-bottom: 20px;
}

.category-nav a.category {
  font-family: "latoregular";
  font-size: 12px;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.category-nav a.category {
	color: #4f4f4f;
}

.popular-blogs-wrapper {
  padding: 100px 0 50px 0;
  background-color: #ffffff;
}

.popular-blogs-wrapper.explore-wrapper {
	margin-top: 66px; 
	border-top: 1px solid #e0e0e0;
}

.blogs-wrapper:nth-child(odd) {
	background-color: #f5fcfc;
}

.blogs-wrapper .highlighted:last-child {
	display: none;
}

@media (min-width: 992px) {
	.popular-blogs-wrapper.explore-wrapper .explore:last-child {
		display: none;	
	}
}

@media (max-width: 991px) {
  .popular-blogs-wrapper {
    padding: 50px 0;
  }
	
  .blogs-wrapper .highlighted:last-child {
	  display: inline-block;
  }
}
.popular-blogs-wrapper.pagination-page {
  padding-top: 0;
}
.popular-blogs-wrapper.recent-blogs-wrapper {
  background-color: white;
}
@media (max-width: 992px) {
  .popular-blogs-wrapper.recent-blogs-wrapper h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .popular-blogs-wrapper .row > div:nth-child(1) .blog-item,
  .popular-blogs-wrapper .row > div:nth-child(4) .blog-item {
    margin-left: 0;
  }
  .popular-blogs-wrapper .row > div:nth-child(3) .blog-item,
  .popular-blogs-wrapper .row > div:nth-child(6) .blog-item {
    margin-right: 0;
  }
}

.popular-blogs-wrapper .blog-item {
  box-shadow: 0px 30px 40px rgba(189, 189, 189, 0.2);
  height: calc(100% - 50px);
  padding: 20px;
  margin: 0 10px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: white;
}
.popular-blogs-wrapper .blog-item:hover {
  box-shadow: 0px 14px 20px rgba(130, 130, 130, 0.18);
}
@media (max-width: 992px) {
  .popular-blogs-wrapper .blog-item {
    margin: 0 0px 50px;
  }
}
.popular-blogs-wrapper .blog-item.newsletter-item {
  background: #006757;
  padding: 85px 40px;
  justify-content: center;
}
@media (max-width: 992px) {
  .popular-blogs-wrapper .blog-item.newsletter-item {
    padding: 40px 20px;
  }
}
.popular-blogs-wrapper .blog-item.newsletter-item .content > * {
  color: #ffffff;
  text-align: center;
}
.popular-blogs-wrapper .blog-item.newsletter-item h2 {
  margin-bottom: 20px;
}
.popular-blogs-wrapper .blog-item.newsletter-item input,
.popular-blogs-wrapper .blog-item.newsletter-item button {
  border-radius: 10px;
  width: 100%;
  padding: 14px 20px;
}
.popular-blogs-wrapper .blog-item.newsletter-item input {
  font-family: "latoregular";
  color: #333333;
  margin-bottom: 20px;
}
.popular-blogs-wrapper .blog-item.newsletter-item button {
  font-family: "latobold";
  font-size: 18px;
  color: #ffffff;
  background: #008477;
  transition: all 0.3s;
}
.popular-blogs-wrapper .blog-item.newsletter-item button:hover {
  background: #009587;
}
.popular-blogs-wrapper .blog-item.newsletter-item .newsletter__input.disabled {
  opacity: 0.8;
  user-select: none;
  cursor: not-allowed;
}
.popular-blogs-wrapper
  .blog-item.newsletter-item
  .newsletter__input.disabled
  input,
.popular-blogs-wrapper
  .blog-item.newsletter-item
  .newsletter__input.disabled
  button {
  opacity: 1;
  user-select: none;
  cursor: not-allowed;
}
.popular-blogs-wrapper
  .blog-item.newsletter-item
  .newsletter__input.disabled
  input {
  background-color: #ffffff;
}
.popular-blogs-wrapper
  .blog-item.newsletter-item
  .newsletter__input.disabled
  .loader {
  display: block;
}
.popular-blogs-wrapper .blog-item.newsletter-item .newsletter__input .loader, .single-blog-columns .cta-wrapper .subscribe .loader {
  display: none;
}
.popular-blogs-wrapper .blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}
.popular-blogs-wrapper .blog-item .category-nav,
.popular-blogs-wrapper .blog-item img,
.popular-blogs-wrapper .blog-item p {
  margin-bottom: 20px;
}
.popular-blogs-wrapper .blog-item h6 {
  margin-bottom: 10px;
}
.popular-blogs-wrapper ul.page-numbers {
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .popular-blogs-wrapper ul.page-numbers {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.popular-blogs-wrapper ul.page-numbers .page-numbers {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  stroke: #113a54;
  font-family: "latobold";
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1px;
}
.popular-blogs-wrapper ul.page-numbers .page-numbers:hover {
  color: #00c1b8;
  stroke: #00c1b8;
}
.popular-blogs-wrapper ul.page-numbers .page-numbers.next,
.popular-blogs-wrapper ul.page-numbers .page-numbers.prev {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
}
.popular-blogs-wrapper ul.page-numbers .page-numbers.prev svg {
  transform: rotate(90deg);
}
.popular-blogs-wrapper ul.page-numbers .page-numbers.next svg {
  transform: rotate(-90deg);
}
.popular-blogs-wrapper ul.page-numbers .page-numbers.current {
  background-color: #00cec7;
  color: #ffffff;
  border-radius: 50%;
}

.subscription-wrapper {
  margin: 100px 0;
}
@media (max-width: 992px) {
  .subscription-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .subscription-wrapper .container {
    padding: 0;
  }
  .subscription-wrapper .container .subscription {
    border-radius: 0;
  }
}
.subscription-wrapper .subscription {
  border-radius: 10px;
  min-height: 440px;
  background-repeat: no-repeat;
  background-size: cover;
}
.subscription-wrapper .subscription .subscription-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 100px;
}
@media (max-width: 992px) {
  .subscription-wrapper .subscription .subscription-description {
    padding: 50px 20px 320px 20px;
  }
  .subscription-wrapper .subscription .subscription-description h2 {
    margin-bottom: 20px;
  }
}
.subscription-wrapper .subscription .subscription-description p {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .subscription-wrapper .subscription .subscription-description p {
    margin-bottom: 26px;
  }
}
.subscription-wrapper .subscription .subscription-description > div {
  position: relative;
}
@media (min-width: 992px) {
  .subscription-wrapper .subscription .subscription-description > div {
    height: 60px;
    margin-right: 40px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
  }
}
.subscription-wrapper .subscription .subscription-description > div.disabled,
.subscription-wrapper
  .subscription
  .subscription-description
  > div.disabled
  button,
.subscription-wrapper
  .subscription
  .subscription-description
  > div.disabled
  input {
  opacity: 0.8;
  user-select: none;
  cursor: not-allowed;
}
.subscription-wrapper
  .subscription
  .subscription-description
  > div.disabled
  .loader,
.subscription-wrapper
  .subscription
  .subscription-description
  > div.disabled
  button
  .loader,
.subscription-wrapper
  .subscription
  .subscription-description
  > div.disabled
  input
  .loader {
  display: block;
}
.subscription-wrapper .subscription .subscription-description > div .loader {
  display: none;
}
@media (min-width: 992px) {
  .subscription-wrapper .subscription .subscription-description > div .loader {
    top: 50%;
    transform: translateY(-50%);
    right: -55px;
    position: absolute;
  }
}
.subscription-wrapper .subscription .subscription-description > div button {
  margin: 5px;
  background: #00cec7;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.1px;
  font-family: "latobold";
  outline: none;
  padding: 10px 17px;
  position: relative;
}
@media (max-width: 992px) {
  .subscription-wrapper .subscription .subscription-description > div button {
    width: 100%;
    margin: 0;
  }
}
.subscription-wrapper .subscription .subscription-description > div input {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.3px;
  color: #333333;
  font-family: "latoregular";
  margin: 20px 14px;
  width: 100%;
}
@media (max-width: 992px) {
  .subscription-wrapper .subscription .subscription-description > div input {
    background-color: #ffffff;
    margin: 0 0 26px 0;
    padding: 20px 14px;
    border-radius: 10px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .subscription-wrapper .subscription .subscription-description > div {
    margin-right: 0;
  }
  .subscription-wrapper .subscription .subscription-description input,
  .subscription-wrapper .subscription .subscription-description button {
    height: 60px;
  }
}

.blog-wrapper h1 {
  margin: 35px 0 50px;
}

@media (max-width: 992px) {
  .single-post > .container {
    box-shadow: 0px 30px 40px rgba(212, 217, 232, 0.2);
  }
}
.single-post ol li {
  list-style-type: decimal;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.3px;
  font-family: "latoregular";
  color: #4f4f4f;
  margin-bottom: 8px;
  margin-left: 20px;
}
.single-post .single-blog-wrapper ul li {
  list-style-type: disc;
  margin-left: 20px;
  line-height: 32px;
  letter-spacing: 0.3px;
  font-family: "latoregular";
  color: #4f4f4f;
  margin-bottom: 8px;
}
.single-post .single-blog-wrapper ul li::marker {
  color: #00cec7;
}
.single-post .single-blog-wrapper a {
  color: #009bf0;
}

#newsletterBannerWrapper {
  max-width: 28rem;
}
@media (max-width: 992px) {
  #newsletterBannerWrapper {
    max-width: 100%;
  }
}

.hidden {
  display: none;
}

@media (min-width: 1200px) {
  .xl-block {
    display: block;
  }
}

figcaption {
  text-align: center;
  font-size: 12px;
  color: #828282;
  margin-bottom: 24px !important;
  margin-top: -15px !important;
}

.blog-item h6 {
  transition: all 0.3s;
}

.blog-item a:hover h6 {
  color: #00cec7;
}

footer {
  margin-top: 100px;
}
@media (max-width: 992px) {
  footer {
    margin-top: 50px;
  }
}
footer .social-icons {
  display: inline-grid;
  justify-content: center;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: .625rem;
}

@media (max-width: 767px) {
	footer .social-icons {
  		grid-template-columns: repeat(6,minmax(0,1fr));
	}
}

footer .social-icons a {
  padding: 5px;
  width: 24px;
  height: 24px;
  background-color: rgba(17, 58, 84, 0.1019607843);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

footer .social-icons a img {
  height: 24px;
  object-fit: contain;
}
footer .logo {
  margin-bottom: 20px;
  display: inline-block;
}
footer .logo img {
  height: 38px;
  object-fit: contain;
  object-position: center center;
}
footer .social-links {
	max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
	padding: 0 !important;
}
footer p {
  margin-bottom: 24px;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  line-height: 1.25rem;
}
footer .footer-menu-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 1200px) {
	footer .footer-menu-wrapper {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 769px) {
	footer .footer-menu-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

footer .footer-menu-wrapper > div {
	margin-top: 48px;
}
footer .footer-menu-wrapper div {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2rem;
	letter-spacing: 0.1px;;
	margin-bottom: 1.5rem;
	font-family: 'Lato';
}
footer .footer-menu-wrapper ul li {
  font-size: 0.875rem;
  line-height: 1;
}
footer .footer-menu-wrapper ul li a {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  font-family: "latoregular";
  display: inline-block;
  color: #4f4f4f;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 70px;
  border-top: 1px solid #bdbdbd;
  font-size: 14px;
}
@media (max-width: 992px) {
  footer .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
}
footer .footer-bottom > div {
  display: flex;
  justify-content: space-between;
  margin-right: 24px;
}

@media (max-width: 767px) {
	footer .footer-bottom > div {
		margin-right: 0;
	}
}

footer .footer-bottom > div a {
    margin-right: 24px;
}
@media (min-width: 992px) {
  footer .footer-bottom > div {
    margin-right: 60px;
  }
}

.single-blog-wrapper h2 {
	margin-top: 32px !important;
}

.single-blog-wrapper p,
.single-blog-wrapper h2,
.single-blog-wrapper h5, 
.single-blog-wrapper ul {
  margin-bottom: 24px;
}
.single-blog-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  border-radius: 5px;
  margin: 24px 0;
}

.single-blog-content img {
	max-height: 600px !important;
	object-fit: contain !important;
}

.single-blog-wrapper .main-image {
	margin-top: 0;
}

.single-blog-wrapper .container {
	padding-left: 16px;
	padding-right: 16px;
}

.single-blog-content {
	overflow: hidden;
}

.single-blog-content ul {
	margin-left: 20px;
}

.single-blog-content p, .single-blog-content ul {
	font-size: 18px;
}

@media (max-width: 576px) {
	.single-blog-content p, .single-blog-content ul {
		font-size: 16px;
	}
}

.single-blog-header {
	padding: 20px 0 50px 0;
	margin-bottom: 30px;
	text-align: center;
	background: linear-gradient(180deg, #FFFEFF 0%, #D7FFFE 100%);;
}

.single-blog-header .category-nav {
	padding-top: 0;
	margin-bottom: 0;
}

.single-blog-header h1 {
	margin: 10px auto;
	font-size: 44px;
	line-height: 56px;
	max-width: 1200px;
}

.single-blog-header .author {
	align-items: center;
    display: flex;
    justify-content: center;
	color: #4F4F4F;
	gap: 10px;
}

.single-blog-header .author img {
	width: 32px;
	height: 32px;
}

@media (max-width: 576px) {
	.single-blog-header {
		text-align: left;
		padding: 25px 1rem;
	}
	
	.single-blog-header h1 {
		font-size: 32px;
		line-height: 40px;
	}
	
	.single-blog-header .author {
		justify-content: start;	
	}
	
	.single-post .single-blog-wrapper ul li {
		margin-left: 10px;
	}
}

@media (max-width: 992px) {
  .single-blog-wrapper img {
    width: 100%;
    height: auto;
  }
}
.single-blog-wrapper h1 {
  margin-bottom: 20px;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .single-blog-wrapper h1 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}

.single-blog-wrapper .main-image {
  height: 510px;
  margin-bottom: 30px;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .single-blog-wrapper .main-image {
    height: 120px;
  }
}

.single-blog-wrapper iframe {
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.single-blog-wrapper iframe[src*="youtube.com/embed"] {
	width: 100%;
	height: 440px;
}

@media (max-width: 992px) {
  .single-blog-wrapper iframe[src*="youtube.com/embed"] {
    height: 190px;
  }
}

@media (max-width: 992px) {
  .single-blog-wrapper .category-nav {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}
.single-blog-wrapper .category-nav .category {
  display: inline-block;
}
.single-blog-wrapper .calendar-wrapper {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 25px 50px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .single-blog-wrapper .calendar-wrapper {
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.single-blog-wrapper .calendar-wrapper .btn-filled {
  width: 200px;
  text-align: center;
}
.single-blog-wrapper .calendar-wrapper img {
  height: 100%;
  object-fit: contain;
}
.single-blog-wrapper .calendar-wrapper .calendar-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .single-blog-wrapper .calendar-wrapper .calendar-content {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .single-blog-wrapper .calendar-wrapper .calendar-content h2 {
    font-size: 20px;
    line-height: 26px;
  }
}
.single-blog-wrapper .calendar-wrapper .calendar-content p {
  color: #828282;
}

.single-blog-columns {
	display: flex;
	gap: 40px;
}

.sidebar-wrapper {
  position: sticky;
  top: 100px;
  width: 256px;
  min-width: 250px;
  transition: 0.4s;
}

.sidebar-wrapper.on-scroll__up, .author-page-wrapper .author-wrapper.on-scroll__up {
	top: 160px;
}

.sidebar-wrapper.on-scroll__down, .author-page-wrapper .author-wrapper.on-scroll__down {
	top: 100px;
}

@media (max-width: 1200px) {
  .single-blog-columns {
	  gap: 0;
	}
	
  #table-of-contents {
    display: none;
  }
}
.sidebar-wrapper p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  font-family: "latobold";
  color: #333333;
}

.table-of-contents p, .share-article p {
	margin-bottom: 10px;
}

.sidebar-wrapper .table-of-contents h2 {
	font-size: 14px;
	color: #333333;
	margin-bottom: 10px;
	line-height: 20px;
	letter-spacing: 0.3px;
	margin-top: 0 !important;
}

.sidebar-wrapper .table-of-contents .content {
  border-left: 1px solid #bdbdbd;
  margin-bottom: 30px;
  max-height: 50vh;
  overflow: auto;
}

.sidebar-wrapper .table-of-contents .content a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4f4f4f;
  padding: 0 16px 0 10px;
  margin-bottom: 10px;
  display: block;
  position: relative;
  left: -1px;
}
.sidebar-wrapper .table-of-contents .content a:hover,
.sidebar-wrapper .table-of-contents .content a.active {
  color: #006757;
  border-left: 1px solid #006757;
}
.sidebar-wrapper .icons {
  border-left: 1px solid #bdbdbd;
  display: flex;
  margin-right: 40px;
  gap: 10px;
}

.sidebar-wrapper .icons a {
  color: #828282;
  transition: all .3s ease-in-out;
	width: 32px;
	text-align: center;
}

.sidebar-wrapper .icons a:hover {
  color: #006757;
}

.sidebar-wrapper a.back-to-blog {
	display: flex;
    align-items: center;
	color: #333333;
	padding-bottom: 10px;
	width: fit-content;
}

.sidebar-wrapper a.back-to-blog:hover {
	color: #006757;
}

.sidebar-wrapper a.back-to-blog svg {
	margin-right: 5px;
}

.single-vertical {
  display: flex;
}
.single-vertical > div {
  width: 100%;
}

.author-page-wrapper {
  margin-top: 20px;
  padding-bottom: 50px;
}
.author-page-wrapper .popular-blogs-wrapper {
  padding: 0;
}

.popular-blogs-wrapper .col-12 h2 {
	margin-bottom: 20px;
}

.popular-blogs-wrapper .col-12 h3 {
	margin-bottom: 30px;
}

@media (min-width: 992px) {
  .author-page-wrapper
    .popular-blogs-wrapper
    .row
    > div:nth-child(1)
    .blog-item,
  .author-page-wrapper
    .popular-blogs-wrapper
    .row
    > div:nth-child(4)
    .blog-item {
    margin-left: 10px;
  }
  .author-page-wrapper
    .popular-blogs-wrapper
    .row
    > div:nth-child(3)
    .blog-item,
  .author-page-wrapper
    .popular-blogs-wrapper
    .row
    > div:nth-child(6)
    .blog-item {
    margin-right: 10px;
  }
}
.author-page-wrapper .author-wrapper {
  box-shadow: 0px 30px 40px rgba(189, 189, 189, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .author-page-wrapper .author-wrapper {
    position: sticky;
    top: 100px;
  }
}
.author-page-wrapper .author-wrapper .topbar {
  background-color: #00cec7;
  height: 60px;
  position: relative;
  margin-bottom: 68px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.author-page-wrapper .author-wrapper .topbar img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
}
.author-page-wrapper .author-wrapper .author-content {
  padding: 0 20px 40px 20px;
}
@media (max-width: 992px) {
  .author-page-wrapper .author-wrapper .author-content {
    margin-bottom: 30px;
  }
}
.author-page-wrapper .author-wrapper .author-content > div:nth-child(2),
.author-page-wrapper .author-wrapper .author-content > div:nth-child(3),
.author-page-wrapper .author-wrapper .author-content > div:nth-child(4) {
  border-top: 1px solid #efefef;
  padding: 20px 0;
}
.author-page-wrapper .author-wrapper .author-content .author {
  text-align: center;
}
.author-page-wrapper .author-wrapper .author-content .author h3 {
  margin-bottom: 10px;
  color: #113a54;
}
.author-page-wrapper .author-wrapper .author-content .author h5 {
  margin-bottom: 20px;
  color: #113a54;
}
.author-page-wrapper .author-wrapper .author-content .author p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.author-page-wrapper .author-wrapper .author-content .author p img {
  margin-right: 10px;
}
.author-page-wrapper .author-wrapper .author-content .author-stats p {
  display: flex;
  justify-content: space-between;
}
.author-page-wrapper
  .author-wrapper
  .author-content
  .author-stats
  p:not(:last-child) {
  margin-bottom: 10px;
}
.author-page-wrapper .author-wrapper .author-content p.subtitle {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.author-page-wrapper .author-wrapper .author-content .social-icons {
  display: flex;
  gap: 20px;
}
.author-page-wrapper .author-wrapper .author-content .social-icons a,
.author-page-wrapper .author-wrapper .author-content .social-icons img {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 0 !important;
}
.author-page-wrapper .author-wrapper .author-content .start-date p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  font-family: "latobold";
  margin-top: 20px;
  text-align: center;
}

.icons.author-single {
  margin: 0;
  display: block;
}
.icons.author-single > a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icons.author-single > a img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 0;
}
.icons.author-single > a p {
  margin: 0;
  font-family: "latoregular";
}
.icons.author-single > a .title {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #113a54;
}
.icons.author-single > a .subtitle {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #828282;
}
.icons.date {
	font-size: 16px;
	color: #113a54;
}

@media (max-width: 1200px) {
	.icons.author-single > a .title, .icons.date {
		font-size: 14px;
	}
	
	.icons.author-single > a .subtitle {
		font-size: 12px;	
	}
	
	.icons.author-single > a img {
		width: 36px;
  		height: 36px;
	}
}

.single-post-author-wrapper {
  border-top: 1px solid #e0e0e0;
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: 55px;
  margin-top: 50px;
}

@media (max-width: 576px) {
	.single-post-author-wrapper {
		display: block;
	}
	
	.single-post-author-wrapper a.author img {
		width: 100px;
  		height: 100px;
		margin-bottom: 30px;
		margin-top: 0;
	}
}

.single-post-author-wrapper > a img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 0;
}
.single-post-author-wrapper h3 {
  font-family: "latoblack";
  font-size: 30px;
  line-height: 56px;
  letter-spacing: 0.2px;
  color: #113a54;
  margin-bottom: 0;
}
.single-post-author-wrapper h5 {
  font-family: "latobold";
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 5px;
  color: #113a54;
}
.single-post-author-wrapper > div {
  flex: 1;
}
.single-post-author-wrapper > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-post-author-wrapper .social-icons {
  display: flex;
  gap: 10px;
}

.single-post-author-wrapper .social-icons img {
  margin-bottom: 0;
}

header a.logo + img, header #continue-button {
	display:none;
}
.logo.on-xmas img {
	height:38px;
}

@media only screen and (min-width: 991px) {
	header .logo.on-xmas {
		padding-top: 17.6px;
		padding-bottom: 29.096px;
		padding: 1.1rem 0 1.8185rem 0;
	}	
	header .logo.on-xmas img {
		height:51px;
	}
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-space-between {
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
}

header.xmas-banner {
	background: #0270FF;
	z-index:1;
	height: 48px;
/* 	display: none; */
}
header.xmas-banner .sign-up {
	color: #fff;
	background:transparent;
	font-weight: bold;
}
header.xmas-banner .xmas-offer {
	background: rgb(243, 243, 246);
	border-radius: 20px;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 10px;
	height: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: white;
}

header.xmas-banner.noboss {
	background: #64999a;
}


header.xmas-banner .xmas-offer p {
	margin-bottom: 0;
	font-weight: bold;
	color: rgb(28, 29, 32);
	font-family: 'Lato';
}
header.xmas-banner .xmas-offer svg {
	margin-left: 5px;
	margin-right: 5px;
}
header.xmas-banner .xmas-offer img {
	margin-right: 5px;
}
@media only screen and (max-width: 576px) {
	header.xmas-banner .button, header.xmas-banner .xmas-offer p {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.3px;
		font-family: 'Lato';
	}
	
/* 	header.xmas-banner svg, header.xmas-banner span.hiddenXS { */
	header.xmas-banner .hiddenXS {
		display: none;
	}
	
	header.xmas-banner .shownMD {
		display: inline-block;
	}
}
.subscription {
	background-image: url(dist/img/hero-landscape.webp);
}

@media (max-width: 769px) {
	.subscription {
		background-image: url(dist/img/BG.webp);
		background-position: -5px -5px;
	}
}

#navbar {
	position: sticky;
	top: 0;
	background: #FFF;
	z-index: 20;
	transition: 0.4s;
	z-index: 101;
}

#navbar.on-scroll, #navbar.on-scroll__down {
	z-index: 99;
}
	
#navbar.on-scroll__up {
	z-index: 101;
}

@media (min-width: 1201px) {
	#navbar.on-scroll a.logo {
		padding: 0.75rem 0;
	} 
	
	#navbar.on-scroll #continue-button, 
	#navbar.on-scroll #signup-button {
		padding-top: 0.25rem;
    	padding-bottom: 0.25rem;
	}
}

.all-categories {
	max-width: 87%;
	overflow-x: scroll;
	overflow-y: hidden;
}

.all-categories li a {
	white-space: nowrap;
}

/*# sourceMappingURL=style.css.map */

.twitter-tweet {margin:auto;}

.shown-md {
	display: inline-block;
	@media (min-width: 1400px) {
		display: none;
	}
}

.hidden-md {
	display: none;
	@media (min-width: 1400px) {
		display: inline-block;
	}
}

/* MacOS Scrollbar */

.macos-scrollbar {
  &::-webkit-scrollbar {
      width: 12px;
      height: 12px;
      margin-right: 5px;
    }

    &::-webkit-scrollbar-track,
    &::-webkit-scrollbar-thumb {
      background: transparent;
    }
	
	&:hover,
    &:focus {
		&::-webkit-scrollbar-thumb {
		 	-webkit-transition: background 0.3s ease-in !important;
  		  	-moz-transition: background 0.3s ease-in !important;
			-o-transition: background 0.3s ease-in !important;
			transition: background 0.3s ease-in !important;
			background: hsla(233, 16%, 79%, 1);
			border-radius: 7px;
			background-clip: padding-box;
			border: 3px solid transparent;
			min-height: 50px;
		}
		
		&::-webkit-scrollbar-thumb:hover {
			-webkit-transition: background 0.3s ease-in !important;
  		  	-moz-transition: background 0.3s ease-in !important;
			-o-transition: background 0.3s ease-in !important;
			transition: background 0.3s ease-in !important;
			background: hsla(233, 14%, 65%, 1);
          	background-clip: padding-box;
		}
	}
}

.single-blog-columns .single-blog-content .cta-wrapper {
	display: none;
}


.single-blog-columns .cta-wrapper .cta, .single-blog-columns .cta-wrapper .subscribe {
	display: none;
	margin-bottom: 30px;
}

@media (max-width: 1399px) {
	.single-blog-columns .cta-wrapper {
		display: none;
	}
	
	.single-blog-columns .single-blog-content .cta-wrapper {
		display: block;
	}
	
	.single-blog-columns .single-blog-content .cta-wrapper {
		width: 100%;
	}
}

@media (min-width: 1400px) {
	.single-blog-columns .cta-wrapper .subscribe .newsletter-form {
		flex-wrap: wrap;
	}
}

.single-blog-columns .cta-wrapper {
	font-family: 'LATO';
    text-align: center;
	transition: 0.4s;
	height: fit-content;
}

.single-blog-columns .cta-wrapper .cta {
	padding: 32px 24px;
    background-color: #DEF5FF;
	border-radius: 10px;
}

.single-blog-columns .cta-wrapper .subscribe {
	padding: 32px 24px;
    background-color: #006757;
	border-radius: 10px;
}


.single-blog-columns .cta-wrapper .subscribe .email { 
    border-radius: 10px;
    width: 100%;
    padding: 9px 15px;
    margin-bottom: 10px;
	font-size: 14px;
}

.single-blog-columns .cta-wrapper .cta-title {
	color: #113A54;
    display: block;
    font-weight: bold;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.2px;
    margin-bottom: 16px;	
}

.single-blog-columns .cta-wrapper .cta-subtitle {
	font-size: 16px;
    color: #4F4F4F;
    display: block;
    margin-bottom: 24px;
}

.single-blog-columns .cta-wrapper .subscribe .cta-subtitle {
	color: white;
	margin-bottom: 16px;
}

.single-blog-columns .cta-wrapper .cta-button {
    border-radius: 10px;
    padding: 5px;
	width: fit-content;
	min-width: 200px;
    display: block;
    font-weight: bold;
    line-height: 32px;
	margin: auto;
	transition: all .3s ease-in-out;
}

.single-blog-columns .cta-wrapper .cta .cta-button {
	color: #113A54;
	border: 1px solid #113A54;
}

.single-blog-columns .cta-wrapper .cta .cta-button:hover {
	color: white;
	background: #113A54;
}

.single-blog-columns .cta-wrapper .subscribe .cta-button {
    color: white;
	background: #008477;
}

.single-blog-columns .cta-wrapper .subscribe .cta-button:hover {
	background: #009587;
}

.single-blog-content .cta-wrapper .cta-subtitle {
	margin-bottom: 32px !important;	
}

.single-blog-content .cta-wrapper .cta .cta-button {
	color: white;
    background: #00A699;
	border: unset;
}

.single-blog-content .cta-wrapper .subscribe .email { 
	font-size: 16px;
}
	

@media (max-width: 1399px) {
	.single-blog-columns .cta-wrapper .subscribe .newsletter__input {
		width: 70%;
		margin: auto;
	}
	
	.single-blog-columns .cta-wrapper .subscribe .cta-subtitle {
		font-weight: bold;
		font-size: 20px;
		line-height: 32px;
		letter-spacing: 0.2px;
	}
	
	.single-blog-columns .cta-wrapper .cta .cta-button {
		padding: 14px 20px;
	}
}

.features-container {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.pulse-container {
	position: relative;
	margin-right: 0.75rem;
}

.pulse-circle {
	width: 10px;
	height: 10px;
	background-color: #00a9ff;
	border-radius: 50%;
	position: absolute;
	left: -8px;
	top: -4px;
	z-index: 1;
}

.pulse-ring {
	border: 3px solid #ace5ff;
	-webkit-border-radius: 30px;
	height: 25px;
	width: 25px;
	position: absolute;
	left: -15.5px;
	top: -11.5px;
	-webkit-animation: pulsate 1s ease-out;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
	z-index: 1;
}

@keyframes pulsate {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
	}
}


.single-blog-content .cta-wrapper .cta .cta-button:hover {
	background: hsla(176, 100%, 35%, 1) !important;
}

.cta-wrapper.xmas {
	background: #FFCCD4FF;
}

.cta-wrapper.xmas .cta-button {
	background: linear-gradient(0deg,#eb3349,#eb5757);
}

.cta-wrapper.xmas .cta-button:hover {
	background: linear-gradient(0deg, #c52626, #d25b5b);
}

.cta.noboss {
	display: block !important;
	background: #64999A !important;
}

.cta.noboss * {
  color: white !important;
}

.cta.noboss .cta-button {
  border: white 1px solid !important;
  background: #64999A !important;
}

.cta.noboss .cta-button:hover {
  background: #3a5859 !important;
}

.wp-block-file__button {
	padding: 10px;
}

.publer-banner {
	min-height: 230px;
    object-fit: cover;
	object-position: 37%;
    width: 100%;
    border-radius: 10px
}

.home-publer-banner-wrapper {
	padding: 100px 0;
}

.articles-publer-banner-wrapper {
	padding: 50px 0 100px 0;
}

.articles-publer-banner-wrapper.mobile, .articles-newsletter-banner-wrapper.mobile {
	display: none;
}

@media (max-width: 991px) {
	.home-publer-banner-wrapper {
		padding: 50px 0;
		background: inherit;
		margin-top: -50px;
	}
	
	.articles-publer-banner-wrapper {
		padding: 0 0 50px 0;
	}
	
	.articles-publer-banner-wrapper.mobile, .articles-newsletter-banner-wrapper.mobile {
		display: inline-block;
	}
	
	.articles-publer-banner-wrapper.desktop, .articles-newsletter-banner-wrapper.desktop {
		display: none;
	}
	
	.articles-newsletter-banner-wrapper { 
		padding-bottom: 0;
	}
}

.footer-banner-wrapper {
	padding-top: 100px;
	border-top: 1px solid #e0e0e0;
}

.footer-banner-wrapper div {
	display: flex;
	align-items: center;
}

.footer-banner {
	width: 100%;
}

.footer-banner-cta {
    text-align: center;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 70px 30px;
}

.footer-banner-cta img {
	margin: 0 auto 10px auto;
}

.footer-banner-cta a.btn {
    width: max-content;
    margin: 30px auto 0 auto;
    background: #00ccc5;
    box-shadow: unset;
    color: white;
    padding: 10px 30px;
}

.footer-banner-cta a.btn:hover {
	background: #00c2b8;
}

.footer-banner-cta .review-badges {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 576px) {
	.footer-banner-cta {
		text-align: center;
		width: 100%;
		align-items: center;
		display: flex;
		flex-direction: column;
		margin: 70px 0;
	}
}

.newsletter-form {
	margin-top: 10px;
	display: flex;
	gap: 16px;
}

.single-blog-columns .cta-wrapper .subscribe .newsletter-form {
	margin-top: 0;
}

.newsletter-form .email {
	margin-bottom: 0 !important;
}

.newsletter-form .submit {
	width: 50% !important;
	align-self: flex-start;
}

.newsletter__input .response {
	display: none;
	margin-top: 16px;
	color: white;
	margin-bottom: 0;
}

#newsletter-wrapper {
	width: 50%;
	margin: auto;
}

@media (max-width: 991px) {
	.newsletter-form {
		display: block;
		margin-top: 0;
	}
	
	.newsletter-form .email {
		margin-bottom: 20px !important;
	}
	
	.newsletter-form .submit {
		width: 100% !important;
	}
	
	#newsletter-wrapper, .single-blog-columns .cta-wrapper .subscribe .newsletter__input {
		width: 100%;
	}
}

.aal_anchor {
    margin-left: -25px;
    line-height: 1;
    position: absolute;
	display: none !important;
	transition: all 0.3s ease-in-out;
}

@media (min-width: 576px) {
	.aal_anchor {
		display: inline-block !important;
	}
}

.tilted-underline {
	position: relative;
	display: inline-block;
	padding-bottom: 6px;
	margin-bottom: -6px;
}

.tilted-underline::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -4px;
	height: 7px;
	width: calc(100% + 8px);
	border-width: 2px;
	border-color: currentColor transparent transparent transparent;
	border-radius: 50%;
}

/* Mobile language dropdown behavior */
@media (max-width: 1200px) {
    #navbar .mobile-menubar .mobile-language, #submenu .mobile-menubar .mobile-language {
        position: relative;
        display: flex;
        align-items: center;
    }

    #navbar .mobile-menubar .mobile-language > a,  #submenu .mobile-menubar .mobile-language > a {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    /* Hidden by default; JS .toggle() will show/hide it */
    #navbar .mobile-menubar .mobile-language .menu.menu-global.languages, #submenu .mobile-menubar .mobile-language .menu.menu-global.languages {
        position: absolute;
        right: 0;
        top: calc(100% + 4px);
        display: none;
        background: #fff;
        border-radius: 8px;
        border: 1px solid #e6e7ec;
        padding: 4px 0;
        min-width: 67px;
        z-index: 9999;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    }

    #navbar .mobile-menubar .mobile-language .menu.menu-global.languages a, #submenu .mobile-menubar .mobile-language .menu.menu-global.languages a {
        display: block;
        padding: 6px 10px !important;
        text-align: center;
        height: 32px;
    }
}

.is-content-justification-center {
	display: flex !important;
	gap: 20px !important;
}

.has-white-background-color {
	background: white !important; 
	border: 2px solid !important;
}

.has-white-color {
	color: white !important;
}

.wp-block-coblocks-hero__content {
  max-width: unset !important;
}

.uagb-timeline__line {
  height: 100%;
  top: 0px;
}