/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

main {
  display: block
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

img {
  border-style: none
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText
}

fieldset {
  padding: .35em .75em .625em
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

details {
  display: block
}

summary {
  display: list-item
}

template {
  display: none
}

[hidden] {
  display: none
}

/* Calendar view style */

#calendareview {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;
}

/* Calendar responsiveness */
#calendareview .entitylist {
  width: 100% !important;
  max-width: 100% !important;
}

/* Adjust FullCalendar inside the entity list */
#calendareview .fc {
  font-family: var(--etj-font-family);
  font-size: 0.9rem;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  #calendareview {
    padding: 0.5rem;
  }

  #calendareview .fc {
    font-size: 0.8rem;
  }
}


/* ====== ETJ Calendar Styles ====== */

/* Calendar container */
.entitylist .calendar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 10px;
  font-family: var(--etj-font-family);
  color: var(--etj-body-color);
}

/* Calendar header */
.entitylist .calendar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--etj-secondary);
  text-align: center;
}

.entitylist .page-header {
  border-bottom: none;
  margin-bottom: 1rem;
}

/* Navigation buttons */
.entitylist .calendar-navs .btn,
.entitylist .calendar-views .btn {
  background: var(--etj-light-gray);
  border: 1px solid #e5e7eb;
  color: var(--etj-secondary);
  border-radius: 6px;
  margin-right: 5px;
  transition: all 0.2s ease-in-out;
}

.entitylist .calendar-navs .btn:hover,
.entitylist .calendar-views .btn:hover {
  background: var(--etj-primary);
  color: #fff;
  border-color: var(--etj-primary);
}

/* Active view button */
.entitylist .calendar-views .btn.active {
  background: var(--etj-primary);
  color: #fff;
  border-color: var(--etj-primary);
}

/* Calendar grid */
.entitylist .cal-month-box {
  border-top: 1px solid #e5e7eb;
}

.entitylist .cal-cell1 {
  border: 1px solid #f0f0f0;
  padding: 6px;
  min-height: 80px;
  position: relative;
}

/* Days */
.entitylist .cal-month-day {
  border-radius: 8px;
  padding: 4px;
  transition: background 0.2s ease-in-out;
}

.entitylist .cal-month-day:hover {
  background: var(--etj-light);
}

/* Date numbers */
.entitylist .cal-month-day span.float-end {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--etj-body-color);
}

/* Today highlight */
.entitylist .cal-day-today {
  background: var(--etj-light);
  border: 1px solid var(--etj-primary);
}

/* Events */
.entitylist .events-list a {
  display: block;
  background: var(--etj-primary);
  color: #fff !important;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 6px;
  margin-top: 4px;
  text-decoration: none;
  font-weight: 500;
}

.entitylist .events-list a:hover {
  background: #a3272d; /* darker shade of primary */
}

/* Hide the Download Calendar button */
#DownloadTitleLink {
  display: none !important;
}



/*# sourceMappingURL=normalize.min.css.map */

:root {
  --etj-primary: #CB333B;
  --etj-secondary: #000000;
  --etj-light: #FAEBEB;
  --etj-light-gray: #F9FAFB;
  --etj-wrapper: 1160px;
  --etj-body-color: #333333;
  --etj-font-family: Inter, sans-serif;
}

::-moz-selection {
  background: var(--etj-primary);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--etj-primary);
  color: #fff;
  text-shadow: none;
}


