.gtr-wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 0 0 90px;
  background-color: var(--layer-1-color, #f7f7f7);
}

.gtr-sep {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 48em) {
  .gtr-sep {
    gap: 8px;
  }
}

.gtr-sep::before {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background-color: #e50c2c;
  content: '';
}

@media screen and (min-width: 48em) {
  .gtr-sep::before {
    width: 76px;
    height: 2px;
  }
}

.gtr-sep::after {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background-color: #e50c2c;
  content: '';
}

@media screen and (min-width: 48em) {
  .gtr-sep::after {
    width: 76px;
    height: 2px;
  }
}

.gtr-sep svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

@media screen and (min-width: 48em) {
  .gtr-sep svg {
    width: 28px;
    height: 28px;
  }
}

[theme='dark'] .gtr-sep svg {
  --i-color1: #9e9e9e;
  --i-color2: #2a2a2a;
}

.gtr-head {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 0 32px;
  padding: 48px 16px 0;
}

@media screen and (min-width: 48em) {
  .gtr-head {
    margin: 0 0 44px;
    padding: 76px 30px 0;
  }
}

.gtr-head::before {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 248px;
  background-image: url(/nimg/gtr-head-x2.jpg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

@media screen and (min-width: 48em) {
  .gtr-head::before {
    height: 430px;
    background-color: #221c38;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 1600px;
  }
}

.gtr-head--inner {
  display: flex;
  z-index: 3;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
  padding: 32px 24px 23px;
  border-radius: 16px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, .12);
}

@media screen and (min-width: 48em) {
  .gtr-head--inner {
    min-height: 414px;
    padding: 66px 48px 48px;
    border-radius: 36px;
  }
}

.gtr-head--inner h1 {
  margin: 0 0 8px;
  color: var(--text-1-color, #000);
  font-family: "PT Serif", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-head--inner h1 {
    font-size: 50px;
    line-height: 60px;
  }
}

.gtr-head--inner h1 span {
  color: #e50c2c;
}

.gtr-head--icon {
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .07));
}

@media screen and (min-width: 48em) {
  .gtr-head--icon {
    width: 100px;
    height: 100px;
  }
}

[theme='dark'] .gtr-head--icon {
  --i-color1: #424242;
}

.gtr-head--sub {
  max-width: 576px;
  margin: 0 0 20px;
  color: var(--text-2-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-head--sub {
    margin: 0 0 32px;
    font-size: 28px;
    line-height: 1;
  }
}

.gtr-head--grid {
  gap: 0 12px;
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .gtr-head--grid {
    margin: 0 0 28px;
  }
}

.gtr-head--chip {
  display: flex;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, .24);
}

[theme='dark'] .gtr-head--chip {
  border-color: transparent;
}

