/* Helvetica Neue – Roman (Regular) */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Neue – Light */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Neue – Thin */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Thin.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Neue – Medium */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Neue – Bold */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Brown Sugar – Decorative font */
@font-face {
  font-family: "Brown Sugar";
  src: url("../fonts/brown-sugar.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --black1: #111;
  --gray1: #6d7077;
  --gray2: #77736d;
  --gray3: #888;
  --white1: #f5f5f5;
}

.space {
  height: 100vh;
}

body {
  background-color: #141414;
  font-family: "Helvetica Neue";
}

body {
  overflow: hidden;
  height: 100%;
}

button,
* {
  cursor: none;
}

.inner {
  width: calc(100% - 6.25rem);
  height: 100%;
  margin: 0 auto;
}

em {
  font-family: "Brown Sugar";
}

.grid_lay {
  column-gap: 1.25rem;
}

#swup-overlay {
  position: fixed;
  z-index: 10000;
  background: rgba(0, 0, 0, 0);
  transition:
    opacity 0.7s ease-in-out,
    backdrop-filter 0.8s ease-in-out,
    background 0.8s ease-in-out;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(0);
  inset: 0;
}

html.is-changing #swup-overlay {
  background: rgba(0, 0, 0, 1);
  pointer-events: auto;
  opacity: 1;
  backdrop-filter: blur(50px);
}

html.is-changing header {
  transition: opacity 0.25s ease;
  opacity: 0.2;
}

.noise-canvas {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.4;
  inset: 0;
}

.cursor-outline {
  position: fixed;
  z-index: 50;
  width: 80px;
  height: 80px;
  border: solid 1px #fff;
  border-radius: 50px;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  z-index: 50;
  width: 80px;
  height: 80px;
  border: solid 1px #fff;
  border-radius: 50px;
  background-color: white;
  pointer-events: none;
  mix-blend-mode: difference;
}

@media (max-width: 768px) {
  button,
  * {
    cursor: auto;
  }

  a[href],
  button,
  [role="button"],
  input[type="submit"],
  input[type="button"],
  label[for] {
    cursor: pointer;
  }

  .cursor-outline,
  .cursor-dot {
    display: none !important;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  min-height: 8.75rem;
  padding: 0.625rem 0;
}

header .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

header h1 {
  overflow: hidden;
  width: max-content;
  height: 0;
  border-radius: 6.625rem;
  background-color: #000;
  color: var(--white1);
  backdrop-filter: blur(2px);
  transition: height 0.2s ease-in-out;
}
header h1.show {
  height: 7.5rem;
}

header h1 a {
  display: flex;
  height: 100%;
  padding: 0 2.5rem 0 3.75rem;
  align-items: center;
  gap: 6.25rem;
}

header h1 strong {
  font-weight: 300;
}

header h1 span {
  visibility: visible;
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 1;
}

header h1 p {
  visibility: visible;
  font-size: 2.5rem;
  font-weight: 400;
  opacity: 1;
}

header nav {
  padding-top: 0.75rem;
}

header nav ul {
  display: flex;
  overflow: hidden;
  height: 3.125rem;
  height: 0;
  padding: 0 2.5rem;
  border-radius: 5rem;
  background-color: #000;
  align-items: center;
  transition: height 0.2s ease-in-out;
}
header nav.show ul {
  height: 3.125rem;
}

header nav ul a {
  padding: 0 2.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white1);
  transition: color 0.5s ease-in-out;
  mix-blend-mode: difference;
}

header nav ul a:active {
  color: var(--white1);
}

header nav li {
  position: relative;
  height: 100%;
}

header nav li a {
  display: flex;
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 0 3.125rem;
  align-items: center;
  flex-direction: column;
}

header nav li a::after {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white1);
  content: attr(data-nav);
  mix-blend-mode: difference;
}

header nav li a span,
header nav li a::after {
  display: flex;
  min-height: 100%;
  align-items: center;
  transition: transform 0.4s ease-in-out;
}

