@font-face {
  font-family: "Tungsten Medium";
  src: url("../fonts/ttf/Tungsten-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue LT Com 65 Md";
  src: url("../fonts/ttf/HelveticaNeueLTCom-Md.ttf") format("truetype");
}

html,
body {
  font-family: Tungsten Medium;
  font-size: 14px;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
}

/**

Background section

**/
.background-container {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%;
  position: absolute;
}

/**

Canvas section

**/

.canvas-container {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 1;
  z-index: 50;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.canvas-container.hidden {
  opacity: 0;
}

#toolTips {
  position: absolute; /* let us position ourself inside the container */
  left: 0; /* make our position the top left of the container */
  top: 0;
  color: white;
}

#toolTips > div {
  min-width: 200px;
  position: absolute; /* let us position them inside the container */
  left: 0; /* make their default position the top left of the container */
  top: 0;
  padding: 5px 15px;
  font-size: 25px;
  background-color: #00509b;
  text-shadow:         /* create a black outline */ -1px -1px 0 #000,
    0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, 1px 1px 0 #000, 0 1px 0 #000,
    -1px 1px 0 #000, -1px 0 0 #000;
  white-space: nowrap;
  cursor: pointer;
  user-select: none; /* don't let the text get selected */
}

@media (hover: hover) {
  #toolTips > div:hover {
    background-color: #0064c0;
  }
}

#toolTips > div.focus {
  background-color: #ffcb3c;
  color: #01509f;
  text-shadow: none;
}

#toolTips > div div {
  display: inline-block;
  background-image: url(../img/plus_ico.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -moz-animation: blink normal 1.5s infinite ease-in-out; /* Firefox */
  -webkit-animation: blink normal 1.5s infinite ease-in-out; /* Webkit */
  -ms-animation: blink normal 1.5s infinite ease-in-out; /* IE */
  animation: blink normal 1.5s infinite ease-in-out; /* Opera and prob css3 final iteration */
}

#toolTips > div.focus div {
  background-image: url(../img/minus_ico.png);
  -moz-animation: none; /* Firefox */
  -webkit-animation: none; /* Webkit */
  -ms-animation: none; /* IE */
  animation: none; /* Opera and prob css3 final iteration */
}

/* Firefox old*/
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* IE */
@-ms-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**

Wow section

**/