html,
body {
  line-height: 1.7;
  font-size: 15px;
  color: var(--etj-body-color);
  background-color: var(--body-bg);
  font-family: var(--etj-font-family);
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/* ==========================================================================
	Common Settings
========================================================================== */


/* Header Navigation */
.etj-navigation ul,
.etj-navigation li {
  list-style: none;
}

/* Footer Links */
.etj-footer__links ul,
.etj-footer__links li,
.etj-footer__social ul,
.etj-footer__social li {
  list-style: none;
}


.etj-body,
.etj-body * {
  box-sizing: border-box;
}

.etj-body h1,
.etj-body h2,
.etj-body h3,
.etj-body h4,
.etj-body h5,
.etj-body h6 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.etj-body h1 {
  font-size: 6rem;
  line-height: 1;
}

.etj-body h2 {
  font-size: 2.15rem;
}

.etj-body h3 {
  font-size: 2rem;
}

.etj-body h4 {
  font-size: 1.5rem;
}

.etj-body h5 {
  font-size: 1.25rem;
}

.etj-body h6 {
  font-size: 1rem;
}

.etj-body a {
  text-decoration: none;
}

.etj-body ul {
  padding: 0;
  list-style: none;
  margin-top: 0;
}

.etj-body figure,
.etj-body blockquote,
.etj-body ul {
  margin: 0;
}

.etj-body p {
  margin-bottom: 1rem;
  margin-top: 0;
}

.etj-body p:last-child {
  margin-bottom: 0;
}

.etj-body hr {
  border-color: #545454;
  margin: 1.7rem 0;
}


/* ==========================================================================
	Site Header
========================================================================== */

.etj-header {
  padding: 1.2rem 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.etj-logo {
  width: 12rem;
}


/* ==========================================================================
	Main Navigation
========================================================================== */

.etj-navigation > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.5rem;
}

.etj-navigation > ul > li a {
  color: #fff;
  font-size: 1.125rem;
  transition: 500ms ease-in-out;
  font-weight: 500;
  text-decoration: none;
}

.etj-navigation a:hover {
  color: var(--etj-primary);
}

.etj-navigation li {
    position: relative;
  }

  .etj-navigation__dropdown {
    position: absolute;
    right: 0;
    background-color: #fff;
    border-radius: 0.5rem;
    min-width: 13rem;
    padding: 1rem 0;
    display: none;
  }

  .etj-navigation li:hover .etj-navigation__dropdown {
    display: block;
  }

  .etj-navigation__dropdown > ul > li > a {
    color: var(--etj-primary);
    display: block;
    padding: 0.4rem 1rem;
    text-align: center;
    transition: 350ms ease-in-out;
    font-size: 1.1rem;
  }

  .etj-navigation__dropdown > ul > li > a:hover {
    background-color: #7a1f2329;
  }

.etj-menu-trigger,
.etj-menu-close {
  display: none;
}


/* ==========================================================================
	Hero Banner
========================================================================== */

.etj-hero {
  background: #7A1F23 url(/etj-hero-style.png) no-repeat left center;
  padding: 10rem 0 4.5rem 0;
  color: #fff;
}

.etj-hero__box {
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #B72B32 0%, #98262C 83.71%);
}

.etj-hero .etj-row {
  align-items: center;
}

.etj-hero .etj-hero__text {
  padding: 2rem 4rem;
}

.etj-hero__text h1 {
  line-height: 1.3;
  font-weight: 700;
}

.etj-hero__text span {
  display: block;
  font-size: 34%;
  font-weight: 500;
}

.etj-hero__quote {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1rem;
  font-weight: 500;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
  border-radius: 0.625rem;
  color: #fff;
  border-left: 3px solid #fff;
}

.etj-hero__image {
  margin-bottom: 0;
  position: relative;
  float: right;
}

.etj-hero__image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  padding: 0.5rem;
  text-transform: uppercase;
}

.etj-hero__image figcaption:before {
  content: "";
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    backdrop-filter: blur(5px);
    filter: blur(5px);
}

.etj-hero__image figcaption span {
  position: relative;
}


/* ==========================================================================
	Section
========================================================================== */

.etj-section {
  padding: 4rem 0;
}

.etj-section .etj-section__title {
  font-weight: 800;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.etj-section__header {
  margin-bottom: 2rem;
}

.etj-section__header .etj-section__title {
  margin-bottom: 0;
}

.etj-section__header:after {
  content: "";
  width: 7rem;
  display: block;
  border-bottom: 2px solid #9CA3AF;
  height: 2px;
  margin-top: 0.5rem;
}


/* ==========================================================================
	Box
========================================================================== */

.etj-box {
  background-color: var(--etj-primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}

.etj-box img {
  height: 2.2rem;
  max-width: 2rem;
  margin-bottom: 1rem;
}

.etj-stats-box-list .etj-stats-box,
.etj-box-list .etj-box {
  margin-top: 2rem;
}

.etj-stats-box {
  background-color: #6B75CB;
  padding: 1.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 0.625rem;
}

.etj-stats-box--color2 {
  background-color: #58135E;
}

.etj-stats-box--color3 {
  background-color: #FFA96A;
}

.etj-stats-box--color4 {
  background-color: #75163F;
}

h6.etj-stats-box__title {
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0;
}

.etj-stats-box__digit {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.8rem 0;
}

.etj-stats-box__digit span {
  max-width: 82%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ==========================================================================
	Cards
========================================================================== */

.etj-card {
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  color: #1F2937;
}

.etj-card__quote {
  background-color: #F2F6FF;
  padding: 1.5rem;
  border-left-color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.7;
}

.etj-card__quote-icon {
  width: 11rem;
}

.etj-card hr {
  border: 1px solid #E5E7EB;
}

.etj-card__list {
  margin-top: 1rem;
}

.etj-card__list .etj-block__title {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 0.6rem;
}

.etj-card__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.6rem;
}

.etj-card__list .etj-badge__icon--dot {
  margin: 0 0.6rem;
}

.new-customer-card .etj-section__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* ==========================================================================
	Block Card
========================================================================== */

.etj-block {
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  padding: 0.85rem;
  margin-top: 1.1rem;
  line-height: 1.3;
}

.etj-block--with-bg {
  background-color: var(--etj-light-gray);
}

.etj-block--light-color {
  color: #545454;
}

.etj-block__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.etj-card__note {
  font-size: 0.75rem;
  padding-top: 1rem;
}

h5.etj-block__title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #1F2937;
}

.ejt-event__time {
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ejt-event__time-icon {
  opacity: 0.5;
}

.etj-block__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.book-card__header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}

.book-card__icon {
  min-width: 5rem;
  width: 5rem;
  height: 5rem;
  background-color: #edcecc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
}

.user-block__img img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin-right: 0.8rem;
}