header nav li a:hover span,
header nav li a:hover::after {
  transform: translateY(-100%);
}

header nav li.on::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/icons/ico_nav_on.svg") no-repeat center / cover;
  content: "";
  transform: translateY(-50%);
  mix-blend-mode: difference;
}
header .menu_btn {
  display: none;
  z-index: 10;
  width: 3.125rem;
  aspect-ratio: 1/1;
  background: url("../images/icons/ico_menu.svg") no-repeat center / cover;
}

footer .line {
  position: relative;
  height: 3.125rem;
}

footer .line:after {
  display: block;
  position: absolute;
  top: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  transition: width 1s ease-in-out;
  transform: translateY(-50%);
}

footer .line span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #000;
  transition: opacity 1s 1s ease-in-out;
  transform: translate(-50%, -50%);
  opacity: 0;
}

footer .line span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  content: "";
  transform: translate(-50%, -50%);
}

footer .line i {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -0.625rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  transition: left 1.25s 0.75s ease-out;
  transform: translateY(-50%);
}

footer .inner {
  padding-top: 3.125rem;
}

footer .links {
  display: flex;
  margin-bottom: 3.75rem;
  color: #fff;
  gap: 1.25rem;
}

footer .links > div {
  position: relative;
  width: 100%;
  max-width: 15rem;
  padding-top: 0.688rem;
  transition:
    opacity 1s ease-in-out,
    transform 1s ease-in-out;
  transform: translateY(20%);
  opacity: 0;
}

footer .links > div:before {
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  transition: width 1s ease-in-out;
}

footer .links strong,
footer .links a,
footer .links p {
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  align-items: center;
  gap: 0.375rem;
}

footer .links a {
  transition: background-color 0.3s ease-in-out;
}

footer .links a:hover {
  background-color: #1b263b;
}

footer .links strong:not(:first-of-type) {
  margin-top: 0.625rem;
}

footer .desc {
  position: relative;
  padding: 3.125rem 0;
  color: #fff;
}

footer .desc:before {
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  transition: width 1s ease-in-out;
}

footer .desc div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .desc button {
  position: absolute;
  top: -4.25rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #222;
}

footer .desc button::after {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  mask: url("../images/icons/ico_top_arrow.svg") no-repeat center / 1.5rem;
}

footer .desc p {
  font-size: 1.125rem;
  font-weight: 400;
  transition:
    opacity 1s ease-in-out,
    transform 1s ease-in-out;
  transform: translateY(20%);
  opacity: 0;
}

footer .copy_btn::after {
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  content: "";
  mask: url("../images/icons/ico_copy.svg") no-repeat center / cover;
}

footer .resume::after {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  content: "";
  mask: url("../images/icons/ico_down.svg") no-repeat center / cover;
}

footer.on .line i:nth-child(1) {
  left: 10%;
}

footer.on .line i:nth-child(2) {
  left: 30%;
}

footer.on .line i:nth-child(3) {
  left: 40%;
}

footer.on .line i:nth-child(4) {
  left: 70%;
}

footer.on .line i:nth-child(5) {
  left: 80%;
}

footer.on .line span {
  opacity: 1;
}

footer.on .line:after,
footer.on .links > div:before,
footer.on .desc:before {
  width: 100%;
}

footer.on .desc p,
footer.on .links > div {
  transform: translateY(0);
  opacity: 1;
}

#intro {
  display: none;
  visibility: hidden;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100000000;
  width: 100%;
  height: 100%;
  background-color: #111;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  opacity: 0;
}

#intro .item {
  width: 5rem;
  height: auto;
  will-change: transform, opacity;
}

#intro .item.left svg {
  transform: scaleX(-1);
}

#intro .item.center {
  position: fixed;
  z-index: 10;
  width: 0;
  height: 18.75rem;
  transform: scaleX(0);
  transform-origin: center;
}

#intro .item.center img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  /* aspect-ratio: 1/1; */
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#intro svg {
  overflow: visible;
  width: 100%;
  height: auto;
}

