@import "./var.css";
::-webkit-scrollbar {
  display: none;
}
html {
  scrollbar-width: none; /* Firefox */
}

a {
  text-decoration: none;
  color: inherit;
}

.v-center {
  top: 50%;
  transform: translateY(-50%);
}

.r-center {
  left: 50%;
  transform: translateX(-50%);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.container {
  width: 1200px;
  height: 100vh;
  margin: 0 auto;
  position: relative;
}

.content-box {
  padding-top: 240px;
}

.flex-start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-start-start {
  display: flex;
  justify-content: flex-start;
  align-items: start;
}

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

.flex-start-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
}

.flex-y-between {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

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

/* title start */
.title {
  position: absolute;
  top: 50px;
  left: -50px;
  display: flex;
  justify-content: flex-start;
}

.title img {
  width: auto;
  height: 100px;
}

.title .text-right {
  margin-left: 20px;
}

.title .text-right p:first-of-type {
  font-size: 48px;
  font-weight: 600;
  color: var(--main-color);
}

.title .text-right p:last-of-type {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--secondary-color);
}
/* title end */

@media (max-height: 800px) {
  .content-box {
    padding-top: 140px;
  }
  .title {
    top: 20px;
  }
}

@media (max-width: 1300px) {
  .title {
    left: -30px;
  }
}