.wow-container {
  width: 100%;
  height: calc(100% - 80px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 0;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.wow-container.visible {
  opacity: 1;
}

.wow-container.collapse {
  height: calc(100% - 185px);
}

.wow-container .header {
  font-size: 27vw;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  color: #004d9b;
  -webkit-text-shadow: 0px 1px 0px #013e7d, 0px 2px 0px #003770,
    0px 3px 0px #003062, 0px 4px 0px #002a55, 0px 5px 0px #002448,
    0px 6px 0px #001d3b, 0px 7px 0px #00162d, 0px 16px 22px #000f1f;
  -o-text-shadow: 0px 1px 0px #013e7d, 0px 2px 0px #003770, 0px 3px 0px #003062,
    0px 4px 0px #002a55, 0px 5px 0px #002448, 0px 6px 0px #001d3b,
    0px 7px 0px #00162d, 0px 16px 22px #000f1f;
  -moz-text-shadow: 0px 1px 0px #013e7d, 0px 2px 0px #003770,
    0px 3px 0px #003062, 0px 4px 0px #002a55, 0px 5px 0px #002448,
    0px 6px 0px #001d3b, 0px 7px 0px #00162d, 0px 16px 22px #000f1f;
  text-shadow: 0px 1px 0px #013e7d, 0px 2px 0px #003770, 0px 3px 0px #003062,
    0px 4px 0px #002a55, 0px 5px 0px #002448, 0px 6px 0px #001d3b,
    0px 7px 0px #00162d, 0px 16px 22px #000f1f;
}

.wow-container .description {
  font-size: 5vw;
  padding: 0 15%;
  text-align: center;
  /* color: #00468c; */
  color: white;
  margin: 0;
}

.wow-container .header-image {
  width: 60vw;
}

.wow-container .description-image {
  width: 55vw;
}

/**

Loading section

**/
.loading-container {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%;
  flex-direction: column;
}

.loading-container #logo {
  width: 700px;
}

.loading-container .progress-container {
  width: 200px;
  background-color: #ddd;
}

.progress-container .progress-bar {
  width: 1%;
  height: 5px;
  background-color: #004f9f;
}

.loading-container p {
  font-size: 2em;
}

/**

Main section

**/

.main-container {
  display: none;
  position: absolute;
  z-index: 100;
}

.main-container > .brand {
  position: absolute;
  left: 98vw;
  width: 16vw;
  margin-top: 2vw;
  -webkit-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media (hover: hover) {
  .main-container > .brand:hover {
    cursor: pointer;
  }
}

.main-container > .orbit {
  position: absolute;
  padding-right: 20px;
  width: 140px;
  top: calc(100vh - 80px);
  left: 100vw;
  opacity: 0;
  transform: translate(-100%, -100%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main-container > .orbit.expand {
  top: calc(100vh - 185px);
}

.main-container > .orbit.show {
  opacity: 1;
}

.main-container > .info {
  z-index: 100;
  position: fixed;
  bottom: -100px;
  right: 0;
  width: 80px;
  padding: 10px;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main-container > .info.expand {
  bottom: 0;
  opacity: 1;
}

.main-container > .info:hover {
  filter: hue-rotate(90deg);
}

.button-container-disable {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0px;
  z-index: 200;
  display: none;
  background: gray;
  opacity: 0.7;
}

.button-container-disable.visible {
  display: block;
}

.button-container {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0px;
  background: rgba(124, 131, 138, 1);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.button-container .menu {
  height: 72px;
  background-color: #004f9f;
  /* -moz-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  -o-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4); */
}

.button-container .menu-btn-ul {
  width: 100%;
  height: calc(100% + 72 * 0.1px);
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  color: white;
  font-size: 0px;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.button-container .menu-btn-ul > li {
  width: 25%;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.button-container .menu-btn-ul > li:not(:last-child) {
  border-right-style: solid;
  border-width: 1px;
  border-color: white;
  box-sizing: border-box;
}

.menu-btn-label {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (hover: hover) {
  .button-container .menu-btn-ul > li:hover {
    background-color: #0162c5;
  }
}

.button-container .menu-btn-ul > li.focus {
  background-color: #498ccf;
}

.button-container .menu-btn-ul > li > p {
  margin: 0px;
  padding-left: 2vw;
  padding-right: 2vw;
}

.menu-btn-text {
  font-family: "Helvetica Neue LT Com 65 Md";
  margin: 0;
}

.button-container .option-btn-ul {
  visibility: hidden;
  position: absolute;
  top: 78px;
  cursor: auto;
  /*overflow: scroll;
    overflow-x: hidden;
    height: 200px;*/
}

.button-container .option-btn-ul > li {
  /* height: 35px; */
  padding: 0vw 1vw;
  margin: 1.5% 0;
  background-color: #004f9f;
  /* -moz-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  -o-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4); */
  cursor: pointer;
}

.button-container .option-btn-ul > li > .option-btn-label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.button-container .option-btn-ul > li .option-btn-collapse {
  background-image: url("../img/plus_ico.png");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  position: absolute;
}

.button-container .option-btn-ul > li .option-btn-text,
.button-container .sub-option-btn-ul > li p {
  font-family: "Helvetica Neue LT Com 65 Md";
  margin: 0;
  margin-left: 30px;
  line-height: 1;
}
.button-container .option-btn-ul > li .option-btn-text {
  margin-top: 5px;
  margin-bottom: 5px;
}

@media (hover: hover) {
  .button-container .option-btn-ul > li:hover {
    background-color: #0162c5;
  }
}

.button-container .option-btn-ul > li.focus {
  background-color: #ffcc00;
  color: #004f9f;
}

.button-container .option-btn-ul > li.focus .option-btn-collapse {
  background-image: url("../img/minus_ico.png");
}

.button-container .sub-option-btn-ul {
  visibility: hidden;
  position: absolute;
  width: 97vw;
  bottom: 0;
  transform: translate(0, 95%);
  padding: 0;
  cursor: auto;
  /*overflow: scroll;
    overflow-x: hidden;
    height: 200px;*/
}

.button-container .sub-option-btn-ul > li {
  display: inline-flex;
  height: 35px;
  padding: 0vw 1vw;
  margin: 1px 3px;
  background-color: #004f9f;
  font-size: 18px;
  color: white;
  /* -moz-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  -o-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px rgba(0, 0, 0, 0.4); */
  cursor: pointer;
}

.button-container .sub-option-btn-ul > li > .sub-option-btn-label {
  font-family: "Helvetica Neue LT Com 65 Md";
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.button-container .sub-option-btn-ul > li .sub-option-btn-collapse {
  background-image: url("../img/plus_ico.png");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  position: absolute;
}

/* {
  font-family: "Helvetica Neue LT Com 65 Md";
  margin: 0;
  margin-left: 15px;
  line-height: 1;
  text-align: center;
} */

@media (hover: hover) {
  .button-container .sub-option-btn-ul > li:hover {
    background-color: #0162c5;
  }
}

.button-container .sub-option-btn-ul > li.focus {
  background-color: #ffcc00;
  color: #004f9f;
}

.button-container .sub-option-btn-ul > li.focus .sub-option-btn-collapse {
  background-image: url("../img/minus_ico.png");
}

.button-container .option-btn-ul.expand {
  visibility: visible;
}

.button-container .sub-option-btn-ul.expand {
  visibility: visible;
}

.button-container.expand {
  height: 185px;
}

.popup-container {
  /* position: absolute; */
  /* height: 400px; */
  margin: 3%;
  display: none;
  background: white;
  text-align: center;
  position: fixed;
  top: 50%;
  transform: translate(0, -65%);
  /* overflow: scroll; */
}

.popup-container.show {
  display: block;
}

.popup-container .bottom-right-border {
  width: 5vh;
  height: 5vh;
  position: absolute;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-bottom-style: solid;
  border-right-style: solid;
  border-color: #ffcc00;
}

.popup-container .title {
  font-family: "Helvetica Neue LT Com 65 Md";
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: #004f9f;
}

.popup-container .title h2 {
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: lighter !important;
  font-size: 1.5em;
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.popup-container .title img {
  height: 20px;
  position: absolute;
  cursor: pointer;
}

.popup-container .container {
  width: 100%;
  /* height: 360px; */
  padding: 0;
  overflow: scroll;
  overflow-x: hidden;
}

.popup-container .popup-close {
  right: 10px;
}

.popup-container .popup-plus {
  left: 10px;
}

.popup-container .body {
  font-family: "Helvetica Neue LT Com 65 Md";
  font-size: 1.1em;
  padding: 5px 10px;
}

.popup-container .body .header {
  color: #00509b;
  font-weight: bold;
  text-align: left;
  /*text-align: justify;*/
  line-height: 1.3;
  overflow-wrap: break-word;
}

.popup-container .body .sub-header {
  font-weight: bold;
  text-align: left;
  /*text-align: justify;*/
  line-height: 1;
  overflow-wrap: break-word;
}

.popup-container .body ul {
  padding-left: 0;
  list-style-position: inside;
}

.popup-container .body li {
  margin-top: auto;
  margin-bottom: 0px;
  text-align: left;
  line-height: 1;
}

.popup-container .body li > ul {
  margin-left: 50px;
  margin-top: 5px;
}

.popup-container .body img {
  width: 30%;
  height: 100%;
}

.popup-container .video-label {
  font-size: 20px;
}

.popup-container .body .video-play {
  content: url("../img/movie_ico.png");
  cursor: pointer;
}

@media (hover: hover) {
  .popup-container .body .video-play:hover {
    content: url("../img/movie_hovered_ico.png");
  }
}

#video_modal video {
  width: 100%;
}

#info_modal > .modal-dialog {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}

#info_modal .modal-content p {
  font-size: 1.5em;
  text-align: center;
}

/**

User guide section

**/
.user-guide {
  position: absolute;
  left: 50vw;
  top: calc(50vh - 90px);
  transform: translate(-50%, -50%);
}

.mouse-scroll {
  position: relative;
  width: 30px;
  height: 50px;
  border-style: solid;
  border-color: white;
  border-radius: 20px;
}

.scroll-shape {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  animation-timing-function: ease;
  animation: scroll-move 2s infinite;
}

.scroll-shape:nth-child(2) {
  animation-delay: 1s;
}

.hand-pointer {
  position: relative;
  font-size: 36px;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
  -o-text-stroke-width: 2px;
  -o-text-stroke-color: white;
  -moz-text-stroke-width: 2px;
  -moz-text-stroke-color: white;
}

.hand-pointer .fa-hand-pointer {
  position: absolute;
  left: -30px;
  animation-timing-function: ease-in-out;
  animation: hand-move 3.5s infinite;
}

.hand-pointer .fa-arrows-alt-h {
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleY(0.7) translate(-25%, -100%);
  animation-timing-function: ease-in-out;
  animation: arrow-move 3.5s infinite;
}

.click-button {
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 36px;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
  -o-text-stroke-width: 2px;
  -o-text-stroke-color: white;
  -moz-text-stroke-width: 2px;
  -moz-text-stroke-color: white;
  transform: translate(30px, 30px);
}

.click-button .click-shape {
  position: absolute;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-timing-function: ease-in-out;
  animation: click-ripple 1s infinite;
}

.click-button .click-shape:nth-child(2) {
  animation-delay: 0.5s;
}

.click-button .fa-hand-pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(30deg) translate(-50%, 30%);
}

.hand-pointer.show,
.mouse-scroll.show,
.click-button.show {
  animation: show-guide 0.1s;
}

.hand-pointer.hide,
.mouse-scroll.hide,
.click-button.hide {
  opacity: 0;
}

@keyframes click-ripple {
  from {
    opacity: 1;
    width: 20px;
    height: 20px;
  }
  to {
    opacity: 0;
    width: 50px;
    height: 50px;
  }
}

@keyframes show-guide {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scroll-move {
  from {
    margin-top: 15px;
    opacity: 1;
  }
  to {
    margin-top: 2px;
    opacity: 0;
  }
}

@keyframes hand-move {
  0% {
    left: -30px;
    transform: rotate(15deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    left: 30px;
    transform: rotate(-15deg);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: -30px;
    transform: rotate(15deg);
    opacity: 0;
  }
}

@keyframes arrow-move {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**

Other

**/
.display-flex {
  display: flex;
}

.flex-direction-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-space-around {
  justify-content: space-around;
}

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

.outline-none {
  outline: none;
}

.text-noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Responsive */
@media screen and (max-width: 360px) {
  .menu-btn-label {
    flex-direction: column;
  }

  .menu-btn-label > img {
    height: 20%;
    flex-direction: column;
  }

  .menu-btn-text {
    font-size: 10px;
    padding-top: 5px;
    /*display: none;*/
  }

  .option-btn-text {
    font-size: 10px;
  }

  .sub-option-btn-ul {
    display: flex;
    justify-content: space-around;
  }

  .sub-option-btn-text {
    font-size: 10px;
  }

  .button-container .option-btn-ul {
    width: 99%;
    padding: 0 0.5%;
    left: 0;
  }

  .button-container .option-btn-ul > li {
    margin-right: 0%;
  }

  .popup-container {
    width: 94%;
  }

  .loading-container #logo {
    width: 200px;
  }
}

@media screen and (max-width: 720px) and (min-width: 361px) {
  .menu-btn-label {
    flex-direction: column;
  }

  .menu-btn-label > img {
    height: 20%;
  }

  .menu-btn-text {
    font-size: 10px;
    padding-top: 5px;
  }

  .option-btn-text {
    font-size: 10px;
  }

  .sub-option-btn-ul {
    display: flex;
    justify-content: space-around;
  }

  .sub-option-btn-text {
    font-size: 10px;
  }

  .button-container .option-btn-ul {
    width: 99%;
    padding: 0 0.5%;
    left: 0;
  }

  .button-container .option-btn-ul > li {
    margin-right: 0%;
  }

  .popup-container {
    width: 94%;
  }

  .loading-container #logo {
    width: 300px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 721px) {
  .menu-btn-label > img {
    height: 40%;
  }

  .menu-btn-text {
    font-size: 14px;
    padding-left: 1vw;
  }

  .option-btn-text {
    font-size: 12px;
  }

  .sub-option-btn-text {
    font-size: 10px;
  }

  .button-container .option-btn-ul {
    width: 24%;
    padding: 0 0.5%;
  }

  .button-container .option-btn-ul > li {
    margin-left: 0%;
  }

  .popup-container {
    width: 300px;
  }

  .loading-container #logo {
    width: 400px;
  }
}

@media screen and (max-width: 1440px) and (min-width: 1025px) {
  .menu-btn-label > img {
    height: 60%;
  }

  .menu-btn-text {
    font-size: 20px;
    padding-left: 1vw;
  }

  .option-btn-text {
    font-size: 14px;
  }

  .sub-option-btn-text {
    font-size: 12px;
  }

  .button-container .option-btn-ul {
    width: 24%;
    padding: 0 0.5%;
  }

  .button-container .option-btn-ul > li {
    margin-left: 50%;
  }

  .popup-container {
    width: 300px;
  }

  .loading-container #logo {
    width: 550px;
  }
}

@media screen and (max-width: 1920px) and (min-width: 1441px) {
  .menu-btn-label > img {
    height: 60%;
  }

  .menu-btn-text {
    font-size: 20px;
    padding-left: 1vw;
  }

  .option-btn-text {
    font-size: 16px;
  }

  .sub-option-btn-text {
    font-size: 14px;
  }

  .button-container .option-btn-ul {
    width: 24%;
    padding: 0 0.5%;
  }

  .button-container .option-btn-ul > li {
    margin-left: 48%;
  }

  .popup-container {
    width: 300px;
  }

  .loading-container #logo {
    width: 700px;
  }
}