#intro .trace {
  fill: transparent;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.coordinate_display {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: max-content;
  padding: 0.75rem 1.25rem;
  border: 1px solid #aaa;
  border-radius: 3.125rem;
  background-color: rgba(31, 31, 31, 0.4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white1);
  letter-spacing: 0.15rem;
  text-align: center;
  transition:
    opacity 0.5s ease-in-out,
    bottom 0.5s ease-in-out;
  transform: translateX(-50%);
  opacity: 0;
  backdrop-filter: blur(2px);
}

.coordinate_display.on {
  bottom: 2.5rem;
  opacity: 1;
}

.banner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 3.125rem;
  background-color: #000;
}

.banner p {
  display: flex;
  overflow: hidden;
  min-height: 1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 80%;
  color: var(--white1);
  align-items: center;
  justify-content: space-between;
}

.banner span {
  transition: transform 1s ease-in-out;
  transform: translateY(200%);
}

.banner.show span {
  transform: translateY(0);
}

.work_list {
  position: relative;
}

.work_list .inner {
  position: relative;
}

.work_list .inner > .pin-spacer {
  mix-blend-mode: difference;
}

.work_list .inner > span {
  display: flex;
  position: absolute;
  z-index: 1;
  width: max-content;
  height: max-content;
  padding: 1.25rem;
  font-size: 6.25rem;
  font-weight: 500;
  align-items: center;
  transition: opacity 0.35s ease-in-out;
  opacity: 0;
  gap: 1.25rem;
  touch-action: none;
  -webkit-user-drag: none;
}

.work_list .inner > span:nth-child(1) {
  top: 0;
  left: 0;
  color: var(--white1);
  mix-blend-mode: difference;
}

.work_list .inner > span:nth-child(2) {
  top: 0;
  right: 0;
  color: var(--white1);
  mix-blend-mode: difference;
}

.work_list .inner > span:nth-child(3) {
  bottom: 0;
  left: 0;
  color: #00c9a7;
}

.work_list .inner > span:nth-child(3):before {
  width: 6.625rem;
  height: 0.25rem;
  background: #00c9a7;
  content: "";
}

.work_list .inner > span:nth-child(4) {
  right: 0;
  bottom: 0;
  color: #00c9a7;
}

.work_list .inner > span.show {
  opacity: 1;
}

.work_list .inner .pin_txt {
  position: absolute;
  top: 5%;
  left: 50%;
  z-index: 10;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white1);
  transition: opacity 0.3s ease-in-out;
  transform: translateX(-50%);
  opacity: 0;
  mix-blend-mode: difference;
  touch-action: none;
  -webkit-user-drag: none;
}

.work_list .inner .pin_txt.on {
  opacity: 1;
}

.work_list .inner em {
  font-family: "Brown Sugar";
}

.work_list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.work_list li {
  display: flex;
  width: 100%;
  padding: 0.188rem;
  aspect-ratio: 1/1;
}

.work_list li a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 0;
  height: 0;
  transition:
    width 0.5s ease-in-out,
    height 0.5s ease-in-out;
}

