.material-icons {
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: 24px;
}
.material-icons.arrow-left:before {
  content: "\e314";
}
.material-icons.arrow-right:before {
  content: "\e315";
}
.material-icons.arrow-down:before {
  content: "\e313";
}
.material-icons.arrow-up:before {
  content: "\e316";
}
.material-icons.menu:before {
  content: "\e5d2";
}
.material-icons.close:before {
  content: "\e5cd";
}

*:focus {
  outline: none;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold*/
  -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* prevent tap highlight color / shadow*/
  -webkit-overflow-scrolling: touch;
}

html {
  line-height: 1.5;
  font-size: 22px;
  scroll-behavior: smooth;
}

iframe {
  border: 0;
}

textarea, [contenteditable],
input[type=text],
input[type=text]:before,
input[type=text]:after {
  border: 0;
  width: 100%;
  -webkit-user-select: initial;
  user-select: initial;
}
textarea::-webkit-input-placeholder, [contenteditable]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=text]:before::-webkit-input-placeholder,
input[type=text]:after::-webkit-input-placeholder {
  color: #E0E0E0;
}
textarea:-moz-placeholder, [contenteditable]:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=text]:before:-moz-placeholder,
input[type=text]:after:-moz-placeholder {
  color: #E0E0E0;
}
textarea::-moz-placeholder, [contenteditable]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=text]:before::-moz-placeholder,
input[type=text]:after::-moz-placeholder {
  color: #E0E0E0;
}
textarea:-ms-input-placeholder, [contenteditable]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=text]:before:-ms-input-placeholder,
input[type=text]:after:-ms-input-placeholder {
  color: #E0E0E0;
}

body {
  color: #333;
  position: relative;
  line-height: 1.1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400 !important;
  overflow-x: hidden;
}

a {
  font-weight: bold;
  color: #004c80;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: all 0.3s ease 0s;
}
a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
}
ul::after {
  clear: both;
  content: "";
  display: table;
}
ul.disc li {
  padding-left: 10px;
  list-style: disc outside;
  float: none;
}
ul.circle li {
  padding-left: 10px;
  list-style: circle inside !important;
  float: none;
}
ul.square li {
  padding-left: 10px;
  list-style: square inside !important;
  float: none;
}
ul.decimal li {
  padding-left: 10px;
  float: none;
}
ul li {
  list-style: none;
}

ol::after {
  clear: both;
  content: "";
  display: table;
}
ol li {
  float: none;
}
ol.roman li {
  padding-left: 10px;
  list-style: upper-roman outside;
  float: none;
}
ol.alpha li {
  padding-left: 10px;
  list-style: lower-alpha outside;
  float: none;
}

img {
  max-width: 100%;
}

[class$=__desktop] {
  display: block;
}
@media only screen and (max-width: 1023px) {
  [class$=__desktop] {
    display: none;
  }
}

[class$=__mobile] {
  display: none;
}
@media only screen and (max-width: 1023px) {
  [class$=__mobile] {
    display: block;
  }
}

.wrap {
  margin: 0 auto;
  padding-left: 8%;
  padding-right: 8%;
}
@media only screen and (max-width: 1439px) {
  .wrap {
    padding-left: 6%;
    padding-right: 6%;
  }
}
@media only screen and (max-width: 1279px) {
  .wrap {
    /* max-width: 944px;*/
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.wrap-content {
  margin: 0 auto;
  max-width: 820px;
}
@media only screen and (max-width: 1023px) {
  .wrap-content {
    margin: 0 auto;
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap-content {
    margin: 0 24px;
    max-width: none;
  }
}

.sep {
  padding: 40px 0;
}
@media only screen and (max-width: 1079px) {
  .sep {
    padding: 20px 0;
  }
}

h1 {
  font-size: 32px;
  line-height: 2rem;
  margin: 1.8rem 0;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 24px;
    line-height: 1.4rem;
    margin: 0.5rem 0 1rem;
  }
}

h2 {
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6rem;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 18px;
    line-height: 1.1rem;
  }
}
h2 span {
  color: #fc7e00;
}

h3 {
  margin: 1.8rem 0;
}
h3.focus {
  text-decoration: underline;
}

p {
  margin: 32px 0;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 20px 0;
  }
}

