@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap");
:root {
  --header-height: 80px;
  --gap: 40px;
  --blue: #060e41;
  --pad: 80px;
  --red:#92222A ;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.33;
  background: #fff;
  color: var(--blue);
  margin: 0;
  padding: 0 0 0 0;
  text-align: left;
  font-weight: 400;
}

.bg-blue {
  background-color: var(--blue);
  color: #fff;
}

.clear,
* html .clearfix,
*:first-child + html .clearfix {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

section {
  position: relative;
  z-index: 2;
  background-color: inherit;
}
section.no-bg {
  background-color: transparent;
}

.dark-bg {
  position: relative;
}

.dark-bg:after {
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fix-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1;
  overflow: hidden;
}

.container {
  width: calc(100% - var(--gap) - var(--gap));
  max-width: calc(100% - var(--gap) - var(--gap));
  margin: auto;
}
.container.w1440 {
  width: 1440px;
}
.container.w1100 {
  max-width: 1100px;
}

.max330 {
  max-width: 316px;
}

.flex-st-st {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  -moz-column-gap: 0;
  column-gap: 0;
  row-gap: 0;
  flex-wrap: wrap;
}

.flex-sb-st {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  -moz-column-gap: 0;
  column-gap: 0;
  row-gap: 0;
  flex-wrap: wrap;
}

.flex-en-st {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row;
  -moz-column-gap: 0;
  column-gap: 0;
  row-gap: 0;
  flex-wrap: wrap;
}

.flex-r {
  flex-direction: row-reverse;
}

.flex-sb-ce {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 0;
  column-gap: 0;
  row-gap: 0;
  flex-wrap: wrap;
  align-self: normal;
}

.flex-en-ce {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 0;
  column-gap: 0;
  row-gap: 0;
  flex-wrap: wrap;
}

.flex-col-en {
  display: flex;
  justify-content: flex-end;
  row-gap: 60px;
  flex-direction: column;
}

.g5 {
  gap: 5px;
}

.g10 {
  gap: 10px;
}

.g15 {
  gap: 15px;
}

.gap20 {
  gap: 40px 0;
}

.read {
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.filter {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}
.filter .line {
  display: inline-block;
  margin: 0 10px;
}

.play {
  width: 80px !important;
  color: #fff;
}
.play span {
  display: block;
  padding-top: 5px;
  font-size: 11px;
  font-weight: 300;
}

.icon {
  margin: 0 auto;
  display: block;
}

.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gallery a img {
  display: block;
  width: 100%;
}

.logoHolder {
  width: 290px;
}

.btn-red {
  display: flex;
  height: 30px;
  justify-content: center;
  line-height: 1;
  padding: 0 15px;
  background-color: var(--red);
  row-gap: 0;
  transition: all 0.4s;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
}

.btn-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 0 24px;
  height: 36px;
  font-size: 15px;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  transition: color 0.3s;
  font-weight: 500;
}
.btn-blue:hover {
  background-color: var(--blue);
  color: #fff;
}
.btn-blue.btn-white {
  color: #fff;
  border: 1px solid #fff;
}

.btn {
  align-items: center;
  border: 1px solid currentColor;
  -moz-column-gap: 0;
       column-gap: 0;
  -moz-column-gap: 8px;
       column-gap: 8px;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  height: 29px;
  justify-content: center;
  line-height: 1;
  padding: 1px 10px 0;
  row-gap: 0;
  transition: all 0.4s;
  width: -moz-max-content;
  width: max-content;
}

.w806 {
  width: 820px;
  max-width: 100%;
  margin: auto;
  text-align: center;
}

.self-align {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 40px;
}

.boder-b {
  border-bottom: 1px solid #979797;
}

.full-height {
  height: 100vh;
  height: 100svh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.semi-height {
  height: 50vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
}

.fullyvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

iframe.fullyvideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

.halfvideo {
  top: 50%;
  left: 50%;
  width: 185%;
  height: 26vw;
  transform: translate(-50%, -50%);
  position: absolute;
}

.semiVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vw;
}

@media (min-aspect-ratio: 16/9) {
  iframe.fullyvideo {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  iframe.fullyvideo {
    width: 177.78vh;
  }
}
.poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.fully-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.fadeInUp {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s, transform 0.7s;
}
.fadeInUp.animated {
  transform: translateY(0);
  opacity: 1;
}

@media (min-aspect-ratio: 16/9) {
  .fully-iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .fully-iframe {
    width: 177.78vh;
  }
}
.prl {
  padding-right: var(--gap);
  padding-left: var(--gap);
}

.relative {
  position: relative;
}

.parralax {
  position: relative;
  overflow: hidden;
}
.parralax .para-inner {
  position: absolute;
  height: 100vh;
  height: 100svh;
  left: -1px;
  right: -1px;
  top: 0;
  background-size: cover;
  background-position: 50% 50%;
}

.mauto {
  margin-left: auto;
  margin-right: auto;
}

.mb5 {
  margin-bottom: 6px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.pt50v {
  padding-top: 50svh;
}

.ptxl {
  padding-top: calc(1.5 * var(--pad));
}

.pbxl {
  padding-bottom: calc(1.5 * var(--pad));
}

.ptl {
  padding-top: var(--pad);
}

.pbl {
  padding-bottom: var(--pad);
}

.ptm {
  padding-top: calc(0.5 * var(--pad));
}

.pbm {
  padding-bottom: calc(0.5 * var(--pad));
}

.pts {
  padding-top: 40px;
}

.pbs {
  padding-bottom: 40px;
}

.pt60 {
  padding-top: 60px;
}

.pt40 {
  padding-top: 40px;
}

.w_4 {
  width: 33.33%;
  min-width: 400px;
}

.v_w_4 {
  width: 66.67%;
  max-width: calc(100% - 400px);
  align-self: stretch;
}

.f14 {
  font-size: 14px;
}

.f16 b {
  display: block;
}
.f16 span {
  display: block;
}

.asp53 {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.grid_3 {
  display: block;
  width: calc(25% - 15px);
}

.grid_4 {
  display: block;
  width: calc(33% - 3.33px);
}

.grid_2 {
  width: 16%;
}

.grid_5 {
  width: 42%;
}

.grid_6 {
  width: 50%;
}

.grid_50 {
  width: calc(50% - 10px);
}

.g20 {
  gap: 20px;
}

.pad15 {
  padding: 15px;
}

.align-self {
  align-self: stretch;
  background-size: cover;
  background-position: center;
}

.align-self-sp {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.align-self-sp img {
  align-self: baseline;
}

.w660 {
  max-width: 660px;
}

.w600 {
  max-width: 600px;
  text-align: left;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  display: inline-block;
}

img {
  border: none;
  max-width: 100%;
}

a,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

.animated {
  opacity: 1 !important;
}

.middle {
  position: absolute;
  width: 290px;
  top: 50%;
  left: 50%;
  max-width: 80%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.thicky-holder {
  overflow: hidden;
  width: 100%;
}

.thicky {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.thicky .strip {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: calc(50% - 20px);
  justify-content: flex-start;
}

.thicky a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 25%;
}

.thicky a span {
  display: block;
}

.imgHolder {
  position: relative;
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}
.imgHolder img {
  display: block;
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.imgHolder span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  z-index: 2;
}

.ancher-top {
  display: inline-block;
  transform: translateY(-95px);
}

.spnWrapper {
  padding: 0 20px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 14px;
  min-height: 110px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}
.spnWrapper span {
  max-width: 320px;
}
.spnWrapper .more {
  padding-top: 15px;
  font-weight: 500;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
/* General */
.img {
  width: 100%;
  display: block;
}

.b-layer {
  position: relative;
}
.b-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue);
  opacity: 0.2;
  z-index: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
}

/* Headings */
h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
}

h1 {
  font-family: ivypresto-display, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h4 {
  font-weight: 600;
}

.f32 {
  font-size: 32px;
  text-align: left;
}

.f28 {
  font-size: 28px;
}

.f24 {
  font-size: 24px;
}

.ivy {
  font-family: ivypresto-display, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.message {
  font-size: 30px;
  width: 980px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  padding: 30px 0;
  position: relative;
  z-index: 3;
  max-width: 90%;
}

p {
  margin: 0;
}

h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}
h2.big {
  font-size: 26px;
  text-align: left;
}
h2.xbig {
  font-size: 30px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

.toFadeIn {
  opacity: 0;
  transition: opacity 0.5s;
}
.toFadeIn.animated {
  opacity: 1;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.centeralign {
  text-align: center;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  width: 100%;
  font-family: "Montserrat", sans-serif;
  z-index: 50;
  font-weight: 500;
  display: flex;
  padding: 0 var(--gap);
  font-size: 12px;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s;
  background-color: rgba(6, 14, 65, 0);
}
header.fixed {
  background-color: rgb(6, 14, 65);
  color: #fff;
}

.logo {
  width: 112px;
  display: block;
  position: relative;
  z-index: 50;
}

.top-middle {
  width: 100% !important;
}
.top-middle h1 {
  color: #fff;
  text-align: center;
  font-size: 78px;
}
.top-middle img {
  display: block;
  width: 225px;
  margin: auto;
}

#t-logo {
  width: 140px;
}

#instagram-content img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

#nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  display: none;
  transition: opacity 0.7s;
  background-color: var(--blue);
}
#nav ul {
  list-style: none;
  font-size: 31px;
  text-align: center;
  font-family: ivypresto-display, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* nav-toggle */
#nav-toggle {
  position: relative;
  cursor: pointer;
  width: 32px;
  height: 20px;
  z-index: 20;
}
#nav-toggle b {
  font-weight: normal;
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
}

#nav-toggle span,
#nav-toggle span:after,
#nav-toggle span:before {
  cursor: pointer;
  height: 2px;
  width: 32px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
  top: 8px;
  transition: all 0.6s ease-in-out;
}

#nav-toggle span:before {
  top: -8px;
}

#nav-toggle span:after {
  bottom: -8px;
}