h5.book-card__title {
  margin-bottom: 0.2rem;
}

p.book-card__author {
  color: #545454;
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
}

.book-card__quote {
  background-color: #E4FBDD;
  border-left-color: #60BC43;
}

/* ==========================================================================
	Quote
========================================================================== */

.etj-quote {
  border-left-width: 2px;
  border-left-style: solid;
  padding: 1rem 1.4rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* ==========================================================================
	Badge
========================================================================== */

.etj-badge {
  display: inline-flex;
  align-items: center;
  background-color: #F2F2F2;
  border-radius: 1.875rem;
  padding: 0.25rem 0.76rem;
  color: #1F2937;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  gap: 0.5rem;
}

.etj-badge__icon--dot {
  background-color: #9CA3AF;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
	Button
========================================================================== */

.etj-btn,
.etj-btn-basic {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--etj-primary);
  background-color: var(--etj-light);
  border: 1px solid #EFC0C2;
  border-radius: 0.25rem;
  padding: 0.58rem 0.7rem;
  gap: 0.5rem;
  font-weight: 600;
  line-height: 1;
}

.etj-btn--alt {
  background-color: var(--etj-primary);
  color: #fff;
}

.etj-btn-basic {
  background-color: #fff;
  border-color: #E5E7EB;
  display: inline-block;
  border-color: #E5E7EB;
  color: #4B5563;
  font-size: 0.875rem;
}



/* ==========================================================================
	List
========================================================================== */

.etj-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #545454;
  margin-bottom: 0.5rem;
}

.etj-list li:before {
  content: "";
  background: url(/check-circle.svg) no-repeat;
  background-size: 100%;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
}

.etj-list strong {
  font-weight: 500;
}

/* ==========================================================================
	Footer
========================================================================== */

.etj-footer {
  background-color: var(--etj-secondary);
  color: #fff;
  padding: 4rem 0;
}

.etj-footer a {
  color: #fff;
}

.etj-footer__links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.etj-footer__links a {
  transition: 500ms ease-in-out;
}

.etj-footer__links a:hover {
  color: var(--etj-primary);
}

.etj-footer__top .etj-footer__links ul {
  justify-content: center;
}

.etj-footer__bottom .etj-footer__links ul {
  justify-content: flex-end;
}

.etj-footer__social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.etj-footer__social ul li a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 500ms ease-in-out;
}

.etj-footer__social ul li a:hover {
  background-color: var(--etj-primary);
  transform: translate(0, -0.2rem);
}


/* ==========================================================================
	Form
========================================================================== */

.etj-form__label {
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.etj-form__group {
  margin-bottom: 3rem;
}

.etj-form__control {
  display: block;
  width: 100%;
  outline: 0;
  background: rgba(255,255,255,0.1);
  transition: 350ms ease-in-out;
  padding: 0.75rem 1rem;
  border: 0;
  height: 3.4rem;
  color: #fff;
  border-radius: 0.4rem;
}

.etj-form__control::placeholder {
  color: #fff;
}

.etj-form__control:focus {
  background-color: rgba(255,255,255,0.3);
}

.etj-form .etj-form__title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
}


/* ==========================================================================
	Signin
========================================================================== */

.etj-signin {
  min-height: 100vh;
}

.etj-signin .etj-form {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem;
}


/* ==========================================================================
	Grids
========================================================================== */