.work_list li a img {
  display: block;
  left: 0;
  width: calc((100vw - 7.875rem) / 4);
  max-width: max-content;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.work_list li .awards {
  display: flex;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  align-items: center;
  gap: 1.25rem;
}

.work_list li .awards span {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  transition: opacity 0.75s 0s ease-in-out;
  opacity: 0;
}

.work_list li .awards .gdweb {
  background: url("../images/icons/ico_gdweb.svg") no-repeat center / cover;
  mix-blend-mode: exclusion;
}

.work_list li .awards .webaward {
  background: url("../images/icons/ico_webaward.svg") no-repeat center / cover;
}

.work_list li.on_left {
  justify-content: flex-start;
}

.work_list li.on_right {
  justify-content: flex-end;
}

.work_list li.on_top {
  align-items: flex-start;
}

.work_list li.on_bottom {
  align-items: flex-end;
}

.work_list li.on_left a {
  height: 100%;
}

.work_list li.on_right a {
  height: 100%;
}

.work_list li.on_top a {
  width: 100%;
}

.work_list li.on_bottom a {
  width: 100%;
}

.work_list li.show.on_left a {
  width: 100%;
}

.work_list li.show.on_right a {
  width: 100%;
}

.work_list li.show.on_top a {
  height: 100%;
}

.work_list li.show.on_bottom a {
  height: 100%;
}

.work_list li.show .awards span {
  transition: opacity 0.75s 0.5s ease-in-out;
  opacity: 1;
}

.sec_contact {
  padding: 11.25rem 0;
}

.sec_contact h2 {
  position: relative;
  height: 36.1458vw;
}

.sec_contact h2 p {
  position: absolute;
  width: 100%;
  background: #141414;
  transition: top 1.25s 0.125s ease-in-out;
}

.sec_contact h2 p:nth-child(1) {
  top: 15.75rem;
  z-index: 3;
}

.sec_contact h2 p:nth-child(2) {
  top: 15.75rem;
  z-index: 4;
}

.sec_contact h2 p:nth-child(3) {
  top: 15.75rem;
  z-index: 5;
}

.sec_contact h2 p:nth-child(4) {
  top: 15.75rem;
  z-index: 4;
}

.sec_contact h2 p:nth-child(5) {
  top: 15.75rem;
  z-index: 3;
}

.sec_contact h2 p:nth-child(1) span {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(20, 20, 20, 0.1) 50%
  );
}

.sec_contact h2 p:nth-child(2) span {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(20, 20, 20, 0.35) 50%
  );
}

.sec_contact h2 p:nth-child(4) span {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.35) 50%,
    rgba(255, 255, 255, 0.35) 100%
  );
}

.sec_contact h2 p:nth-child(5) span {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(20, 20, 20, 0.1) 75%
  );
}

.sec_contact h2 p:not(:nth-child(3)) span {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec_contact h2 p span {
  display: block;
  width: 100%;
  padding: 2.5rem 0 0.625rem;
  font-size: 7.2917vw;
  font-weight: 300;
  color: var(--white1);
  text-align: center;
}

.sec_contact h2 em {
  font-family: "Brown Sugar";
}

.sec_contact h2.show p:nth-child(1) {
  top: 0;
}

.sec_contact h2.show p:nth-child(2) {
  top: 7.875rem;
}

.sec_contact h2.show p:nth-child(4) {
  top: 23.625rem;
}

.sec_contact h2.show p:nth-child(5) {
  top: 31.5rem;
}

.sec_contact .marquee {
  display: flex;
  overflow: hidden;
  position: static;
  color: var(--white1);
  letter-spacing: 0.625rem;
  white-space: nowrap;
  align-items: center;
  mix-blend-mode: normal;
}

.sec_contact .marquee span {
  display: block;
  padding: 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white1);
  font-smooth: always;
}

.marquee {
  overflow: hidden;
  position: absolute;
  bottom: 0.625rem;
  width: 100%;
  margin-top: 100px;
  font-size: 3.75rem;
  font-weight: 400;
  color: #00c9a7;
  letter-spacing: -0.05em;
  white-space: nowrap;
  mix-blend-mode: difference;
}

