/* color */
.theme-mission-tiger {
  --primary-color: #0062ac;
  --primary-hover: #22275f;
  --secondary-color: #FF7F0A;
  --secondary-hover: #ff9029;
  --tertiary-color: #4089BA;
  --accent-color-1: var(--primary-hover);
  --black: #231414;
  --link-color: var(--primary-color);
}

/* body */
body.theme-mission-tiger.stand-alone {
  --nav-height-desktop: 88px;
  --nav-height-tablet: 88px;
  --nav-height: 72px;
}

body.theme-mission-tiger main {
  font-family: var(--frosted-flakes-font);
  font-weight: normal;
}

/* headings */
body.theme-mission-tiger main h1,
body.theme-mission-tiger main h2,
body.theme-mission-tiger main h3,
body.theme-mission-tiger main h4,
body.theme-mission-tiger main h5,
body.theme-mission-tiger main h6 {
  font-family: var(--frosted-flakes-font);
  color: var(--primary-color); 
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

body.theme-mission-tiger main h2 {
  background-color: var(--white);
  padding: 0 .5rem;
  max-width: 236px;
  font-size: 1.5rem;
}

body.theme-mission-tiger main h2::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: fit-content;
  background-color: pink;
}

body.theme-mission-tiger main h2::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  height: 1rem;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-width: 6px 0;
  border-style: solid;
  border-color: var(--secondary-color) transparent var(--primary-color);
}

/* buttons */
.theme-mission-tiger main a.button,
.theme-mission-tiger main button,
.theme-mission-tiger.stand-alone a.button:any-link,
.theme-mission-tiger.stand-alone .button {
  font-family: var(--frosted-flakes-font);
}

.theme-mission-tiger main a.button:hover,
.theme-mission-tiger main button:hover,
.theme-mission-tiger main a.button:focus,
.theme-mission-tiger main button:focus {
  color: var(--primary-hover);
}

.theme-mission-tiger main a.button.primary,
.theme-mission-tiger main button.primary {
  background-color: var(--primary-hover);
}

.theme-mission-tiger main a.button.primary:hover,
.theme-mission-tiger main button.primary:hover,
.theme-mission-tiger main a.button.primary:focus,
.theme-mission-tiger main button.primary:focus {
  background-color: var(--secondary-color);
}

/* section */
.theme-mission-tiger main .section.accent-1-bg-section > div:first-child {
  padding-top: 1rem;
}

.theme-mission-tiger main .section.accent-1-bg-section > div:last-child {
  padding-bottom: 1rem;
}

.theme-mission-tiger main .section.accent-2-bg-section::after {
  background: radial-gradient(circle, #0064ab 20%, #005692 50%, #00497a 75%);
}

.theme-mission-tiger main .section.stylized {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 5px solid var(--white);
}

.theme-mission-tiger main .section.stylized h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.theme-mission-tiger main .section.stylized > .default-content-wrapper img {
  padding: 0 3rem;
}

.theme-mission-tiger main .section.stylized .counter-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  width: 100%;
  padding: 0 1rem;
  max-width: 460px !important;
  z-index: 1;
  margin: 0 auto;
}

.theme-mission-tiger main .section.stylized .counter-container {
  background-image: url(../../images/counter_bg.png);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 162px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.theme-mission-tiger main .section.stylized .counter-container .title {
  display: block;
  font-size: 1.25rem;
  color: #0D1E66;
  margin: 0 0 .25rem;
}

.theme-mission-tiger main .section.stylized .counter-container .counter .number-ticker {
  display: flex;
  flex-direction: row;
  background-color: #333;
  box-shadow: 0 0 .05em black inset;
  height: 2.2rem;
  overflow: hidden;
}

.theme-mission-tiger main .section.stylized .counter-container .counter .number-ticker .digit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 3px solid #F1692F;
  color: var(--white);
  float: left;
  font-size: 2rem;
  line-height: 1;
  padding: 0 .075rem;
  position: relative;
  width: 30px;
}

.theme-mission-tiger main .section.stylized .counter-container .counter .number-ticker .digit .digit-span {
  padding: .5rem;
  text-decoration: line-through #333 solid .2rem;
}