.etj-wrapper {
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.etj-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.etj-row--with-divider .etj-row__left {
  border-right: 1px solid #E5E7EB;
  padding-right: 2rem;
}

.etj-row--with-divider .etj-row__right {
  padding-left: 2rem;
}

.etj-row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.etj-col-3 {
  width: 25%;
}

.etj-col-6 {
  width: 50%;
}

.etj-col-9 {
  width: 75%;
}

.etj-col-12 {
  width: 100%;
}

/* ==========================================================================
	Generic Reusable Classes
========================================================================== */

.etj-text-primary {
  color: var(--etj-primary);
}

.etj-text-secondary {
  color: var(--etj-secondary);
}

.etj-background-primary {
  background-color: var(--etj-primary);
}

.etj-bg-light {
  background-color: var(--etj-light);
}

.etj-bg-light-gray {
  background-color: var(--etj-light-gray);
}

.etj-figure {
  border-radius: 1.5rem;
}

.etj-selectbox {
  border: 1px solid #E5E7EB;
  height: 2.25rem;
  border-radius: 0.25rem;
  min-width: 8rem;
  font-size: 1rem;
  font-weight: 500;
}

.etj-flex {
  display: flex;
}

.etj-flex-column {
  flex-direction: column;
}

.etj-justify-between {
  justify-content: space-between;
}

.etj-flex-end {
  justify-content: flex-end;
}

.etj-mb-0 {
  margin-bottom: 0 !important;
}

.etj-mt-0 {
  margin-top: 0 !important;
}

.etj-mb-5px {
  margin-bottom: 5px !important;
}

.etj-mb-20 {
  margin-bottom: 1.25rem;
}

.etj-mb-30 {
  margin-bottom: 1.875rem;
}

.etj-mt-30 {
  margin-top: 1.875rem;
}

.etj-mb-50 {
  margin-bottom: 3.125rem;
}

.etj-h-100 {
  height: 100%;
}


/* ==========================================================================
	Media Queries
========================================================================== */

@media (min-width: 768px) {

  .etj-col-md-6 {
    width: 50%;
  }

  .etj-col-md-3 {
    width: 25%;
  }

  .etj-col-md-4 {
    width: 33.3333%;
  }

  .etj-col-md-8 {
    width: 66.6667%;
  }

  .etj-col-md-9 {
    width: 75%;
  }

}

@media (min-width: 992px) {

  .etj-col-lg-6 {
    width: 50%;
  }

  .etj-col-lg-4 {
    width: 33.3333%;
  }

  .etj-col-lg-3 {
    width: 25%;
  }

  .etj-col-lg-5 {
    width: 41.66666667%;
  }

  .etj-col-lg-7 {
    width: 58.33333333%;
  }

}

@media (min-width: 1200px) {


  .etj-col-xl-3 {
    width: 25%;
  }

  .etj-col-xl-6 {
    width: 50%;
  }

}

@media (max-width: 1199px) {

  .etj-row-gap-lg {
    gap: 3rem;
  }

}

@media (max-width: 991px) {
  .etj-footer__links ul {
    gap: 1.2rem;
  }

  .etj-body h1 {
    font-size: 4rem;
  }

  .etj-row-gap-md {
    gap: 3rem;
  }

  .etj-row--with-divider .etj-row__left {
    border-right: 0;
    border-bottom: 1px solid #E5E7EB;
    padding-right: 1rem;
    padding-bottom: 2rem;
  }

  .etj-row--with-divider .etj-row__right {
    padding-left: 1rem;
    padding-top: 2rem;
  }


}


@media (max-width: 767px) {

  .etj-section,
  .etj-footer {
    padding: 3rem 0;
  }

  .etj-hero {
    padding-top: 8rem;
  }

  .etj-body h1 {
    font-size: 3rem;
  }

  .etj-body h2 {
    font-size: 1.8rem;
  }

  .etj-body h3 {
    font-size: 1.7rem;
  }

  .etj-body h4 {
    font-size: 1.5rem;
  }

  .etj-footer {
    text-align: center;
  }

  .etj-footer__links ul,
  .etj-footer__social ul {
    justify-content: center !important;
  }

  .etj-footer__top .etj-footer__links ul {
    margin: 1.5rem 0;
  }

  .etj-menu-trigger,
  .etj-menu-close {
    display: block;
    text-align: right;
  }

  .etj-menu-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
  }

  .etj-header {
    padding: 1.2rem 0;
  }

  .etj-header .etj-row {
    align-items: center;
  }

  .etj-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99;
    transition: 400ms ease-in-out;
  }

  .etj-menu-open .etj-navigation {
    right: 0;
  }

  .etj-navigation > ul {
    flex-direction: column;
    padding: 7rem 0;
    align-items: center;
  }

  .etj-block__right {
    justify-content: flex-start;
    margin-top: 0.6rem;
  }

  .etj-hero__image {
    float: none;
  }

  .etj-hero__image img {
    width: 100%;
  }

  .etj-hero .etj-hero__text {
    text-align: center;
  }

  .new-customer-card .etj-section__title-wrap {
    display: block;
  }

}










/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

