/* typography font family */
:root {
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
  Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* color palette */
:root {
  /*brand */
  --primary: #123D3C;

  --greyscale-10: #1a1a1a;
  --greyscale-15: #262626;
  --greyscale-20: #333333;
  --greyscale-25: #404040;
  --greyscale-30: #4d4d4d;
  --greyscale-35: #595959;
  --greyscale-40: #666666;
  --greyscale-45: #737373;
  --greyscale-50: #808080;
  --greyscale-55: #8c8c8c;
  --greyscale-60: #999999;
  --greyscale-65: #a6a6a6;
  --greyscale-70: #b3b3b3;
  --greyscale-75: #bfbfbf;
  --greyscale-80: #cccccc;
  --greyscale-85: #d9d9d9;
  --greyscale-90: #e6e6e6;
  --greyscale-95: #f0f0f0;
  --greyscale-98: #f8f8f8;

  /*link color*/
  --link: #006bff;
  --link-hover: #0055cc;

  /*text*/
  --text-white: #ffffff;
  --text-black: #1d1d1d;
  --text-grey: #b8b8b8;
  --text-mute-dark: #606060;
  --text-mute-light: #dbdbdb;

  /*other*/
  --white: #ffffff;
  --black: #000000;
  --blue: #0084ff;
  --red: #dc143c;
  --green: #329e5e;
  --yellow: #ffc107;
  --lazy-load-bg: #e2e2e2;
  --lazy-load-variant-bg: #d5d5d5;
}

/* font styles */
:root {
  /*size*/
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-nxl: 9rem;

  /*height*/
  --line-height-xs: 1rem;
  --line-height-sm: 1.25rem;
  --line-height-base: 1.5rem;
  --line-height-lg: 1.75rem;
  --line-height-xl: 1.75rem;
  --line-height-2xl: 2rem;
  --line-height-3xl: 2.25rem;
  --line-height-4xl: 2.5rem;
  --line-height-5xl: 1;
  --line-height-nxl: 1.5;

  /*letter spacing*/
  --space-tight: -0.025em;
  --space-normal: 0em;
  --space-wide: 0.025em;
  --space-wide-lg: 0.025em;
  --space-wide-xl: 0.05em;
  --space-wide-2xl: 0.1em;
}

/* base style */
*,
*::before,
*::after {
  box-sizing: inherit;
  transition: all 0.3s ease-in-out;
}

*:focus {
  outline: none;
}

html {
  width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  -moz-tab-size: 4;
  font-feature-settings: normal;
  -webkit-font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  word-break: break-word;
  transition: all 0.3s ease-in-out;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  color: var(--text-black);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: transparent;
}

/*font styles*/
.font-sans {
  font-family: var(--font-sans) !important;
}

.font-mono {
  font-family: var(--font-mono) !important;
}

/*margin styles*/
.m-0 {
  margin: 0 !important;
}

.m-auto {
  margin: auto;
}

.m-auto-rl {
  margin: 0 auto;
}

.m-auto-tb {
  margin: auto 0;
}

/*padding styles*/
.p-0 {
  padding: 0 !important;
}

.p-wrap {
  padding: 1.25rem 1.5625rem;
}

.p-wrap-rl {
  padding: 0 1.5625rem;
}

.p-wrap-tb {
  padding: 1.25rem 0;
}

h1 {
  text-align: center;
  line-height: normal !important;
}

.app-root {
  display: block;
  width: 100vw;
  height: auto;
  background-color: var(--greyscale-98);
}

.app-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100vh;
  align-items: center;
}

.brand-container {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  gap: 2rem;
}

.brand-container > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-logo {
  display: block;
  width: 250px;
}

.brand-list-container {
  display: flex;
  gap: 24px;
}

.brand-list-container > a {
  display: flex;
  padding: 1rem;
  height: 120px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--greyscale-95);
}

.brand-list-container > a > img {
  display: block;
  height: 100%;
  width: auto;
}

footer {
  display: block;
  width: 100%;
  margin-top: 30px;
}

.footer-wrapper {
  margin: auto;
  max-width: 1200px;
  padding-bottom: 0;
}

.footer-nav-wrapper {
  padding: 2px 0;
  border-top: 2px solid var(--primary);
}

.footer-nav-container {
  display: flex;
  margin: 0 auto;
  padding: 16px 24px;
  gap: 2rem;
  max-width: 1200px;
  border-top: 2px solid var(--primary);
}

.footer-nav-container ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-left {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding-right: 2rem;
  border-right: 0.0625rem solid var(--primary);
}

.footer-nav-right {
  width: 75%;
}

.footer-branding {
  display: flex;
  justify-content: center;
}

.footer-branding > img {
  display: inline-block;
  width: max-content;
  height: 120px;
}

.footer-nav-title {
  display: inline-block;
  margin-top: 0;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.03125rem;
}

.footer-sm-row {
  display: flex;
  width: 100%;
}

.footer-sm {
  padding: 0 15px;
  float: left;
  width: 50%;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav > li {
  margin-bottom: 10px;
}

.footer-nav > li svg {
  display: inline-flex;
  margin-right: 4px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.footer-nav > li > svg, path {
  stroke: var(--primary);
  color: var(--primary);
}

.footer-nav > a {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  line-height: 1.25rem;

  &:hover {
    color: var(--primary);
  }
}

.footer-copyrights {
  display: flex;
  height: auto;
  min-height: 60px;
  max-height: 90px;
  background: var(--primary);
}

.footer-cr-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 16px 4px;
}

.footer-cr-wrapper p,
.footer-cr-wrapper a {
  color: var(--text-white) !important;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-nav-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav-left, .footer-nav-right {
    width: 100%;
  }

  .footer-nav-left {
    padding: 0 0 2rem;
    align-items: center;
    justify-content: center;
    border-right: none;
    border-bottom: 0.0625rem solid var(--primary);
  }
}

@media (max-width: 767px) {
  .p-wrap {
    padding: 0.8rem 1rem;
  }

  .footer-sm-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-sm-row > .footer-sm {
    width: 100%;
  }
}

@media (max-width: 567px) {
  .brand-list-container {
    flex-wrap: wrap;
  }

  .brand-list-container > a {
    width: 100%;
  }


}