.gtr-head--tag {
  display: flex;
  position: relative;
  padding: 2px 6px;
  border: 4px solid #ae9b8a;
  background-color: var(--layer-3-color, #fff);
  color: #bd0621;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .22px;
  line-height: 26px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-head--tag {
    padding: 4px 8px;
    font-size: 22px;
  }
}

.gtr-head--tag::before {
  position: absolute;
  top: -4px;
  left: 8px;
  width: 21px;
  height: 4px;
  background-image: linear-gradient(270deg, #ae9b8a 0%, #fff 50%, #ae9b8a 100%);
  content: '';
}

.gtr-head--tag::after {
  position: absolute;
  right: 8px;
  bottom: -4px;
  width: 21px;
  height: 4px;
  background: linear-gradient(270deg, #ae9b8a 0%, #ffeca9 36.06%, #fff 50%, #ffeca9 62%, #ae9b8a 100%);
  content: '';
}

.gtr-head--info {
  max-width: 576px;
  color: var(--text-2-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 15px;
  line-height: 21px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-head--info {
    font-size: 24px;
    line-height: 1.4;
  }
}

.gtr-perf {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 32px;
}

@media screen and (min-width: 48em) {
  .gtr-perf {
    margin: 0 0 60px;
  }
}

.gtr-perf--inner {
  gap: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  padding: 0 16px;
}

@media screen and (min-width: 48em) {
  .gtr-perf--inner {
    gap: 26px 0;
    padding: 0 30px;
  }
}

.gtr-perf--head {
  gap: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 48em) {
  .gtr-perf--head {
    gap: 20px 0;
  }
}

.gtr-perf--head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--text-1-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-perf--head h2 {
    font-size: 38px;
    line-height: 1.2;
  }
}

.gtr-perf--grid {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .gtr-perf--grid {
    gap: 20px;
  }
}

@media screen and (min-width: 64em) {
  .gtr-perf--grid {
    flex-wrap: nowrap;
  }
}

.gtr-perf--card {
  gap: 8px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 402px;
  padding: 20px 16px 24px;
  border-radius: 16px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

@media screen and (min-width: 48em) {
  .gtr-perf--card {
    padding: 32px 20px;
    border-radius: 24px;
  }
}

@media screen and (min-width: 64em) {
  .gtr-perf--card {
    flex-direction: row;
  }
}

.gtr-perf--top {
  gap: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 48em) {
  .gtr-perf--top {
    gap: 16px 0;
  }
}

.gtr-perf--wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gtr-perf--icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 48em) {
  .gtr-perf--icon {
    width: 82px;
    height: 82px;
  }
}

[theme='dark'] .gtr-perf--icon {
  --i-color2: #2a2a2a;
  --i-color1: #9e9e9e;
}

.gtr-perf--text {
  max-width: 340px;
  color: var(--text-2-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-perf--text {
    font-size: 20px;
    line-height: 24px;
  }
}

.gtr-start {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 32px;
}

@media screen and (min-width: 48em) {
  .gtr-start {
    margin: 0 0 60px;
  }
}

.gtr-start--inner {
  gap: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1660px;
  padding: 0 16px;
}

@media screen and (min-width: 48em) {
  .gtr-start--inner {
    gap: 36px 0;
    padding: 0 30px;
  }
}

.gtr-start--grid {
  gap: 8px 0;
  display: flex;
  z-index: 2;
  position: relative;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 48em) {
  .gtr-start--grid {
    gap: 20px 0;
  }
}

.gtr-start--bg1 {
  display: none;
  position: absolute;
  top: 164px;
  left: 0;
  width: 403px;
  height: 457px;
  transform: rotate(-10.55deg);
  background-image: url(/nimg/gtr-start-bg1.webp);
  background-repeat: no-repeat;
  background-size: 403px;
}

@media screen and (min-width: 48em) {
  .gtr-start--bg1 {
    display: initial;
  }
}

.gtr-start--bg1::before {
  position: absolute;
  top: 326px;
  right: 90px;
  width: 37px;
  height: 30px;
  background-image: url(/nimg/gtr-start-chip1.webp);
  background-repeat: no-repeat;
  background-size: 37px;
  content: '';
}

.gtr-start--bg1::after {
  position: absolute;
  top: 433px;
  right: 97px;
  width: 44px;
  height: 36px;
  transform: rotate(-14.03deg);
  background-image: url(/nimg/gtr-start-chip2.webp);
  background-repeat: no-repeat;
  background-size: 44px;
  content: '';
}

.gtr-start--bg2 {
  display: none;
  position: absolute;
  top: -78px;
  right: 0;
  width: 390px;
  height: 457px;
  transform: rotate(-13.55deg);
  background-image: url(/nimg/gtr-start-bg2.webp);
  background-repeat: no-repeat;
  background-size: 390px;
}

@media screen and (min-width: 48em) {
  .gtr-start--bg2 {
    display: initial;
  }
}

.gtr-start--bg2::before {
  position: absolute;
  top: 358px;
  left: 4px;
  width: 40px;
  height: 33px;
  transform: rotate(-37.71deg);
  background-image: url(/nimg/gtr-start-chip3.webp);
  background-repeat: no-repeat;
  background-size: 40px;
  content: '';
}

.gtr-start--main {
  gap: 24px 0;
  display: flex;
  z-index: 2;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: 780px;
  padding: 32px 16px;
  border-radius: 24px;
  background-color: var(--layer-3-color, #fff);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .07);
}

@media screen and (min-width: 48em) {
  .gtr-start--main {
    gap: 36px 0;
    padding: 52px 32px;
  }
}

.gtr-start--card {
  gap: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gtr-start--icon {
  display: flex;
  flex-shrink: 0;
}

.gtr-start--icon svg {
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 48em) {
  .gtr-start--icon svg {
    width: 60px;
    height: 60px;
  }
}

[theme='dark'] .gtr-start--icon svg {
  --i-color1: #fafafa;
  --i-color2: #2a2a2a;
}

.gtr-start--icon_1 svg {
  width: 40px;
  height: 27px;
}

@media screen and (min-width: 48em) {
  .gtr-start--icon_1 svg {
    width: 62px;
    height: 41px;
  }
}

.gtr-start--content {
  gap: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gtr-start--heading {
  color: var(--text-2-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-start--heading {
    font-size: 28px;
    line-height: 1.1;
  }
}

.gtr-start--text {
  color: var(--text-4-color, #292929);
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-start--text {
    font-size: 18px;
    line-height: 25px;
  }
}

.gtr-start--text br {
  display: none;
}

@media screen and (min-width: 30em) {
  .gtr-start--text br {
    display: initial;
  }
}

.gtr-tg {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 32px;
}

@media screen and (min-width: 48em) {
  .gtr-tg {
    margin: 0 0 60px;
  }
}

.gtr-tg--inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  padding: 0 16px;
}

@media screen and (min-width: 48em) {
  .gtr-tg--inner {
    padding: 0 30px;
  }
}

.gtr-tg--main {
  gap: 12px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
  padding: 24px 16px;
  border: 1px solid var(--line-1-color, #ededed);
  border-radius: 24px;
  background-color: #08c;
}

@media screen and (min-width: 48em) {
  .gtr-tg--main {
    gap: 16px;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 40px 40px 76px;
  }
}

.gtr-tg--float {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  filter: drop-shadow(4px 4px 1px rgba(0, 0, 0, .06));
}

@media screen and (min-width: 48em) {
  .gtr-tg--float {
    left: -30px;
    width: 93px;
    height: 93px;
    transform: none;
  }
}

[theme='dark'] .gtr-tg--float {
  --i-color1: #2a2a2a;
  --i-color2: #fff;
}

.gtr-tg--text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gtr-tg--heading {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-tg--heading {
    font-size: 26px;
    text-align: left;
  }
}

.gtr-tg--subheading {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-tg--subheading {
    font-size: 20px;
    text-align: left;
  }
}

.gtr-tg--button {
  gap: 0 10px;
  display: flex;
  align-items: center;
  padding: 12px 28px 12px 22px;
  border-radius: 10px;
  background-color: #fff;
  color: #08c;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .gtr-tg--button {
    padding: 19px 28px 19px 22px;
    font-size: 20px;
  }
}

.gtr-tg--button svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.gtr-user {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 32px;
}

@media screen and (min-width: 48em) {
  .gtr-user {
    margin: 0 0 60px;
  }
}

.gtr-user--main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1306px;
  padding: 0 16px;
}

@media screen and (min-width: 48em) {
  .gtr-user--main {
    padding: 0 30px;
  }
}

.gtr-user--heading {
  gap: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 22px;
}

.gtr-user--heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--text-1-color, #292929);
  font-family: "PT Serif", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-user--heading h2 {
    font-size: 38px;
    line-height: 1.2;
  }
}

.gtr-user--wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gtr-user--grid {
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
  margin: 0 0 16px;
}

@media screen and (min-width: 48em) {
  .gtr-user--grid {
    grid-template-columns: repeat(2, minmax(270px, 1fr));
  }
}

@media screen and (min-width: 64em) {
  .gtr-user--grid {
    grid-template-columns: repeat(3, minmax(270px, 1fr));
  }
}

.gtr-user--subgrid {
  gap: 17px;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1246px;
  padding: 0 0 52px;
  overflow: hidden;
}

@media screen and (min-width: 48em) {
  .gtr-user--subgrid {
    grid-template-columns: repeat(2, minmax(270px, 1fr));
  }
}

@media screen and (min-width: 64em) {
  .gtr-user--subgrid {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}

.gtr-user--subgrid::after {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: radial-gradient(50% 50% at 50% 50%, var(--layer-2a-color, #fff) 27.8%, rgba(255, 255, 255, 0) 100%);
  content: '';
}

@media screen and (min-width: 48em) {
  .gtr-user--subgrid::after {
    bottom: -170px;
    height: 340px;
  }
}

.gtr-user--card {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin: 33px 0 0;
  padding: 0 24px 24px;
  border-radius: 16px;
  background-image: linear-gradient(181deg, var(--layer-1-color, #f7f7f7) 35px, var(--layer-2-color, #fff) 49.53%);
  box-shadow: inset 0 0 0 1px var(--line-2-color, #e7dfd9);
}

@media screen and (min-width: 48em) {
  .gtr-user--card {
    margin: 38px 0 0;
  }
}

.gtr-user--head {
  gap: 0 12px;
  display: flex;
  align-items: center;
  margin: -33px 0 14px;
  padding: 0 16px 0 0;
  background-color: var(--layer-1-color, #f7f7f7);
}

@media screen and (min-width: 48em) {
  .gtr-user--head {
    margin: -38px 0 14px;
  }
}

.gtr-user--round {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 1px solid #d8cdc4;
  border-radius: 50%;
  background-color: var(--layer-1-color, #fff);
}

@media screen and (min-width: 48em) {
  .gtr-user--round {
    width: 76px;
    height: 76px;
  }
}

.gtr-user--image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .gtr-user--image {
    width: 70px;
    height: 70px;
  }
}

.gtr-user--data {
  gap: 4px 0;
  display: flex;
  flex-direction: column;
}

.gtr-user--name {
  color: var(--text-2-color, #000);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

@media screen and (min-width: 48em) {
  .gtr-user--name {
    font-size: 22px;
  }
}

.gtr-user--inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gtr-user--feedback {
  color: var(--text-2-color, #000);
  font-size: 16px;
  line-height: 22px;
}

@media screen and (min-width: 48em) {
  .gtr-user--feedback {
    font-size: 18px;
    line-height: 26px;
  }
}

.gtr-user--review {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin: 28px 0 0;
  padding: 0 24px 24px;
  border-radius: 16px;
  background-image: linear-gradient(181deg, var(--layer-1-color, #f7f7f7) 28px, var(--layer-2-color, #fff) 49.53%);
  box-shadow: inset 0 0 0 1px var(--line-2-color, #e7dfd9);
}

.gtr-user--content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gtr-user--top {
  gap: 0 12px;
  display: flex;
  align-items: center;
  margin: -28px 0 20px;
  padding: 0 16px 0 0;
  background-color: var(--layer-1-color, #f7f7f7);
}

.gtr-user--circle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #d8cdc4;
  border-radius: 50%;
  background-color: var(--layer-1-color, #fff);
}

.gtr-user--avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gtr-user--nick {
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.gtr-user--date {
  margin: 0 0 4px;
  color: var(--text-6-color, #86909a);
  font-size: 16px;
  line-height: 24px;
}

.gtr-user--text {
  color: var(--text-4-color, #000);
  font-size: 16px;
  line-height: 24px;
}

.gtr-user--bottom {
  gap: 0 8px;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  margin: -24px 0 0;
}

.gtr-user--bottom::after {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  max-width: 810px;
  height: 1px;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(90deg, rgba(216, 205, 196, 0) .97%, #d8cdc4 50.68%, rgba(216, 205, 196, 0) 100%);
  content: '';
}

.gtr-user--link {
  z-index: 1;
  padding: 11px 16px;
  border: 1px solid var(--line-2-color, #e7dfd9);
  border-radius: 8px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-1-color, #292929);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .gtr-user--link {
    padding: 11px 27px;
    font-size: 18px;
  }
}

.gtr-user--add {
  gap: 0 4px;
  display: flex;
  z-index: 1;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid var(--line-2-color, #e7dfd9);
  border-radius: 8px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-1-color, #292929);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .gtr-user--add {
    padding: 11px 18px;
    font-size: 18px;
  }
}

.gtr-user--add::before {
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 14'%3E%3Cpath fill='%230D2134' d='M0 6h14v2H0Z' /%3E%3Cpath fill='%230D2134' d='M8 0v14H6V0Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  content: '';
}

[theme='dark'] .gtr-user--add::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 14'%3E%3Cpath fill='%23fff' d='M0 6h14v2H0Z' /%3E%3Cpath fill='%23fff' d='M8 0v14H6V0Z' /%3E%3C/svg%3E");
}

.gtr-feedback {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: 616px;
  margin: 48px 0 0;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--layer-4-color, #f3f3f3);
  box-shadow: inset 0 0 0 1px var(--line-2-color, #e7dfd9);
}

@media screen and (min-width: 48em) {
  .gtr-feedback {
    padding: 24px;
  }
}

.gtr-feedback--content {
  display: flex;
  flex-direction: column;
}

.gtr-feedback--note {
  margin: 0 0 8px;
  color: var(--text-2-color, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.gtr-feedback--field {
  width: 100%;
  height: 106px;
  margin: 0 0 24px;
  padding: 5px;
  border: 1px solid var(--line-2-color, #e4e5e7);
  border-radius: 8px;
  background-color: var(--layer-1-color, #fff);
  color: var(--text-2-color, #000);
  font-size: 16px;
  line-height: 24px;
  resize: vertical;
}

@media screen and (min-width: 48em) {
  .gtr-feedback--field {
    padding: 12px 10px;
  }
}

.gtr-feedback--field::-moz-placeholder {
  color: var(--text-6-color, #9e9e9e);
}

.gtr-feedback--field::placeholder {
  color: var(--text-6-color, #9e9e9e);
}

.gtr-feedback--field:focus-visible {
  outline: 1px solid var(--text-6-color, #dedede);
}

.gtr-feedback--send {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 100%;
  max-width: 334px;
  padding: 14px 24px;
  border-radius: 8px;
  background-color: #e51e25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.gtr-mail {
  display: flex;
  justify-content: center;
  width: 100%;
}

.gtr-mail--inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  padding: 0 16px;
}

@media screen and (min-width: 48em) {
  .gtr-mail--inner {
    padding: 0 30px;
  }
}

.gtr-mail--main {
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
  padding: 48px 16px 23px 16px;
  overflow: hidden;
  border: 1px solid var(--line-1-color, #beab9a);
  border-radius: 24px;
  background-color: var(--layer-3-color, #fff);
  background-image: url(/nimg/gtr-mail-bg.svg);
  background-position: 50% 8px;
  background-repeat: no-repeat;
  background-size: 48px;
}

@media screen and (min-width: 48em) {
  .gtr-mail--main {
    gap: 16px;
    flex-direction: row;
    justify-content: space-between;
    padding: 31px 35px 31px 145px;
    background-position: 0 50%;
    background-size: 138px;
  }
}

.gtr-mail--text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 298px;
}

.gtr-mail--heading {
  color: var(--text-1-color, #292929);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-mail--heading {
    font-size: 22px;
    text-align: left;
  }
}

.gtr-mail--subheading {
  color: var(--text-4-color, #292929);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .gtr-mail--subheading {
    font-size: 18px;
    text-align: left;
  }
}

.gtr-mail--button {
  gap: 0 8px;
  display: flex;
  align-items: center;
  padding: 10px 24px 10px 20px;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

@media screen and (min-width: 48em) {
  .gtr-mail--button {
    padding: 12px 28px 12px 24px;
    font-size: 18px;
  }
}

.gtr-mail--button svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