@keyframes ourStoryArrow {
  0% {
    margin-left: 10px;
  }
  50% {
    margin-left: 20px;
  }
  100% {
    margin-left: 10px;
  }
}
header {
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 16px 0;
  }
}
header > img {
  display: block;
  margin: 0 auto;
  width: 350px;
}
@media only screen and (max-width: 767px) {
  header > img {
    width: 270px;
  }
}
header ul {
  display: flex;
  justify-self: right;
  padding: 12px 0 0;
  animation: all 0.5s ease-in-out;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1199px) {
  header ul {
    background: #fff;
    display: none;
    justify-self: initial;
    padding: 60px 0 0;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
  }
  header ul.active {
    display: block;
  }
}
header ul li {
  font-size: 16px;
  font-weight: bold;
  line-height: 0.9rem;
  margin: 0 32px 0 0;
}
@media only screen and (max-width: 1359px) {
  header ul li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  header ul li {
    font-size: 16px;
    margin: 0;
  }
  header ul li:active, header ul li:hover {
    background: #f3f3f3;
  }
  header ul li a {
    padding: 18px 64px;
  }
}
header ul li:last-child {
  margin: 0;
}
header ul li a {
  display: block;
}
header ul li a:hover, header ul li a:active {
  color: #fc7e00;
  animation: all 0.5s ease-in-out;
}
header .navigation {
  cursor: pointer;
  display: none;
  position: absolute;
  right: 24px;
  top: 20px;
  width: 24px;
}
@media only screen and (max-width: 1199px) {
  header .navigation {
    display: block;
  }
}
header .navigation-close {
  cursor: pointer;
  display: none;
  position: fixed;
  right: 24px;
  top: 20px;
  width: 24px;
  z-index: 1002;
}
header .navigation-close.active {
  display: block;
}

#ntms {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #ntms {
    font-size: 16px;
    line-height: 1rem;
  }
}
#ntms .fade {
  /*		opacity: 0;*/
  transition: all 1s;
  animation: fadeIn 1s;
}
#ntms .fade.scale {
  scale: 1.2;
}
#ntms .fade.scale-zero {
  scale: 0;
}
#ntms .fade.transition-default {
  transform: translate(0, 10vh);
}
#ntms .fade.transition-left {
  transform: translate(-10vw, 0);
}
#ntms .fade.transition-right {
  transform: translate(10vw, 0);
}
#ntms .fade.fade-delay-1 {
  transition-delay: 1s;
}
#ntms .fade.fade-delay-2 {
  transition-delay: 2s;
}
#ntms .fade.fade-delay-3 {
  transition-delay: 3s;
}
#ntms .fade.fade-delay-4 {
  transition-delay: 1s;
}
#ntms .fade.visible {
  scale: initial;
  opacity: 1;
  transform: translate(0, 0);
}
#ntms .perks li:nth-child(1n) {
  transition-delay: 0.1s;
}
#ntms .perks li:nth-child(2n) {
  transition-delay: 0.2s;
}
#ntms .perks li:nth-child(3n) {
  transition-delay: 0.3s;
}
#ntms .perks li:nth-child(4n) {
  transition-delay: 0.4s;
}
#ntms .perks li:nth-child(5n) {
  transition-delay: 0.5s;
}
#ntms .perks li:nth-child(6n) {
  transition-delay: 0.6s;
}
#ntms .perks li:nth-child(7n) {
  transition-delay: 0.7s;
}
#ntms .perks li:nth-child(8n) {
  transition-delay: 0.8s;
}
#ntms .perks li:nth-child(9n) {
  transition-delay: 0.9s;
}
#ntms .perks li:nth-child(10n) {
  transition-delay: 1s;
}
#ntms .perks li:nth-child(11n) {
  transition-delay: 1.1s;
}
#ntms .perks li:nth-child(12n) {
  transition-delay: 1.2s;
}
#ntms .perks li:nth-child(13n) {
  transition-delay: 1.3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    scale: 0.95;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