@media(width >= 768px) {
  .theme-mission-tiger main .section.accent-1-bg-section > div:first-child {
    padding-top: 3rem;
  }
  
  .theme-mission-tiger main .section.accent-1-bg-section > div:last-child {
    padding-bottom: 3rem;
  }

  body.theme-mission-tiger main h2 {
    padding: 0 1rem;
    max-width: none;
    font-size: 2rem;
  }

  .theme-mission-tiger main .section.stylized {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .theme-mission-tiger main .section.stylized > .default-content-wrapper img {
    padding: 0;
  }

  .theme-mission-tiger main .section.stylized .counter-wrapper {
    padding: 0;
  }

  .theme-mission-tiger main .section.stylized .counter-container {
    width: auto;
  }

  .theme-mission-tiger main .section.stylized .counter-container .title {
    font-size: 1.625rem;
  }

  .theme-mission-tiger main .section.stylized .counter-container .counter .number-ticker {
    height: 2.75rem;
  }

  .theme-mission-tiger main .section.stylized .counter-container .counter .number-ticker .digit {
    font-size: 2.5rem;
    width: 40px;
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper {
    padding-top: 2rem;
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper p {
    margin: 0 auto;
    max-width: 880px;
    position: relative;
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper p::before,
  .theme-mission-tiger main .section.stylized .default-content-wrapper p::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    height: 1rem;
    width: calc(50% - 100px);
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0;
    border-style: solid;
    border-color: var(--secondary-color) transparent var(--white);
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper p::before {
    left: 0;
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper p::after {
    right: 0;
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper img {
    display: block;
    margin: 0 auto;
    max-width: 160px;
  }
}

@media (width >= 1024px) {
  body.theme-mission-tiger main h2 {
    font-size: 3rem;
  }

  .theme-mission-tiger main .section.stylized {
    background-position: center top;
  }

  .theme-mission-tiger .section:not(.full-width) > div {
    max-width: 1200px;
  }

  .theme-mission-tiger main .section.stylized h1 {
    font-size: 2rem;
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper img {
    max-width: 260px;
  }

  .theme-mission-tiger main .section.stylized .default-content-wrapper p::before,
  .theme-mission-tiger main .section.stylized .default-content-wrapper p::after {
    width: calc(50% - 150px);
  }
}

/* Slideshow Section */
.theme-mission-tiger .custom-layout {
  padding: 0;
  display: flex;
  flex-direction: column-reverse;
}

.theme-mission-tiger .custom-layout > div {
  flex-basis: 100%;
}

.theme-mission-tiger .custom-layout img {
  display: block;
  height: 100%;
  width: 100%;
}

.theme-mission-tiger .custom-layout p {
  margin: 0;
}

.theme-mission-tiger .custom-layout .slideshow {
  position: relative;
  height: 70vw;
}

.theme-mission-tiger .custom-layout .slideshow > div {
  position: absolute;
  transition: opacity .5s ease-in;
  height: 100%;
  width: 100%;
}

.theme-mission-tiger .custom-layout .slideshow > div + div {
  opacity: 0;
}

.theme-mission-tiger .custom-layout .slideshow > div * {
  height: 100%;
  width: 100%;
}

.theme-mission-tiger .custom-layout .slideshow-wrapper:first-child img {
  object-fit: cover;
}

.theme-mission-tiger .custom-layout .slideshow-wrapper:last-child img {
  object-fit: contain;
}

@media (width >= 1024px) {
  .theme-mission-tiger .custom-layout {
    flex-direction: row;
  }

  .theme-mission-tiger .custom-layout > div {
    flex-basis: 50%;
  }

  .theme-mission-tiger .custom-layout .slideshow {
    height: 48.125rem;
  }
}

/* Pre-Footer */
.theme-mission-tiger main .section.pre-footer-section {
  padding-left: 6%;
  padding-right: 6%;
  border-bottom: 8px solid var(--white);
  display: flex;
}

.theme-mission-tiger main .section.pre-footer-section > div {
  width: 100%;
}

.theme-mission-tiger main .section.pre-footer-section p {
  color: var(--white);
  font-weight: 800;
  font-size: 2.75vw;
  text-transform: uppercase;
}

.theme-mission-tiger main .section.pre-footer-section p strong {
  font-weight: 800;
  color: var(--primary-hover);
}

.theme-mission-tiger main .section.pre-footer-section p:first-child {
  font-size: 7vw;
  line-height: .95;
  font-weight: 800;
}

@media (width >= 1024px) {
  .theme-mission-tiger main .section.pre-footer-section {
    min-height: 700px;
  }
}

@media (width >= 1200px) {
  .theme-mission-tiger main .section.pre-footer-section p {
    font-size: 1.75rem;
  }

  .theme-mission-tiger main .section.pre-footer-section p:first-child {
    font-size: 5.3125rem;
  }
}