main {
  display: block
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

img {
  border-style: none
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText
}

fieldset {
  padding: .35em .75em .625em
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

details {
  display: block
}

summary {
  display: list-item
}

template {
  display: none
}

[hidden] {
  display: none
}

/*# sourceMappingURL=normalize.min.css.map */


:root {
  --etj-primary: #CB333B;
  --etj-secondary: #000000;
  --etj-light: #FAEBEB;
  --etj-light-gray: #F9FAFB;
  --etj-wrapper: 1160px;
  --etj-body-color: #333333;
  --etj-font-family: Inter, sans-serif;
}

::-moz-selection {
  background: var(--etj-primary);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--etj-primary);
  color: #fff;
  text-shadow: none;
}


html,
body {
  line-height: 1.7;
  font-size: 15px;
  color: var(--etj-body-color);
  background-color: var(--body-bg);
  font-family: var(--etj-font-family);
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/* ==========================================================================
	Common Settings
========================================================================== */

.etj-body,
.etj-body * {
  box-sizing: border-box;
}

.etj-body h1,
.etj-body h2,
.etj-body h3,
.etj-body h4,
.etj-body h5,
.etj-body h6 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.etj-body h1 {
  font-size: 6rem;
  line-height: 1;
}

.etj-body h2 {
  font-size: 2.15rem;
}

.etj-body h3 {
  font-size: 2rem;
}

.etj-body h4 {
  font-size: 1.5rem;
}

.etj-body h5 {
  font-size: 1.25rem;
}

.etj-body h6 {
  font-size: 1rem;
}

.etj-body h6 small {
  font-size: 65%;
}

.etj-body a {
  text-decoration: none;
}

.etj-body ul {
  padding: 0;
  list-style: none;
  margin-top: 0;
}

.etj-body figure,
.etj-body blockquote,
.etj-body ul {
  margin: 0;
}

.etj-body p {
  margin-bottom: 1rem;
  margin-top: 0;
}

.etj-body p:last-child {
  margin-bottom: 0;
}

.etj-body hr {
  border-color: #545454;
  margin: 1.7rem 0;
}


/* ==========================================================================
	Site Header
========================================================================== */

.etj-header {
  padding: 1.2rem 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.etj-logo {
  width: 12rem;
}


/* ==========================================================================
	Main Navigation
========================================================================== */

.etj-navigation > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.5rem;
}

.etj-navigation > ul > li a {
  color: #fff;
  font-size: 1.125rem;
  transition: 500ms ease-in-out;
  font-weight: 500;
  text-decoration: none;
}

.etj-navigation a:hover {
  color: var(--etj-primary);
}

.etj-navigation li {
    position: relative;
  }

  .etj-navigation__dropdown {
    position: absolute;
    right: 0;
    background-color: #fff;
    border-radius: 0.5rem;
    min-width: 13rem;
    padding: 1rem 0;
    display: none;
  }

  .etj-navigation li:hover .etj-navigation__dropdown {
    display: block;
  }

  .etj-navigation__dropdown > ul > li > a {
    color: var(--etj-primary);
    display: block;
    padding: 0.4rem 1rem;
    text-align: center;
    transition: 350ms ease-in-out;
    font-size: 1.1rem;
  }

  .etj-navigation__dropdown > ul > li > a:hover {
    background-color: #7a1f2329;
  }

.etj-menu-trigger,
.etj-menu-close {
  display: none;
}


/* ==========================================================================
	Hero Banner
========================================================================== */

.etj-hero {
  background: #7A1F23 url(/etj-hero-style.png) no-repeat right center;
  padding: 10rem 0 4.5rem 0;
  color: #fff;
}

.etj-hero__box {
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #B72B32 0%, #98262C 83.71%);
}

.etj-hero .etj-row {
  align-items: center;
}

.etj-hero .etj-hero__text {
  padding: 2rem 4rem;
}

.etj-hero__text h1 {
  line-height: 1.3;
  font-weight: 700;
}

.etj-hero__text span {
  display: block;
  font-size: 34%;
  font-weight: 500;
}

.etj-hero__quote {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1rem;
  font-weight: 500;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
  border-radius: 0.625rem;
  color: #fff;
  border-left: 3px solid #fff;
}

.etj-hero__image {
  margin-bottom: 0;
  position: relative;
  float: right;
}

.etj-hero__image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  padding: 0.5rem;
  text-transform: uppercase;
  border-top: 1px solid #fff;
}

.etj-hero__image figcaption:before {
  content: "";
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    backdrop-filter: blur(5px);
    filter: blur(5px);
}

.etj-hero__image figcaption span {
  position: relative;
}

.etj-hero__social {
  gap: 2rem;
  justify-content: flex-end;
}

.etj-hero__social a {
  display: block;
  transition: 500ms ease-in-out;
}

.etj-hero__social a:hover {
  transform: translate(0,-0.4rem);
}

.etj-hero__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.etj-hero__card-icon {
  min-width: 2rem;
  margin-right: 0.5rem;
}

.etj-hero__card-title {
  padding-top: 0.2rem;
}

.etj-hero__card a {
  color: #fff;
}

.etj-profile-hero {
  padding: 0 !important;
  margin-bottom: 8rem;
}

.etj-profile-hero .etj-hero__box {
  padding: 2rem;
    position: relative;
    bottom: -7rem;
    z-index: 1;
}

.etj-profile-hero .etj-hero__title {
  font-size: 2.25rem;
  font-weight: 800;
}


/* ==========================================================================
	Section
========================================================================== */

.etj-section {
  padding: 4rem 0;
}

.etj-section .etj-section__title {
  font-weight: 800;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.etj-section__header {
  margin-bottom: 2rem;
}

.etj-section__header .etj-section__title {
  margin-bottom: 0;
}

.etj-section__header:after {
  content: "";
  width: 7rem;
  display: block;
  border-bottom: 2px solid #9CA3AF;
  height: 2px;
  margin-top: 0.5rem;
}


/* ==========================================================================
	Box
========================================================================== */

.etj-box {
  background-color: var(--etj-primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}

.etj-box img {
  height: 2.2rem;
  max-width: 2rem;
  margin-bottom: 1rem;
}

.etj-stats-box-list .etj-stats-box,
.etj-box-list .etj-box {
  margin-top: 2rem;
}

.etj-stats-box {
  background-color: #6B75CB;
  padding: 1.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 0.625rem;
}

.etj-stats-box--color2 {
  background-color: #58135E;
}

.etj-stats-box--color3 {
  background-color: #FFA96A;
}

.etj-stats-box--color4 {
  background-color: #75163F;
}

h6.etj-stats-box__title {
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0;
}

.etj-stats-box__digit {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.8rem 0;
}

.etj-stats-box__digit span {
  max-width: 82%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ==========================================================================
	Cards
========================================================================== */

.etj-card {
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  color: #1F2937;
}

.etj-card__quote {
  background-color: #F2F6FF;
  padding: 1.5rem;
  border-left-color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.7;
}

.etj-card__quote-icon {
  width: 11rem;
}

.etj-card hr {
  border: 1px solid #E5E7EB;
}

.etj-card__list {
  margin-top: 1rem;
}

.etj-card__list .etj-block__title {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 0.6rem;
}

.etj-card__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.6rem;
}

.etj-card__list .etj-badge__icon--dot {
  margin: 0 0.6rem;
}

.new-customer-card .etj-section__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* ==========================================================================
	Block Card
========================================================================== */

.etj-block {
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  padding: 1.1rem;
  margin-top: 1.1rem;
  line-height: 1.3;
  position: relative;
}

a.etj-block {
  display: block;
  transition: 500ms ease-in-out;
  color: var(--etj-body-color);
}

a.etj-block:hover {
  border-color: #EFC0C2;
  box-shadow: 0 0.25rem 0.75rem #A2363C1F;
}

.etj-block--with-bg {
  background-color: var(--etj-light-gray);
}

.etj-block--light-color {
  color: #545454;
}

.etj-block__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.etj-block-list .etj-block:first-child {
  margin-top: 0;
}

.etj-block__title-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #F3F4F6;
  margin-right: 1rem;
}

.etj-block__arrow {
  position: absolute;
  bottom: 1rem;
}

.etj-card__note {
  font-size: 0.75rem;
  padding-top: 1rem;
}

h5.etj-block__title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #1F2937;
}

.ejt-event__time {
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ejt-event__time-icon {
  opacity: 0.5;
}

.etj-block__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.book-card__header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}

.book-card__icon {
  min-width: 5rem;
  width: 5rem;
  height: 5rem;
  background-color: #edcecc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
}

.user-block__img img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin-right: 0.8rem;
}