.marquee_track {
  display: inline-flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee_track .content {
  display: flex;
}

.marquee_track span {
  margin-right: 1rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.page-transition-container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150000000000;
  width: 100%;
  height: 100vh;
  margin: 0;
  flex-direction: column;
  pointer-events: none;
}

.page-transition-container .page-transition {
  height: 50%;
  background: #2c2c2c;
  transform: scaleX(0);
}

@media all and (max-width: 1600px) {
  html,
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 1440px) {
  html,
  body {
    font-size: 12px;
  }
}

@media all and (max-width: 1280px) {
  html,
  body{
    font-size: 10px;
  }
  header .menu_btn {
    display: flex;
  }
  header .inner {
  }
  header nav {
    position: fixed;
    inset: 0;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
  }
  header nav.show {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(1px);
  }

  header nav ul {
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    border-radius: 0;
    padding: 0;
    background-color: rgb(0, 0, 0) !important;
    opacity: 0.8 !important;
  }
  header nav.show ul {
    height: 100vh;
  }
  header nav li {
    height: max-content;
  }
  header nav li.on::before {
    left: -10px;
    width: 40px;
    height: 40px;
  }
  header nav li a {
    padding: 40px;
    font-size: 40px;
  }
  header nav li a::after {
    display: none;
  }
  header nav li a:hover span {
    transform: translateY(0);
    opacity: 1;
  }
}

@media all and (max-width: 1024px){
  .inner{
    width: calc(100% - 40px);
  }
  .marquee{
    margin-top: 140px;
  }
  .work_list .inner > span{
    font-size: 40px;
  }
  .work_list .inner > span:nth-child(3):before{
    height: 4px;
  }
  .work_list li .awards{
    gap:8px;
    top: 10px;
    right:10px;
  }
  .work_list li .awards span{
    width: 20px;
    height: 20px;
  }
  .work_list li a img{
    width: calc((100vw - 40px) / 4);
  }
}

@media all and (max-width: 768px){
  .coordinate_display{
    display:none;
  }

  .banner{
    padding: 4px 20px;
  }
  .banner p{
    min-height: 20px;
    font-size: 8px;
    line-height: 150%;
    opacity: .8;
  }

  header h1.show{
    height: 60px;
  }
  header h1 a{
    padding: 0 20px;
  }
  header h1 strong{
    display:block;
    padding-top:4px;
  }
  header h1 span,
  header h1 p{display:none;}
  header .menu_btn{
    margin-top:14px;
  }

  footer .inner{
    padding-top: 60px;
  }
  footer .links{
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
  }
  footer .links > div{
    max-width: 100%;
    padding-top: 10px;
  }
  footer .links strong, footer .links a, footer .links p{
    gap: 8px;  
    font-size:14px;
  }
  footer .links strong:not(:first-of-type){
    margin-top: 10px;
  }
  footer .resume::after,
  footer .copy_btn::after{
    width: 16px;
    height: 16px;
  }
  footer .desc{
    padding: 40px 0;
  }
  footer .desc div{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer .desc p{
    font-size: 14px;
    line-height: 150%;
  }
  footer .desc button{
    top: -60px;
    width: 40px;
    height: 40px;
  }
  footer .desc button::after{
    mask-size:24px;
  }
  
  
  .work_list{
    padding: 60px 0;
  }
  .work_list ul{
    grid-template-columns:repeat(3, 1fr);
  }
  .work_list li{
    padding: 2px;
  }
  .work_list li a img{
    width: calc((100vw - 52px) / 3);
  }
  .work_list li .awards{
    top: 6px;
    right: 6px;
  }
  .work_list .inner > span:nth-child(2),
  .work_list .inner > span:nth-child(1){
    top: -60px;
  }
  .work_list .inner > span:nth-child(3),
  .work_list .inner > span:nth-child(4){
    bottom: -60px;
  }
  .work_list .inner > span:nth-child(3):before{
    gap: 10px;
    width: 40px;
    height: 2px;
  }

  .sec_contact{
    padding: 60px 0 0 0;
  }
  .sec_contact h2{
    height: 200px;
  }

  .sec_contact h2 p{
    top: 50% !important;
    transform: translateY(-50%);
  }
  .sec_contact h2 p span{
    padding: 10px 0;
    font-size: 24px;
  }
  .sec_contact h2.show p:nth-child(1){
    top: 26% !important;
  }
  .sec_contact h2.show p:nth-child(2){
    top: 38% !important;
  }
  .sec_contact h2.show p:nth-child(4){
    top: 62% !important;
  }
  .sec_contact h2.show p:nth-child(5){
    top: 74% !important;
  }
  .sec_contact .marquee{
    margin: 0 0 120px;
  }
  .sec_contact .marquee span{
    padding: 0 4px;
    font-size:12px;
  }
}