#ntms #video-hero {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  #ntms #video-hero {
    display: block;
  }
}
#ntms #video-hero iframe {
  aspect-ratio: 16/9;
  max-width: 1380px;
  width: 100% !important;
}
#ntms #video-content {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1000px;
}
@media only screen and (max-width: 1023px) {
  #ntms #video-content {
    display: block;
  }
}
#ntms #video-content iframe {
  aspect-ratio: 16/9;
  width: 100% !important;
}
#ntms #showcase {
  background: rgb(233, 233, 239);
  background: linear-gradient(180deg, rgb(233, 233, 239) 0%, rgb(244, 244, 247) 100%);
  padding: 60px 0;
}
#ntms #showcase > div {
  margin: 0 auto;
  max-width: 1380px;
}
#ntms #showcase > div ul {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
@media only screen and (min-width: 1400px) {
  #ntms #showcase > div ul {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  #ntms #showcase > div ul {
    flex-wrap: wrap;
  }
}
#ntms #showcase > div ul:first-child {
  margin: 0 0 60px;
}
@media only screen and (max-width: 1023px) {
  #ntms #showcase > div ul:first-child {
    margin: 0 0 24px;
  }
}
#ntms #showcase > div ul:first-child li {
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  #ntms #showcase > div ul:first-child li {
    width: auto;
  }
}
#ntms #showcase > div ul:last-child li {
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  #ntms #showcase > div ul:last-child li {
    margin: 0 3px;
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  #ntms #showcase > div ul:last-child li:first-child {
    margin-left: 3px;
  }
}
@media only screen and (max-width: 767px) {
  #ntms #showcase > div ul:last-child li:last-child {
    margin-right: 3px;
  }
}
#ntms #showcase > div ul:last-child li img {
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #ntms #showcase > div ul:last-child li img {
    margin-bottom: 6px;
  }
}
#ntms #ads > div {
  justify-content: center;
  margin: 0 auto;
  max-width: 970px;
}
#ntms #ads > div ul:first-child {
  margin: 0 0 3px;
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:first-child {
    display: none;
  }
}
#ntms #ads > div ul:first-child li iframe {
  background: #e9e9ef;
}
#ntms #ads > div ul:last-child {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:last-child {
    flex-wrap: wrap;
  }
}
#ntms #ads > div ul:last-child li {
  margin: 0 5px;
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:last-child li:nth-child(2) {
    order: 2;
    justify-content: center;
    width: auto;
    flex-grow: 1;
  }
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:last-child li:nth-child(2) iframe {
    display: block;
    margin: 0 auto;
    width: auto;
  }
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:last-child li:nth-child(3) {
    order: 1;
  }
}
#ntms #ads > div ul:last-child li iframe {
  background: #e9e9ef;
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:last-child li span {
    display: flex;
    margin: 5px auto 0;
    max-width: 620px;
  }
}
@media only screen and (max-width: 767px) {
  #ntms #ads > div ul:last-child li span {
    display: block;
    margin: 0 auto;
  }
}
#ntms #ads > div ul:last-child li span div img {
  display: block;
  margin: 0 0 10px;
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:last-child li span div img:first-child {
    padding-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #ntms #ads > div ul:last-child li span div img:first-child {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  #ntms #ads > div ul:last-child li span div img:last-child {
    padding-left: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #ntms #ads > div ul:last-child li span div img:last-child {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  #ntms #ads > div ul:last-child li span div img {
    margin: 0 auto 5px;
  }
}

footer {
  background: #f4f4f7;
  display: flex;
  padding: 60px 0;
}
@media only screen and (max-width: 1023px) {
  footer {
    background: #f9f9f9;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}
footer > div {
  display: flex;
  min-width: 820px;
}
@media only screen and (max-width: 1023px) {
  footer > div {
    min-width: auto;
  }
}
@media only screen and (max-width: 767px) {
  footer > div {
    display: block;
    justify-content: center;
  }
}
footer > div span {
  display: block;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  footer > div span {
    justify-content: center;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  footer > div span img {
    display: block;
    margin: 0 auto;
  }
}
footer > div ul {
  display: flex;
  justify-content: right;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  footer > div ul {
    justify-content: center;
    margin: 20px 0 0;
    width: auto;
  }
}
footer > div ul li {
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 767px) {
  footer > div ul li:first-child {
    margin: 0;
  }
}
footer > div ul li img {
  height: 40px;
}