h5.book-card__title {
  margin-bottom: 0.2rem;
}

p.book-card__author {
  color: #545454;
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
}

.book-card__quote {
  background-color: #E4FBDD;
  border-left-color: #60BC43;
}

/* ==========================================================================
	Quote
========================================================================== */

.etj-quote {
  border-left-width: 2px;
  border-left-style: solid;
  padding: 1rem 1.4rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* ==========================================================================
	Badge
========================================================================== */

.etj-badge {
  display: inline-flex;
  align-items: center;
  background-color: #F2F2F2;
  border-radius: 1.875rem;
  padding: 0.25rem 0.76rem;
  color: #1F2937;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  gap: 0.5rem;
}

.etj-badge__icon--dot {
  background-color: #9CA3AF;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
	Button
========================================================================== */

.etj-btn,
.etj-btn-basic {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--etj-primary);
  background-color: var(--etj-light);
  border: 1px solid #EFC0C2;
  border-radius: 0.25rem;
  padding: 0.58rem 0.7rem;
  gap: 0.5rem;
  font-weight: 600;
  line-height: 1;
}

.etj-btn--alt {
  background-color: var(--etj-primary);
  color: #fff;
}

.etj-btn-basic {
  background-color: #fff;
  border-color: #E5E7EB;
  display: inline-block;
  border-color: #E5E7EB;
  color: #4B5563;
  font-size: 0.875rem;
}



/* ==========================================================================
	List
========================================================================== */

.etj-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #545454;
  margin-bottom: 0.5rem;
}