#nav-toggle.active span {
  background-color: transparent !important;
}

#nav-toggle.active span:after,
#nav-toggle.active span:before {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: a rotate(45deg);
  background: #fff;
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: a rotate(-45deg);
  background: #fff;
}

.enq {
  width: 200px;
  display: block;
  margin: auto;
  background: #9f0f25;
  color: #fff;
  letter-spacing: 0.45em;
  padding: 12px 0;
  line-height: 1;
  border-radius: 17px;
  text-align: center;
}

/* enquiry */
input,
select, textarea {
  font-size: 16px;
  margin: 0 auto 15px auto;
  padding: 10px 10px;
  width: 100%;
  color: #040e44;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid #040e44;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

select {
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
}

#register .grid_50 {
  margin-bottom: 10px;
  position: relative;
}

.b_submit {
  margin: 15px 0 0 0;
  font-size: 18px;
  font-weight: 600;
}

.submitholder {
  text-align: center;
  margin: 15px auto 45px auto;
}

.submitholder span {
  display: inline-block;
  position: relative;
}

.submitholder span img {
  display: block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(30px, -50%);
  width: 19px;
}

.contact-l {
  display: block;
  font-size: 17px;
  font-weight: 700;
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: #040e44;
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #040e44;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #040e44;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #040e44;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #040e44;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

/*footer*/
footer {
  padding: 60px 0;
  background: var(--blue);
  position: relative;
  z-index: 5;
}

.logo-footer {
  width: 240px;
  display: block;
  margin: 0 auto 40px auto;
}

.logo-footer svg {
  display: block;
  width: 100%;
  height: auto;
}

.bar {
  border-top: 6px solid #9f0f25;
  font-size: 14px;
  text-align: center;
  color: #fff;
  width: 1452px;
  max-width: calc(100% - 52px);
  margin: auto;
}

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: -moz-left;
  text-align: -webkit-left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-bottom: 1px solid #525252;
  clear: both;
}