.etj-list li:before {
  content: "";
  background: url(/check-circle.svg) no-repeat;
  background-size: 100%;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
}

.etj-list strong {
  font-weight: 500;
}

/* ==========================================================================
	Footer
========================================================================== */

.etj-footer {
  background-color: var(--etj-secondary);
  color: #fff;
  padding: 4rem 0;
}

.etj-footer a {
  color: #fff;
}

.etj-footer__links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.etj-footer__links a {
  transition: 500ms ease-in-out;
}

.etj-footer__links a:hover {
  color: var(--etj-primary);
}

.etj-footer__top .etj-footer__links ul {
  justify-content: center;
}

.etj-footer__bottom .etj-footer__links ul {
  justify-content: flex-end;
}

.etj-footer__social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.etj-footer__social ul li a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 500ms ease-in-out;
}

.etj-footer__social ul li a:hover {
  background-color: var(--etj-primary);
  transform: translate(0, -0.2rem);
}


/* ==========================================================================
	Form
========================================================================== */

.etj-form__label {
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.etj-form__group {
  margin-bottom: 3rem;
}

.etj-form__control {
  display: block;
  width: 100%;
  outline: 0;
  background: rgba(255,255,255,0.1);
  transition: 350ms ease-in-out;
  padding: 0.75rem 1rem;
  border: 0;
  height: 3.4rem;
  color: #fff;
  border-radius: 0.4rem;
}

.etj-form__control::placeholder {
  color: #fff;
}

.etj-form__control:focus {
  background-color: rgba(255,255,255,0.3);
}

.etj-form .etj-form__title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
}

/* ==========================================================================
	Tabs
========================================================================== */

.etj-tabs__header {
  border-bottom: 1px solid #E6E6E6;
  font-size: 1.125rem;
  gap: 1.8rem;
}

.etj-tabs__header li {
  cursor: pointer;
  transition: 500ms ease-in-out;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.5rem;
  opacity: 0.6;
}

.etj-tabs__header li.is--active {
   border-bottom-color: #000;
   opacity: 1;
}

.etj-tabs__header li {
  gap: 0.4rem;
}

.etj-tabs__pane {
  display: none;
  padding: 1rem 0;
}

.etj-tabs__pane.is--active {
  display: block;
}

.etj-tabs__block {
  padding: 2rem 0;
}

/* ==========================================================================
	Signin
========================================================================== */

.etj-signin {
  min-height: 100vh;
}

.etj-signin .etj-form {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem;
}


/* ==========================================================================
	Grids
========================================================================== */

.etj-wrapper {
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.etj-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.etj-row-gap-4 {
  gap: 1.5rem 0
}

.etj-row--with-divider .etj-row__left {
  border-right: 1px solid #E5E7EB;
  padding-right: 2rem;
}

.etj-row--with-divider .etj-row__right {
  padding-left: 2rem;
}

.etj-row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.etj-col-3 {
  width: 25%;
}

.etj-col-6 {
  width: 50%;
}

.etj-col-9 {
  width: 75%;
}

.etj-col-9 {
  width: 75%;
}

.etj-col-12 {
  width: 100%;
}

/* ==========================================================================
	Generic Reusable Classes
========================================================================== */

.etj-text-primary {
  color: var(--etj-primary);
}

.bg-white {
  background-color: #fff;
}

.etj-text-secondary {
  color: var(--etj-secondary);
}

.etj-background-primary {
  background-color: var(--etj-primary);
}

.etj-bg-light {
  background-color: var(--etj-light);
}

.etj-bg-light-gray {
  background-color: var(--etj-light-gray);
}

.etj-figure {
  border-radius: 1.5rem;
}

.etj-selectbox {
  border: 1px solid #E5E7EB;
  height: 2.25rem;
  border-radius: 0.25rem;
  min-width: 8rem;
  font-size: 1rem;
  font-weight: 500;
}

.etj-fw-medium {
  font-weight: 500 !important;
}

.etj-flex {
  display: flex !important;
}

.etj-items-center {
  align-items: center;
}

.etj-flex-column {
  flex-direction: column;
}

.etj-justify-between {
  justify-content: space-between;
}

.etj-justify-center {
  justify-content: center;
}

.etj-flex-end {
  justify-content: flex-end;
}

.etj-pt-0 {
  padding-top: 0 !important;
}

.etj-mb-0 {
  margin-bottom: 0 !important;
}

.etj-mt-0 {
  margin-top: 0 !important;
}

.etj-mb-5px {
  margin-bottom: 5px !important;
}

.etj-mb-20 {
  margin-bottom: 1.25rem;
}

.etj-mb-30 {
  margin-bottom: 1.875rem;
}

.etj-mt-30 {
  margin-top: 1.875rem;
}

.etj-mb-50 {
  margin-bottom: 3.125rem;
}

.etj-h-100 {
  height: 100%;
}


/* ==========================================================================
	Media Queries
========================================================================== */

@media (min-width: 768px) {

  .etj-col-md-6 {
    width: 50%;
  }

  .etj-col-md-3 {
    width: 25%;
  }

  .etj-col-md-4 {
    width: 33.3333%;
  }

  .etj-col-md-8 {
    width: 66.6667%;
  }

  .etj-col-md-9 {
    width: 75%;
  }

}

@media (min-width: 992px) {

  .etj-col-lg-3 {
    width: 25%;
  }

  .etj-col-lg-4 {
    width: 33.3333%;
  }

  .etj-col-lg-5 {
    width: 41.66666667%;
  }

  .etj-col-lg-6 {
    width: 50%;
  }

  .etj-col-lg-7 {
    width: 58.33333333%;
  }

  .etj-col-lg-8 {
    width: 66.6667%;
  }

  .etj-col-lg-9 {
    width: 75%;
  }

}

@media (min-width: 1200px) {


  .etj-col-xl-3 {
    width: 25%;
  }

  .etj-col-xl-4 {
    width: 33.3333%;
  }

  .etj-col-xl-6 {
    width: 50%;
  }

}

@media (max-width: 1199px) {

  .etj-row-gap-lg {
    gap: 2rem;
  }

}

@media (max-width: 991px) {
  .etj-footer__links ul {
    gap: 1.2rem;
  }

  .etj-body h1 {
    font-size: 4rem;
  }

  .etj-row-gap-md {
    gap: 2rem;
  }

  .etj-row--with-divider .etj-row__left {
    border-right: 0;
    border-bottom: 1px solid #E5E7EB;
    padding-right: 1rem;
    padding-bottom: 2rem;
  }

  .etj-row--with-divider .etj-row__right {
    padding-left: 1rem;
    padding-top: 2rem;
  }

}


@media (max-width: 767px) {

  .etj-section,
  .etj-footer {
    padding: 3rem 0;
  }

  .etj-hero {
    padding-top: 8rem;
  }

  .etj-body h1 {
    font-size: 3rem;
  }

  .etj-body h2 {
    font-size: 1.8rem;
  }

  .etj-body h3 {
    font-size: 1.7rem;
  }

  .etj-body h4 {
    font-size: 1.5rem;
  }

  .etj-footer {
    text-align: center;
  }

  .etj-footer__links ul,
  .etj-footer__social ul {
    justify-content: center !important;
  }

  .etj-footer__top .etj-footer__links ul {
    margin: 1.5rem 0;
  }

  .etj-menu-trigger,
  .etj-menu-close {
    display: block;
    text-align: right;
  }

  .etj-menu-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
  }

  .etj-header {
    padding: 1.2rem 0;
  }

  .etj-header .etj-row {
    align-items: center;
  }

  .etj-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99;
    transition: 400ms ease-in-out;
  }

  .etj-menu-open .etj-navigation {
    right: 0;
  }

  .etj-navigation > ul {
    flex-direction: column;
    padding: 7rem 0;
    align-items: center;
  }

  .etj-block__right {
    justify-content: flex-start;
    margin-top: 0.6rem;
  }

  .etj-hero__image {
    float: none;
  }

  .etj-hero__image img {
    width: 100%;
  }

  .etj-hero .etj-hero__text {
    text-align: center;
  }

  .new-customer-card .etj-section__title-wrap {
    display: block;
  }

  .etj-profile-hero .etj-hero__image {
    margin-bottom: 2rem;
  }

}

/* Hide list headers */
.view-grid thead {
  display: none !important;
}