li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

ul.token-input-list-project li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100% !important;
  margin-bottom: 0;
}

li.token-input-token-project p {
  display: inline;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 20px;
  font-size: 11px;
}

li.token-input-token-project {
  overflow: hidden;
  height: 25px;
  margin: 0;
  padding: 2px 5px;
  background-color: #ccc;
  color: #000;
  cursor: default;
  border: 1px solid #525252;
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: #000000;
}

div.token-input-dropdown-project ul {
  margin: 0;
  padding: 0;
  display: block !important;
  max-height: 205px;
}

div.token-input-dropdown-project ul li {
  background-color: #fff;
  font-size: 14px;
  padding: 3px;
  margin: 0;
  list-style-type: none;
  font-weight: 100 !important;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li em {
  font-weight: bold;
  font-style: normal;
}

div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: #fff;
}

/* Parsley-error */
ul.parsley-errors-list.filled,
ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
}

ul.parsley-errors-list.filled li,
ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #f00d0d;
}

* {
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

.m {
  display: none;
}

.topPopUp {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  color: #040e44;
  background: rgba(255, 255, 255, 0.74);
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 55;
}

.cloasPopUp {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 50;
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.innerpop {
  padding: 0;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
}

.items {
  padding: 30px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  gap: 10px;
}

.pt30 {
  padding-top: 30px;
}

.specs {
  width: 800px;
  margin: auto;
  max-width: 100%;
}

.specs li {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
}

.deck-holder {
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fix-m {
  display: none;
}

.mob {
  display: none;
}

@media screen and (max-width: 1560px) {
  .container.w1440 {
    width: 1100px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
    --gap: 20px;
    --pad: 60px;
  }
  .fadeInUp {
    opacity: 1;
    transform: translateY(0);
  }
  body {
    font-size: 14px;
  }
  .desk {
    display: none;
  }
  .mob {
    display: block;
  }
  .grid_6, .grid_4,
  .grid_2, .grid_50,
  .grid_5, .grid_3 {
    width: 100%;
  }
  .logoHolder.middle {
    width: 200px;
    top: 200px;
  }
  h1 {
    font-size: 26px;
  }
  .message {
    font-size: 20px;
  }
  .thicky-holder {
    width: 300%;
  }
  .filter {
    font-size: 12px;
  }
  .filter .line {
    margin: 0 5px;
  }
  #register {
    width: 100%;
  }
  .btn-red {
    margin-bottom: 25px;
  }
  #t-logo {
    width: 100px;
  }
  .halfvideo {
    width: 178%;
    height: 103vw;
  }
  .spnWrapper {
    margin-bottom: 15px;
  }
  .fix-m {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--blue);
    color: #fff;
    display: flex;
    height: 38px;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border: none;
  }
  .top-middle h1 {
    font-size: 56px;
  }
  .w100m {
    height: 100vw !important;
  }
  h2 {
    font-size: 18px;
  }
  .f32 {
    font-size: 28px;
  }
  .v_w_4 {
    width: 100%;
    max-width: 100%;
    height: 100vw;
  }
  .w_4 {
    width: 100%;
    min-width: 50px;
  }
  .w806 {
    padding-left: 15px;
    padding-right: 15px;
  }
  #nav-toggle b {
    display: none;
  }
  .no-ptm {
    padding-top: 0;
  }
  .no-ptb {
    padding-bottom: 0;
  }
  #p0 {
    opacity: 1;
    position: relative;
    display: block;
    height: auto;
    overflow: inherit;
    z-index: 3;
  }
  .cloasPopUp {
    display: none;
  }
  .innerpop {
    height: auto;
    padding-bottom: 15px;
  }
  .deck-holder {
    height: auto;
    padding: 30px 0 0 0;
  }
  .flex-r {
    gap: 20px;
  }
  .nopbm {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .pad10m {
    padding-left: 0;
    padding-right: 0;
  }
  .pad10m h2 {
    font-size: 16px;
  }
  .pad10m .btn-blue {
    font-size: 14px;
    padding: 0 18px;
    height: 32px;
  }
}