/*
* Basics
*/
/*@use 'variables' as *;

@font-face {
	font-family: 'barlow';
	src: url($font_path + 'barlow/Barlow-Regular.woff') format('woff');
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}*/
/*
* VW Unit
*/
/*
* VH Unit
*/
a {
  text-decoration: none;
}

p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

section {
  position: relative;
  padding: 0 clamp(20px, 6.4814814815vw, 35px);
}

#viewport {
  height: 100%;
  min-height: 100dvh;
}
#viewport #pageWrapper {
  opacity: 0;
}
#viewport #pageWrapper #pageContent {
  will-change: transform;
}

.cbg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.cobj {
  object-fit: cover;
  object-position: center center;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.btn {
  background: var(--theme-color);
  position: relative;
  display: flex;
  column-gap: 10px;
  width: fit-content;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid var(--theme-color);
  transition-property: background, border-color;
  transition-duration: 0.2s, 0.2s;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Arial", sans-serif;
  transition-property: color;
  transition-duration: 0.2s;
  color: var(--white-color);
  white-space: nowrap;
}
.btn.bordered {
  background: transparent;
}
.btn.bordered span {
  color: var(--theme-color);
}
.btn.bordered.white {
  border-color: var(--white-color);
}
.btn.bordered.white span {
  color: var(--white-color);
}
.btn .btn-after {
  display: flex;
  transform: translate(0, 1px);
}
.btn .btn-after svg {
  width: 18px;
  height: auto;
}

.badge {
  background: var(--theme-color);
  position: relative;
  display: flex;
  width: fit-content;
  padding: 5px 11.5px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}
.badge span {
  font-size: 14px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: var(--white-color);
  white-space: nowrap;
}
.badge.green, .badge.open {
  background: var(--open-color);
}
.badge.red, .badge.closed {
  background: var(--closed-color);
}
.badge.gray, .badge.applied {
  background: var(--gray-n4-color);
}

.img-container {
  background: #cccccc;
  overflow: hidden;
}
.img-container .inner-img {
  width: 100%;
  height: 100%;
}
.img-container .inner-img img,
.img-container .inner-img .img {
  width: 100%;
  height: 100%;
}
.img-container.cobj .inner-img img,
.img-container.cobj .inner-img .img {
  object-fit: cover;
  object-position: center center;
}

rwp-wrap {
  display: block;
}

input,
select,
textarea {
  font-family: "Arial", sans-serif;
}

form {
  width: 100%;
}
form .inner .form-message {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--black-color);
}
form .inner .fields-group > span {
  display: table;
  font-size: 14px;
  line-height: 100%;
  margin: 0 0 14px;
  color: var(--gray-n3-color);
}
form .inner .fields-group > span a {
  color: var(--gray-n3-color);
  text-decoration: underline;
}
form .inner .fields-group + .fields-group {
  margin: 25px 0 0;
}
form .inner .fields-group.method, form .inner .fields-group.promo, form .inner .fields-group.resume {
  display: none;
}
form .inner .fields-group.promo .fields .field {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
form .inner .fields-group.promo .fields .field input[readonly] {
  background: #ccc;
}
form .inner .fields-group.promo .fields .field > span {
  cursor: pointer;
}
form .inner .fields-group.resume ul {
  width: 100%;
  max-width: 380px;
}
form .inner .fields-group.resume ul li {
  width: 50%;
}
form .inner .fields-group.resume ul li span {
  display: inline-block;
  font-size: 16px;
}
form .inner .fields-group.resume ul li span:nth-child(1) {
  width: 100px;
  font-weight: 600;
}
form .inner .fields-group.resume ul li + li {
  margin: 6px 0 0;
}
form .inner .fields-group.resume ul li:nth-last-child(2) span, form .inner .fields-group.resume ul li:nth-last-child(3) span, form .inner .fields-group.resume ul li.promo span {
  font-size: 12px;
}
form .inner .fields-group.resume ul li:last-child {
  margin: 16px 0 0;
}
form .inner .fields {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
form .inner .fields .field {
  position: relative;
  width: 100%;
}
form .inner .fields .field .like-label {
  display: table;
  font-size: 14px;
  line-height: 100%;
  margin: 0 0 14px;
  color: var(--gray-n3-color);
}
form .inner .fields .field input,
form .inner .fields .field select,
form .inner .fields .field textarea,
form .inner .fields .field .credit-input,
form .inner .fields .field .css-13cymwt-control {
  background: var(--white-color);
  width: 100%;
  font-size: 16px;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  color: var(--black-color);
}
form .inner .fields .field input::-webkit-input-placeholder,
form .inner .fields .field select::-webkit-input-placeholder,
form .inner .fields .field textarea::-webkit-input-placeholder,
form .inner .fields .field .credit-input::-webkit-input-placeholder,
form .inner .fields .field .css-13cymwt-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .fields .field input::-moz-placeholder,
form .inner .fields .field select::-moz-placeholder,
form .inner .fields .field textarea::-moz-placeholder,
form .inner .fields .field .credit-input::-moz-placeholder,
form .inner .fields .field .css-13cymwt-control::-moz-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .fields .field input:-ms-input-placeholder,
form .inner .fields .field select:-ms-input-placeholder,
form .inner .fields .field textarea:-ms-input-placeholder,
form .inner .fields .field .credit-input:-ms-input-placeholder,
form .inner .fields .field .css-13cymwt-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .fields .field input:-moz-placeholder,
form .inner .fields .field select:-moz-placeholder,
form .inner .fields .field textarea:-moz-placeholder,
form .inner .fields .field .credit-input:-moz-placeholder,
form .inner .fields .field .css-13cymwt-control:-moz-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .fields .field input.error,
form .inner .fields .field select.error,
form .inner .fields .field textarea.error,
form .inner .fields .field .credit-input.error,
form .inner .fields .field .css-13cymwt-control.error {
  border-color: var(--error-color);
}
form .inner .fields .field input,
form .inner .fields .field select,
form .inner .fields .field .credit-input {
  height: 60px;
  padding: 0 20px;
}
form .inner .fields .field .credit-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: text;
}
form .inner .fields .field .credit-input .__PrivateStripeElement {
  width: 100%;
}
form .inner .fields .field select {
  appearance: none;
  cursor: pointer;
}
form .inner .fields .field textarea {
  resize: none;
  padding: 15px 20px;
  min-height: 280px;
}
form .inner .fields .field .icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  z-index: 2;
}
form .inner .fields .field .checkboxes {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
}
form .inner .fields .field .checkboxes label {
  display: flex;
  width: 33.3333333333%;
  align-items: center;
  user-select: none;
  pointer-events: none;
}
form .inner .fields .field .checkboxes label input {
  width: 12px;
  height: 12px;
  margin: 0;
  pointer-events: initial;
  cursor: pointer;
}
form .inner .fields .field .checkboxes label span {
  font-size: 14px;
  line-height: 100%;
  padding-left: 6px;
  color: var(--gray-n3-color);
  pointer-events: initial;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  form .inner .fields .field .checkboxes label {
    width: 50%;
  }
}
@media screen and (max-width: 540px) {
  form .inner .fields .field .checkboxes label {
    width: 100%;
  }
}
form .inner .fields .field .inner-field-notice {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  padding: 0 19px;
  font-size: 12px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
form .inner .fields .field .counter {
  display: flex;
  width: 100%;
  margin: 4px 0 0;
  align-items: center;
  justify-content: space-between;
}
form .inner .fields .field .counter .min,
form .inner .fields .field .counter .total {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
form .inner .fields .field .counter .min span,
form .inner .fields .field .counter .total span {
  font-size: 14px;
  line-height: 100%;
}
form .inner .fields .field .counter .min span i,
form .inner .fields .field .counter .total span i {
  font-style: initial;
}
@media screen and (max-width: 680px) {
  form .inner .fields .field .counter {
    align-items: flex-start;
  }
  form .inner .fields .field .counter .total {
    width: fit-content;
    flex-wrap: wrap;
  }
  form .inner .fields .field .counter .total span {
    width: 100%;
    text-align: right;
    white-space: nowrap;
  }
}
@media screen and (max-width: 600px) {
  form .inner .fields .field .counter {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  form .inner .fields .field .counter .min {
    width: 100%;
  }
  form .inner .fields .field .counter .total {
    row-gap: 4px;
    flex-wrap: wrap;
    width: 100%;
  }
  form .inner .fields .field .counter .total span {
    width: 100%;
    text-align: left;
  }
}
form .inner .fields .field.split {
  width: calc(50% - 6px);
}
@media screen and (max-width: 768px) {
  form .inner .fields .field.split {
    width: 100%;
  }
  form .inner .fields .field.mobile-margin {
    margin-top: 16px;
  }
}
@media screen and (max-width: 506px) {
  form .inner .fields .field.mobile-margin {
    margin-top: 26px;
  }
}
form .inner .fields .sub-field-notice {
  width: 100%;
  padding: 0 19px;
  margin-top: -7px;
  font-size: 12px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
form .inner .fields .sub-field-notice i {
  font-style: initial;
  text-decoration: underline;
  color: var(--theme-color);
  cursor: pointer;
}
form .inner .fields .sub-field-notice.for-buttons {
  padding: 0;
}
@media screen and (max-width: 680px) {
  form .inner .fields .sub-field-notice {
    padding: 0;
  }
}
form .inner .fields + .fields {
  margin: 25px 0 0;
}
form .inner .signatures {
  margin: 25px 0 0;
}
form .inner .signatures .signature-element {
  display: flex;
  column-gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  user-select: none;
  cursor: pointer;
}
form .inner .signatures .signature-element .square {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  margin: 3px 0 0;
  border-radius: 3px;
  border: 1px solid var(--gray-n3-color);
}
form .inner .signatures .signature-element p {
  color: var(--gray-n3-color);
}
form .inner .signatures .signature-element p a {
  color: var(--gray-n3-color);
  text-decoration: underline;
}
form .inner .signatures .signature-element.error .square {
  border-color: var(--error-color);
}
form .inner .signatures .signature-element.active .square {
  background: var(--theme-color);
  border-color: var(--gray-n3-color);
}
form .inner .signatures .signature-element + .signature-element {
  margin: 6px 0 0;
}
form .inner .promo-code {
  margin: 65px 0 0;
}
form .inner .promo-code .field {
  position: relative;
  display: flex;
  column-gap: 16px;
  width: 100%;
  align-items: center;
}
form .inner .promo-code .field .like-label {
  display: table;
  font-size: 14px;
  line-height: 100%;
  margin: 0 0 14px;
  color: var(--gray-n3-color);
}
form .inner .promo-code .field input,
form .inner .promo-code .field select,
form .inner .promo-code .field textarea,
form .inner .promo-code .field .credit-input,
form .inner .promo-code .field .css-13cymwt-control {
  background: var(--white-color);
  width: 100%;
  max-width: 320px;
  font-size: 16px;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  color: var(--black-color);
}
form .inner .promo-code .field input::-webkit-input-placeholder,
form .inner .promo-code .field select::-webkit-input-placeholder,
form .inner .promo-code .field textarea::-webkit-input-placeholder,
form .inner .promo-code .field .credit-input::-webkit-input-placeholder,
form .inner .promo-code .field .css-13cymwt-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .promo-code .field input::-moz-placeholder,
form .inner .promo-code .field select::-moz-placeholder,
form .inner .promo-code .field textarea::-moz-placeholder,
form .inner .promo-code .field .credit-input::-moz-placeholder,
form .inner .promo-code .field .css-13cymwt-control::-moz-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .promo-code .field input:-ms-input-placeholder,
form .inner .promo-code .field select:-ms-input-placeholder,
form .inner .promo-code .field textarea:-ms-input-placeholder,
form .inner .promo-code .field .credit-input:-ms-input-placeholder,
form .inner .promo-code .field .css-13cymwt-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .promo-code .field input:-moz-placeholder,
form .inner .promo-code .field select:-moz-placeholder,
form .inner .promo-code .field textarea:-moz-placeholder,
form .inner .promo-code .field .credit-input:-moz-placeholder,
form .inner .promo-code .field .css-13cymwt-control:-moz-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
form .inner .promo-code .field input.error,
form .inner .promo-code .field select.error,
form .inner .promo-code .field textarea.error,
form .inner .promo-code .field .credit-input.error,
form .inner .promo-code .field .css-13cymwt-control.error {
  border-color: var(--error-color);
}
form .inner .promo-code .field input[readonly],
form .inner .promo-code .field select[readonly],
form .inner .promo-code .field textarea[readonly],
form .inner .promo-code .field .credit-input[readonly],
form .inner .promo-code .field .css-13cymwt-control[readonly] {
  background: #ccc;
}
form .inner .promo-code .field input,
form .inner .promo-code .field select,
form .inner .promo-code .field .credit-input {
  height: 60px;
  padding: 0 20px;
}
form .inner .promo-code .field .credit-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: text;
}
form .inner .promo-code .field .credit-input .__PrivateStripeElement {
  width: 100%;
}
form .inner .promo-code .field select {
  appearance: none;
  cursor: pointer;
}
form .inner .promo-code .field textarea {
  resize: none;
  padding: 15px 20px;
  min-height: 280px;
}
form .inner .promo-code .field .icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  z-index: 2;
}
form .inner .promo-code .field .checkboxes {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
}
form .inner .promo-code .field .checkboxes label {
  display: flex;
  width: 33.3333333333%;
  align-items: center;
  user-select: none;
  pointer-events: none;
}
form .inner .promo-code .field .checkboxes label input {
  width: 12px;
  height: 12px;
  margin: 0;
  pointer-events: initial;
  cursor: pointer;
}
form .inner .promo-code .field .checkboxes label span {
  font-size: 14px;
  line-height: 100%;
  padding-left: 6px;
  color: var(--gray-n3-color);
  pointer-events: initial;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  form .inner .promo-code .field .checkboxes label {
    width: 50%;
  }
}
@media screen and (max-width: 540px) {
  form .inner .promo-code .field .checkboxes label {
    width: 100%;
  }
}
form .inner .promo-code .field .inner-field-notice {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  padding: 0 19px;
  font-size: 12px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
form .inner .promo-code .field .counter {
  display: flex;
  width: 100%;
  margin: 4px 0 0;
  align-items: center;
  justify-content: space-between;
}
form .inner .promo-code .field .counter .min,
form .inner .promo-code .field .counter .total {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
form .inner .promo-code .field .counter .min span,
form .inner .promo-code .field .counter .total span {
  font-size: 14px;
  line-height: 100%;
}
form .inner .promo-code .field .counter .min span i,
form .inner .promo-code .field .counter .total span i {
  font-style: initial;
}
@media screen and (max-width: 680px) {
  form .inner .promo-code .field .counter {
    align-items: flex-start;
  }
  form .inner .promo-code .field .counter .total {
    width: fit-content;
    flex-wrap: wrap;
  }
  form .inner .promo-code .field .counter .total span {
    width: 100%;
    text-align: right;
    white-space: nowrap;
  }
}
@media screen and (max-width: 600px) {
  form .inner .promo-code .field .counter {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  form .inner .promo-code .field .counter .min {
    width: 100%;
  }
  form .inner .promo-code .field .counter .total {
    row-gap: 4px;
    flex-wrap: wrap;
    width: 100%;
  }
  form .inner .promo-code .field .counter .total span {
    width: 100%;
    text-align: left;
  }
}
form .inner .promo-code .field.split {
  width: calc(50% - 6px);
}
form .inner .promo-code .field > span {
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  form .inner .promo-code .field.split {
    width: 100%;
  }
  form .inner .promo-code .field.mobile-margin {
    margin-top: 16px;
  }
}
@media screen and (max-width: 506px) {
  form .inner .promo-code .field.mobile-margin {
    margin-top: 26px;
  }
}
form .inner .price-resume {
  margin: 65px 0 0;
}
form .inner .price-resume ul {
  width: 100%;
  max-width: 380px;
}
form .inner .price-resume ul li {
  width: 50%;
}
form .inner .price-resume ul li span {
  display: inline-block;
  font-size: 16px;
}
form .inner .price-resume ul li span:nth-child(1) {
  width: 100px;
  font-weight: 600;
}
form .inner .price-resume ul li + li {
  margin: 6px 0 0;
}
form .inner .price-resume ul li:nth-last-child(2) span, form .inner .price-resume ul li:nth-last-child(3) span, form .inner .price-resume ul li.promo span {
  font-size: 12px;
}
form .inner .price-resume ul li:last-child {
  margin: 16px 0 0;
}
form .inner .payment-method {
  display: none;
  margin: 65px 0 0;
}
form .inner .payment-method .inner-method .items {
  border-bottom: 1px solid var(--gray-n5-color);
}
form .inner .payment-method .inner-method .items .item {
  border-top: 1px solid var(--gray-n5-color);
}
form .inner .payment-method .inner-method .items .item .thead {
  padding: 20px;
  cursor: pointer;
}
form .inner .payment-method .inner-method .items .item .thead .inner {
  display: flex;
  column-gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
form .inner .payment-method .inner-method .items .item .thead .inner .dot {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid var(--gray-n3-color);
}
form .inner .payment-method .inner-method .items .item .tbody {
  height: 0;
  overflow: hidden;
}
form .inner .payment-method .inner-method .items .item .tbody .inner {
  padding: 0 0 40px;
}
form .inner .payment-method .inner-method .items .item.active .thead .inner .dot {
  background: var(--theme-color);
}
form .inner .payment-method .inner-method .items .item.active .tbody {
  height: auto;
}
form .inner .buttons {
  margin: 40px 0 0;
}

.section-infos {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
.section-infos .container .trust {
  text-align: center;
}
.section-infos .container .trust h2 {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.section-infos .container .trust .list {
  display: grid;
  margin: 35px 0 0;
  grid-row-gap: 12px;
  grid-column-gap: 12px;
  grid-template-columns: repeat(6, 1fr);
}
.section-infos .container .trust .list .img-container {
  background: none;
}
.section-infos .container .trust .list .img-container .inner-img {
  width: auto;
  height: auto;
}
.section-infos .container .trust .list .img-container .inner-img img,
.section-infos .container .trust .list .img-container .inner-img .img {
  display: table;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70px;
  margin: 0 auto;
}
.section-infos .container .trust + .available {
  margin: 120px 0 0;
}
.section-infos .container .available {
  text-align: center;
}
.section-infos .container .available h2 {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--black-color);
}
.section-infos .container .available h2 span {
  color: var(--theme-color);
}
.section-infos .container .available rwp-wrap {
  width: 100%;
  max-width: 1092px;
  margin: 35px auto 0;
}
.section-infos .container .available rwp-wrap p {
  color: var(--gray-n3-color);
}
.section-infos .container .available rwp-wrap p a {
  color: var(--gray-n3-color);
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .section-infos .container .trust .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 540px) {
  .section-infos .container .trust {
    text-align: left;
  }
  .section-infos .container .trust .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-infos .container .available {
    text-align: left;
  }
}

#popup-add-portfolio-item {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 80px 20px;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#popup-add-portfolio-item .popup-box {
  background: var(--white-color);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  padding: 20px;
}
#popup-add-portfolio-item .popup-box form .inner .fields .field input[type=file] {
  height: auto;
  border: none;
  border-radius: 0;
  margin: 20px 0 0;
  padding: 0;
}

#quotes-panel,
#quote-panel,
#discussion-panel {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 60px clamp(20px, 7.4074074074vw, 40px);
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
}
#quotes-panel .box,
#quote-panel .box,
#discussion-panel .box {
  background: var(--white-color);
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 846px;
  padding: 0 0 40px;
  border-radius: 20px;
  scrollbar-width: auto;
  overflow-y: scroll;
}
#quotes-panel .box > .top,
#quote-panel .box > .top,
#discussion-panel .box > .top {
  background: var(--theme-color);
  position: sticky;
  display: flex;
  row-gap: 16px;
  column-gap: 16px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px clamp(20px, 7.4074074074vw, 40px) 35px;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 2;
}
#quotes-panel .box > .top .contents h2,
#quote-panel .box > .top .contents h2,
#discussion-panel .box > .top .contents h2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white-color);
  text-transform: uppercase;
}
#quotes-panel .box > .top .contents h2 small,
#quote-panel .box > .top .contents h2 small,
#discussion-panel .box > .top .contents h2 small {
  display: table;
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 100%;
  color: var(--white-color);
  text-transform: initial;
}
#quotes-panel .box > .top span,
#quote-panel .box > .top span,
#discussion-panel .box > .top span {
  font-size: 16px;
  line-height: 100%;
  color: var(--white-color);
  padding: 5px 0 5px 5px;
  cursor: pointer;
}
@media screen and (max-width: 680px) {
  #quotes-panel .box > .top,
  #quote-panel .box > .top,
  #discussion-panel .box > .top {
    flex-wrap: wrap;
  }
  #quotes-panel .box > .top .contents,
  #quote-panel .box > .top .contents,
  #discussion-panel .box > .top .contents {
    order: 1;
    width: 100%;
  }
  #quotes-panel .box > .top span,
  #quote-panel .box > .top span,
  #discussion-panel .box > .top span {
    order: 0;
  }
}
@media screen and (pointer: coarse), (pointer: none), (max-height: 700px) {
  #quotes-panel .box > .top,
  #quote-panel .box > .top,
  #discussion-panel .box > .top {
    position: relative;
  }
}
#quotes-panel .box .table,
#quote-panel .box .table,
#discussion-panel .box .table {
  padding: 40px clamp(20px, 7.4074074074vw, 40px) 0;
}
#quotes-panel .box .table .heading,
#quote-panel .box .table .heading,
#discussion-panel .box .table .heading {
  display: flex;
  margin: 0 0 8px;
  align-items: flex-end;
}
#quotes-panel .box .table .heading .col span,
#quote-panel .box .table .heading .col span,
#discussion-panel .box .table .heading .col span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#quotes-panel .box .table .heading .col:nth-child(1),
#quote-panel .box .table .heading .col:nth-child(1),
#discussion-panel .box .table .heading .col:nth-child(1) {
  width: 60%;
}
#quotes-panel .box .table .heading .col:nth-child(2),
#quote-panel .box .table .heading .col:nth-child(2),
#discussion-panel .box .table .heading .col:nth-child(2) {
  width: 25%;
}
#quotes-panel .box .table .heading .col:nth-child(3),
#quote-panel .box .table .heading .col:nth-child(3),
#discussion-panel .box .table .heading .col:nth-child(3) {
  width: 15%;
}
#quotes-panel .box .table .list,
#quote-panel .box .table .list,
#discussion-panel .box .table .list {
  border-top: 1px solid var(--gray-n5-color);
  border-bottom: 1px solid var(--gray-n5-color);
}
#quotes-panel .box .table .list .item,
#quote-panel .box .table .list .item,
#discussion-panel .box .table .list .item {
  padding: 13px 0 15px;
}
#quotes-panel .box .table .list .item .top,
#quote-panel .box .table .list .item .top,
#discussion-panel .box .table .list .item .top {
  display: flex;
  align-items: center;
}
#quotes-panel .box .table .list .item .top .col > span,
#quote-panel .box .table .list .item .top .col > span,
#discussion-panel .box .table .list .item .top .col > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(1),
#quote-panel .box .table .list .item .top .col:nth-child(1),
#discussion-panel .box .table .list .item .top .col:nth-child(1) {
  width: 60%;
}
#quotes-panel .box .table .list .item .top .col:nth-child(1) > span,
#quote-panel .box .table .list .item .top .col:nth-child(1) > span,
#discussion-panel .box .table .list .item .top .col:nth-child(1) > span {
  font-size: 16px;
  font-weight: 700;
}
#quotes-panel .box .table .list .item .top .col:nth-child(1) .links,
#quote-panel .box .table .list .item .top .col:nth-child(1) .links,
#discussion-panel .box .table .list .item .top .col:nth-child(1) .links {
  display: flex;
  column-gap: 12px;
  margin: 4px 0 0;
}
#quotes-panel .box .table .list .item .top .col:nth-child(1) .links a,
#quotes-panel .box .table .list .item .top .col:nth-child(1) .links span,
#quote-panel .box .table .list .item .top .col:nth-child(1) .links a,
#quote-panel .box .table .list .item .top .col:nth-child(1) .links span,
#discussion-panel .box .table .list .item .top .col:nth-child(1) .links a,
#discussion-panel .box .table .list .item .top .col:nth-child(1) .links span {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#quotes-panel .box .table .list .item .top .col:nth-child(1) .links a,
#quote-panel .box .table .list .item .top .col:nth-child(1) .links a,
#discussion-panel .box .table .list .item .top .col:nth-child(1) .links a {
  color: var(--gray-n4-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(1) .links span,
#quote-panel .box .table .list .item .top .col:nth-child(1) .links span,
#discussion-panel .box .table .list .item .top .col:nth-child(1) .links span {
  color: var(--theme-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(2),
#quote-panel .box .table .list .item .top .col:nth-child(2),
#discussion-panel .box .table .list .item .top .col:nth-child(2) {
  width: 25%;
}
#quotes-panel .box .table .list .item .top .col:nth-child(3),
#quote-panel .box .table .list .item .top .col:nth-child(3),
#discussion-panel .box .table .list .item .top .col:nth-child(3) {
  display: flex;
  column-gap: 5px;
  width: 15%;
  align-items: center;
  justify-content: flex-start;
}
#quotes-panel .box .table .list .item .top .col:nth-child(3) .point,
#quote-panel .box .table .list .item .top .col:nth-child(3) .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3) .point {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 100%;
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).open .point, #quotes-panel .box .table .list .item .top .col:nth-child(3).accepted .point,
#quote-panel .box .table .list .item .top .col:nth-child(3).open .point,
#quote-panel .box .table .list .item .top .col:nth-child(3).accepted .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3).open .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3).accepted .point {
  background: var(--open-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).open span, #quotes-panel .box .table .list .item .top .col:nth-child(3).accepted span,
#quote-panel .box .table .list .item .top .col:nth-child(3).open span,
#quote-panel .box .table .list .item .top .col:nth-child(3).accepted span,
#discussion-panel .box .table .list .item .top .col:nth-child(3).open span,
#discussion-panel .box .table .list .item .top .col:nth-child(3).accepted span {
  color: var(--open-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).closed .point, #quotes-panel .box .table .list .item .top .col:nth-child(3).denied .point,
#quote-panel .box .table .list .item .top .col:nth-child(3).closed .point,
#quote-panel .box .table .list .item .top .col:nth-child(3).denied .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3).closed .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3).denied .point {
  background: var(--closed-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).closed span, #quotes-panel .box .table .list .item .top .col:nth-child(3).denied span,
#quote-panel .box .table .list .item .top .col:nth-child(3).closed span,
#quote-panel .box .table .list .item .top .col:nth-child(3).denied span,
#discussion-panel .box .table .list .item .top .col:nth-child(3).closed span,
#discussion-panel .box .table .list .item .top .col:nth-child(3).denied span {
  color: var(--closed-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).assigned .point, #quotes-panel .box .table .list .item .top .col:nth-child(3).read .point,
#quote-panel .box .table .list .item .top .col:nth-child(3).assigned .point,
#quote-panel .box .table .list .item .top .col:nth-child(3).read .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3).assigned .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3).read .point {
  background: var(--theme-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).assigned span, #quotes-panel .box .table .list .item .top .col:nth-child(3).read span,
#quote-panel .box .table .list .item .top .col:nth-child(3).assigned span,
#quote-panel .box .table .list .item .top .col:nth-child(3).read span,
#discussion-panel .box .table .list .item .top .col:nth-child(3).assigned span,
#discussion-panel .box .table .list .item .top .col:nth-child(3).read span {
  color: var(--theme-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).unread .point,
#quote-panel .box .table .list .item .top .col:nth-child(3).unread .point,
#discussion-panel .box .table .list .item .top .col:nth-child(3).unread .point {
  background: var(--gray-n4-color);
}
#quotes-panel .box .table .list .item .top .col:nth-child(3).unread span,
#quote-panel .box .table .list .item .top .col:nth-child(3).unread span,
#discussion-panel .box .table .list .item .top .col:nth-child(3).unread span {
  color: var(--gray-n3-color);
}
#quotes-panel .box .table .list .item + .item,
#quote-panel .box .table .list .item + .item,
#discussion-panel .box .table .list .item + .item {
  border-top: 1px solid var(--gray-n5-color);
}
#quotes-panel .box .table .list .no-item,
#quote-panel .box .table .list .no-item,
#discussion-panel .box .table .list .no-item {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#quotes-panel .box::-webkit-scrollbar,
#quote-panel .box::-webkit-scrollbar,
#discussion-panel .box::-webkit-scrollbar {
  display: initial;
  width: 8px;
}
#quotes-panel .box::-webkit-scrollbar-thumb,
#quote-panel .box::-webkit-scrollbar-thumb,
#discussion-panel .box::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}
#quotes-panel .box::-webkit-scrollbar-track,
#quote-panel .box::-webkit-scrollbar-track,
#discussion-panel .box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

#quote-panel {
  z-index: 101;
}
#quote-panel .box > .top .contents h2 small {
  /*i{
  	font-weight: 400;
  	font-style: initial;
  }
  &:nth-last-child(2){
  	margin: 12px 0 0;
  }
  &:nth-last-child(1){
  	margin: 6px 0 0;
  }*/
}
#quote-panel .box > .top .contents ul {
  margin: 12px 0 25px;
}
#quote-panel .box > .top .contents ul li span {
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white-color);
}
#quote-panel .box > .top .contents ul li span i {
  font-weight: 400;
  font-style: initial;
}
#quote-panel .box > .top .contents ul li + li {
  margin: 6px 0 0;
}
#quote-panel .box .view {
  padding: 40px clamp(20px, 7.4074074074vw, 40px) 0;
}
#quote-panel .box .view h1, #quote-panel .box .view h2, #quote-panel .box .view h3, #quote-panel .box .view h4, #quote-panel .box .view h5, #quote-panel .box .view h6 {
  font-size: 16px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
#quote-panel .box .view rwp-wrap h1, #quote-panel .box .view rwp-wrap h2, #quote-panel .box .view rwp-wrap h3, #quote-panel .box .view rwp-wrap h4, #quote-panel .box .view rwp-wrap h5, #quote-panel .box .view rwp-wrap h6 {
  display: table;
  margin-bottom: 25px;
  color: var(--gray-n3-color);
}
#quote-panel .box .view rwp-wrap h1 + p, #quote-panel .box .view rwp-wrap h1 + ul, #quote-panel .box .view rwp-wrap h1 + ol, #quote-panel .box .view rwp-wrap h1 + h1, #quote-panel .box .view rwp-wrap h1 + h2, #quote-panel .box .view rwp-wrap h1 + h3, #quote-panel .box .view rwp-wrap h1 + h4, #quote-panel .box .view rwp-wrap h1 + h5, #quote-panel .box .view rwp-wrap h1 + h6, #quote-panel .box .view rwp-wrap h2 + p, #quote-panel .box .view rwp-wrap h2 + ul, #quote-panel .box .view rwp-wrap h2 + ol, #quote-panel .box .view rwp-wrap h2 + h1, #quote-panel .box .view rwp-wrap h2 + h2, #quote-panel .box .view rwp-wrap h2 + h3, #quote-panel .box .view rwp-wrap h2 + h4, #quote-panel .box .view rwp-wrap h2 + h5, #quote-panel .box .view rwp-wrap h2 + h6, #quote-panel .box .view rwp-wrap h3 + p, #quote-panel .box .view rwp-wrap h3 + ul, #quote-panel .box .view rwp-wrap h3 + ol, #quote-panel .box .view rwp-wrap h3 + h1, #quote-panel .box .view rwp-wrap h3 + h2, #quote-panel .box .view rwp-wrap h3 + h3, #quote-panel .box .view rwp-wrap h3 + h4, #quote-panel .box .view rwp-wrap h3 + h5, #quote-panel .box .view rwp-wrap h3 + h6, #quote-panel .box .view rwp-wrap h4 + p, #quote-panel .box .view rwp-wrap h4 + ul, #quote-panel .box .view rwp-wrap h4 + ol, #quote-panel .box .view rwp-wrap h4 + h1, #quote-panel .box .view rwp-wrap h4 + h2, #quote-panel .box .view rwp-wrap h4 + h3, #quote-panel .box .view rwp-wrap h4 + h4, #quote-panel .box .view rwp-wrap h4 + h5, #quote-panel .box .view rwp-wrap h4 + h6, #quote-panel .box .view rwp-wrap h5 + p, #quote-panel .box .view rwp-wrap h5 + ul, #quote-panel .box .view rwp-wrap h5 + ol, #quote-panel .box .view rwp-wrap h5 + h1, #quote-panel .box .view rwp-wrap h5 + h2, #quote-panel .box .view rwp-wrap h5 + h3, #quote-panel .box .view rwp-wrap h5 + h4, #quote-panel .box .view rwp-wrap h5 + h5, #quote-panel .box .view rwp-wrap h5 + h6, #quote-panel .box .view rwp-wrap h6 + p, #quote-panel .box .view rwp-wrap h6 + ul, #quote-panel .box .view rwp-wrap h6 + ol, #quote-panel .box .view rwp-wrap h6 + h1, #quote-panel .box .view rwp-wrap h6 + h2, #quote-panel .box .view rwp-wrap h6 + h3, #quote-panel .box .view rwp-wrap h6 + h4, #quote-panel .box .view rwp-wrap h6 + h5, #quote-panel .box .view rwp-wrap h6 + h6 {
  margin-top: 20px;
}
#quote-panel .box .view rwp-wrap p {
  color: var(--gray-n3-color);
}
#quote-panel .box .view rwp-wrap p + p, #quote-panel .box .view rwp-wrap p + ul, #quote-panel .box .view rwp-wrap p + ol {
  margin-top: 20px;
}
#quote-panel .box .view rwp-wrap p + h1, #quote-panel .box .view rwp-wrap p + h2, #quote-panel .box .view rwp-wrap p + h3, #quote-panel .box .view rwp-wrap p + h4, #quote-panel .box .view rwp-wrap p + h5, #quote-panel .box .view rwp-wrap p + h6 {
  margin-top: 35px;
}
#quote-panel .box .view rwp-wrap ul,
#quote-panel .box .view rwp-wrap ol {
  padding-left: 20px;
  list-style: initial;
}
#quote-panel .box .view rwp-wrap ul li,
#quote-panel .box .view rwp-wrap ol li {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#quote-panel .box .view rwp-wrap ul + p, #quote-panel .box .view rwp-wrap ul + ul, #quote-panel .box .view rwp-wrap ul + ol,
#quote-panel .box .view rwp-wrap ol + p,
#quote-panel .box .view rwp-wrap ol + ul,
#quote-panel .box .view rwp-wrap ol + ol {
  margin-top: 20px;
}
#quote-panel .box .view rwp-wrap ul + h1, #quote-panel .box .view rwp-wrap ul + h2, #quote-panel .box .view rwp-wrap ul + h3, #quote-panel .box .view rwp-wrap ul + h4, #quote-panel .box .view rwp-wrap ul + h5, #quote-panel .box .view rwp-wrap ul + h6,
#quote-panel .box .view rwp-wrap ol + h1,
#quote-panel .box .view rwp-wrap ol + h2,
#quote-panel .box .view rwp-wrap ol + h3,
#quote-panel .box .view rwp-wrap ol + h4,
#quote-panel .box .view rwp-wrap ol + h5,
#quote-panel .box .view rwp-wrap ol + h6 {
  margin-top: 35px;
}
#quote-panel .box .view .buttons {
  margin: 35px 0 0;
}
#quote-panel:not(.user-quote) {
  background: none;
}

#discussion-panel {
  display: none;
}
#discussion-panel .box .view {
  padding: 40px clamp(20px, 7.4074074074vw, 40px) 0;
}
#discussion-panel .box .view .messages {
  margin: 0 0 35px;
}
#discussion-panel .box .view .messages .message .text {
  padding: 20px;
  border-radius: 10px;
}
#discussion-panel .box .view .messages .message .text p {
  font-size: 16px;
}
#discussion-panel .box .view .messages .message .text p + p {
  margin: 25px 0 0;
}
#discussion-panel .box .view .messages .message > span {
  display: table;
  margin: 4px 10px 0 auto;
  font-size: 14px;
  color: var(--black-color);
}
#discussion-panel .box .view .messages .message.me .text {
  background: var(--theme-color);
}
#discussion-panel .box .view .messages .message.me .text p {
  color: var(--white-color);
}
#discussion-panel .box .view .messages .message.not-me .text {
  background: var(--gray-n5-color);
}
#discussion-panel .box .view .messages .message.not-me .text p {
  color: var(--black-color);
}
#discussion-panel .box .view .messages .message + .message {
  margin: 22px 0 0;
}
#discussion-panel .box .view .form-message {
  margin: 0 0 6px;
}
#discussion-panel .box .view form .counter {
  display: flex;
  width: 100%;
  margin: 4px 0 0;
  align-items: center;
  justify-content: space-between;
}
#discussion-panel .box .view form .counter .min,
#discussion-panel .box .view form .counter .total {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
#discussion-panel .box .view form .counter .min span,
#discussion-panel .box .view form .counter .total span {
  font-size: 14px;
  line-height: 100%;
}
#discussion-panel .box .view form .counter .min span i,
#discussion-panel .box .view form .counter .total span i {
  font-style: initial;
}
@media screen and (max-width: 680px) {
  #discussion-panel .box .view form .counter {
    align-items: flex-start;
  }
  #discussion-panel .box .view form .counter .total {
    width: fit-content;
    flex-wrap: wrap;
  }
  #discussion-panel .box .view form .counter .total span {
    width: 100%;
    text-align: right;
    white-space: nowrap;
  }
}
@media screen and (max-width: 600px) {
  #discussion-panel .box .view form .counter {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  #discussion-panel .box .view form .counter .min {
    width: 100%;
  }
  #discussion-panel .box .view form .counter .total {
    row-gap: 4px;
    flex-wrap: wrap;
    width: 100%;
  }
  #discussion-panel .box .view form .counter .total span {
    width: 100%;
    text-align: left;
  }
}
#discussion-panel .box .view form > .btn {
  margin: 15px 0 0 auto;
}
#discussion-panel .box::-webkit-scrollbar {
  display: initial;
  width: 8px;
}
#discussion-panel .box::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}
#discussion-panel .box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

#notices-panel {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: flex-end;
  justify-content: center;
  z-index: 105;
}
#notices-panel .notices {
  width: 100%;
  padding: 20px 0;
  max-width: 540px;
}
#notices-panel .notices .notice {
  background: var(--white-color);
  display: flex;
  border-radius: 10px;
  align-items: center;
  overflow: hidden;
}
#notices-panel .notices .notice .contents {
  width: 100%;
  padding: 20px;
}
#notices-panel .notices .notice .contents .inner-contents span {
  font-size: 16px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#notices-panel .notices .notice .close {
  background: var(--theme-color);
  display: flex;
  padding: 10px;
  width: 60px;
  height: auto;
  flex: 0 0 60px;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#notices-panel .notices .notice .close svg {
  width: auto;
  height: 32px;
}
#notices-panel .notices .notice .close svg path {
  fill: var(--white-color);
}
#notices-panel .notices .notice + .notice {
  margin: 8px 0 0;
}

.cant-because {
  background: var(--theme-color);
  position: absolute;
  display: flex;
  top: 0;
  left: 50%;
  padding: clamp(20px, 7.4074074074vw, 40px) clamp(20px, 6.4814814815vw, 35px);
  width: 100%;
  height: auto;
  min-height: 115px;
  border-radius: 10px;
  transform: translate(-50%, 0);
  align-items: center;
  justify-content: center;
}
.cant-because p {
  font-size: 16px;
  line-height: 100%;
  color: var(--white-color);
  text-align: center;
}

#default__intro {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#default__intro .container {
  max-width: 1092px;
}
#default__intro .container .contents .inner-contents .uptitle {
  display: table;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
}
#default__intro .container .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
#default__intro .container .contents .inner-contents .subtitle {
  display: table;
  margin: 0 auto;
  font-size: 16px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#default__view {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#default__view .container .contents .inner-contents rwp-wrap h2 {
  margin-bottom: 10px;
}
#default__view .container .contents .inner-contents rwp-wrap h2:not(:first-child) {
  margin-top: 45px;
}
#default__view .container .contents .inner-contents rwp-wrap p a,
#default__view .container .contents .inner-contents rwp-wrap ul a,
#default__view .container .contents .inner-contents rwp-wrap ol a {
  color: var(--theme-color);
  text-decoration: underline;
}
#default__view .container .contents .inner-contents rwp-wrap p + p, #default__view .container .contents .inner-contents rwp-wrap p + ul, #default__view .container .contents .inner-contents rwp-wrap p + ol,
#default__view .container .contents .inner-contents rwp-wrap ul + p,
#default__view .container .contents .inner-contents rwp-wrap ul + ul,
#default__view .container .contents .inner-contents rwp-wrap ul + ol,
#default__view .container .contents .inner-contents rwp-wrap ol + p,
#default__view .container .contents .inner-contents rwp-wrap ol + ul,
#default__view .container .contents .inner-contents rwp-wrap ol + ol {
  margin: 25px 0 0;
}

#first-jump-panel {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}
#first-jump-panel .box {
  background: var(--white-color);
  border-top: 40px solid var(--theme-color);
  width: 100%;
  padding: 40px 20px;
  max-width: 540px;
  border-radius: 20px;
}
#first-jump-panel .box .message {
  width: 100%;
  margin: 0 auto;
  max-width: 440px;
}
#first-jump-panel .box .message h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
}
#first-jump-panel .box .message p,
#first-jump-panel .box .message ul li {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#first-jump-panel .box .message p a,
#first-jump-panel .box .message ul li a {
  text-decoration: underline;
  color: var(--gray-n3-color);
}
#first-jump-panel .box .message p + p, #first-jump-panel .box .message p + ul {
  margin-top: 20px;
}
#first-jump-panel .box .message ul {
  list-style: initial;
  padding: 0 0 0 20px;
}
#first-jump-panel .box .message ul li + li {
  margin: 12px 0 0;
}
#first-jump-panel .box .message ul + p, #first-jump-panel .box .message ul + ul {
  margin-top: 20px;
}
#first-jump-panel .box .message .btn {
  margin: 35px 0 0;
}

.rsw-editor {
  background: var(--white-color);
  position: relative;
  border: 1px solid var(--gray-n3-color) !important;
}
.rsw-editor .rsw-toolbar {
  background-color: var(--gray-n5-color) !important;
}
.rsw-editor .rsw-toolbar .rsw-btn svg path {
  fill: var(--black-color);
}
.rsw-editor .rsw-ce {
  border-radius: 10px !important;
  padding: 15px 20px 80px !important;
  min-height: 320px;
  font-size: 16px;
  line-height: 100%;
}
.rsw-editor .rsw-ce ul {
  list-style: disc;
  padding-left: 2em;
}
.rsw-editor .rsw-ce ol {
  list-style: decimal;
  padding-left: 2em;
}
.rsw-editor .rsw-ce:focus {
  outline: none !important;
}
.rsw-editor .counter {
  background: var(--gray-n3-color);
  position: absolute;
  display: flex;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
}
.rsw-editor .counter .left {
  width: fit-content;
}
.rsw-editor .counter .left span {
  font-size: 12px;
  line-height: 100%;
  color: var(--white-color);
}
.rsw-editor .counter .right {
  display: flex;
  column-gap: 12px;
  width: fit-content;
  align-items: center;
  justify-content: flex-end;
}
.rsw-editor .counter .right span {
  font-size: 12px;
  line-height: 100%;
  color: var(--white-color);
}
.rsw-editor .counter .right span i {
  font-style: initial;
}
.rsw-editor.error {
  border-color: var(--error-color) !important;
}

.testimonials {
  background: var(--gray-n5-color);
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 60px;
}
.testimonials .container {
  max-width: 1092px;
  text-align: center;
}
.testimonials .container h2 {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.testimonials .container .list {
  display: inline-block;
  width: 100%;
  margin: 55px 0 0;
  padding: 50px 0 0;
  overflow: hidden;
}
.testimonials .container .list .track {
  display: inline-block;
  white-space: nowrap;
}
.testimonials .container .list .track .item {
  background: var(--white-color);
  display: inline-block;
  vertical-align: top;
  white-space: initial;
  border-radius: 20px;
  padding: 0 40px 57px;
  width: 540px;
}
.testimonials .container .list .track .item .inner .img-container {
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10px;
  margin: -50px auto 32px;
  border: 2px solid var(--white-color);
}
.testimonials .container .list .track .item .inner .contents .inner-contents h3 {
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--black-color);
}
.testimonials .container .list .track .item .inner .contents .inner-contents rwp-wrap {
  margin: 23px 0 0;
}
.testimonials .container .list .track .item .inner .contents .inner-contents rwp-wrap p {
  color: var(--gray-n3-color);
}
.testimonials .container .list .track .item .inner .contents .inner-contents rwp-wrap p a {
  color: var(--theme-color);
}
.testimonials .container .list .track .item .inner .contents .inner-contents rwp-wrap p + p {
  margin: 23px 0 0;
}
.testimonials .container .list .track .item + .item {
  margin: 0 0 0 12px;
}
.testimonials .container .navigation {
  display: flex;
  column-gap: 12px;
  margin: 39px 0 0;
  align-items: center;
  justify-content: center;
}
.testimonials .container .navigation .arrow {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  border: 2px solid var(--theme-color);
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.testimonials .container .navigation .arrow svg {
  width: auto;
  height: 16px;
  transform-origin: center center;
}
.testimonials .container .navigation .arrow:nth-child(2) svg {
  transform: rotate(180deg);
}
.testimonials#h__testimonials {
  border-radius: 60px 60px 0 0;
}
@media screen and (orientation: portrait) {
  .testimonials {
    border-radius: 0;
  }
}

/*
* Templates
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 99;
}
header .plywood {
  padding: 20px clamp(20px, 6.4814814815vw, 35px);
  transform: translate(0, -100%);
}
header .plywood .container {
  display: flex;
  column-gap: 35px;
  align-items: center;
  justify-content: space-between;
}
header .plywood .container > a {
  display: inline-flex;
  width: 100%;
  max-width: clamp(90px, 19.3814814815vw, 104.66px);
  pointer-events: initial;
}
header .plywood .container > a svg {
  width: 100%;
  height: auto;
}
header .plywood .container nav {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: initial;
}
header .plywood .container nav > ul {
  display: flex;
  column-gap: 28px;
  align-items: center;
}
header .plywood .container nav > ul > li {
  position: relative;
}
header .plywood .container nav > ul > li a {
  display: flex;
  column-gap: 8px;
  font-size: 16px;
  color: var(--gray-n1-color);
  align-items: center;
  justify-content: flex-start;
  pointer-events: initial;
  white-space: nowrap;
}
header .plywood .container nav > ul > li a svg {
  display: none;
  width: 18px;
  height: auto;
  flex: 0 0 18px;
}
header .plywood .container nav > ul > li:last-child {
  margin-left: -18px;
}
header .plywood .container nav > ul > li:nth-last-child(3) {
  position: relative;
  padding-left: 28px;
}
header .plywood .container nav > ul > li:nth-last-child(3):before {
  background: var(--black-color);
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  width: 1px;
  height: 15px;
  transform: translate(0, -50%);
}
header .plywood .container nav > ul > li#menu-item-239 a, header .plywood .container nav > ul > li#menu-item-240 a, header .plywood .container nav > ul > li#menu-item-241 a, header .plywood .container nav > ul > li#menu-item-249 a {
  background: var(--theme-color);
  display: flex;
  padding: 12px 20px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
header .plywood .container nav > ul > li .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 40px 0 10px;
  pointer-events: none;
}
header .plywood .container nav > ul > li .sub-menu li {
  position: relative;
  z-index: 2;
}
header .plywood .container nav > ul > li .sub-menu li a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  pointer-events: none;
  transition-property: background, color;
  transition-duration: 0.2s, 0.2s;
}
header .plywood .container nav > ul > li .sub-menu li a:hover {
  background: var(--theme-color);
  color: var(--white-color);
}
header .plywood .container nav > ul > li .sub-menu:after {
  background: var(--white-color);
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 30px);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
header .plywood .container nav > ul > li:hover .sub-menu {
  opacity: 1;
  pointer-events: initial;
}
header .plywood .container nav > ul > li:hover .sub-menu li a {
  pointer-events: initial;
}
header .plywood .container nav .ham-menu {
  display: none;
  cursor: pointer;
}
header .plywood .container nav .ham-menu .inner {
  position: relative;
  width: 40px;
  height: 20px;
}
header .plywood .container nav .ham-menu .inner span {
  background: var(--black-color);
  position: absolute;
  left: 50%;
  width: 100%;
  height: 2px;
}
header .plywood .container nav .ham-menu .inner span:nth-child(1) {
  top: 0;
  transform: translate(-50%, 0);
}
header .plywood .container nav .ham-menu .inner span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
header .plywood .container nav .ham-menu .inner span:nth-child(3) {
  bottom: 0;
  transform: translate(-50%, 0);
}
header.force {
  opacity: 0;
}
@media screen and (max-width: 1180px) {
  header .plywood .container nav > ul {
    background: var(--white-color);
    position: fixed;
    display: block;
    top: 0;
    right: clamp(20px, 7.4074074074vw, 40px);
    width: 100%;
    max-width: 280px;
    margin: 120px 0 0;
    padding: 40px clamp(20px, 7.4074074074vw, 40px);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
  }
  header .plywood .container nav > ul > li {
    display: flex;
  }
  header .plywood .container nav > ul > li a {
    pointer-events: none;
  }
  header .plywood .container nav > ul > li:nth-last-child(3) {
    padding: 0;
  }
  header .plywood .container nav > ul > li:nth-last-child(3):before {
    display: none;
  }
  header .plywood .container nav > ul > li:nth-last-child(1) a, header .plywood .container nav > ul > li:nth-last-child(2) a {
    width: 100%;
  }
  header .plywood .container nav > ul > li:last-child {
    margin-left: 0;
  }
  header .plywood .container nav > ul > li + li {
    margin: 12px 0 0;
  }
  header .plywood .container nav > ul > li:nth-last-child(2) {
    margin: 25px 0 0;
  }
  header .plywood .container nav > ul > li#menu-item-236 > a, header .plywood .container nav > ul > li#menu-item-258 > a {
    display: none;
  }
  header .plywood .container nav > ul > li .sub-menu {
    position: relative;
    top: initial;
    left: initial;
    padding: 0;
    opacity: 1;
  }
  header .plywood .container nav > ul > li .sub-menu li a {
    padding: 0;
    pointer-events: none;
  }
  header .plywood .container nav > ul > li .sub-menu li a:hover {
    background: none;
    color: var(--gray-n1-color);
  }
  header .plywood .container nav > ul > li .sub-menu li + li {
    margin: 12px 0 0;
  }
  header .plywood .container nav > ul > li .sub-menu:after {
    display: none;
  }
  header .plywood .container nav .ham-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#h__intro {
  display: flex;
  min-height: 90.7407407407svh;
  padding-top: clamp(200px, 29.2682926829vw, 240px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  align-items: center;
  justify-content: center;
}
#h__intro .container {
  position: relative;
  z-index: 2;
}
#h__intro .container .contents {
  width: 100%;
  margin: 0 auto;
  max-width: clamp(820px, 101.1111111111svh, 1092px);
  text-align: center;
}
#h__intro .container .contents .inner-contents h1 {
  font-size: clamp(48px, 6.4814814815svh, 70px);
  line-height: clamp(55px, 7.4074074074svh, 80px);
  color: var(--theme-color);
}
#h__intro .container .contents .inner-contents rwp-wrap {
  width: 100%;
  max-width: clamp(670px, 75.9259259259svh, 820px);
  margin: 32px auto 0;
}
#h__intro .container .contents .inner-contents rwp-wrap p {
  font-size: clamp(18px, 2.037037037svh, 22px);
  line-height: clamp(21px, 2.4074074074svh, 26px);
}
#h__intro .container .contents .inner-contents rwp-wrap > a {
  background: var(--theme-color);
  display: block;
  width: fit-content;
  padding: 22px clamp(35px, 7.1951219512vw, 59px);
  margin: 55px auto 0;
  border-radius: 20px;
  text-align: left;
}
#h__intro .container .contents .inner-contents rwp-wrap > a .inner {
  display: flex;
  column-gap: clamp(25px, 2.1354166667vw, 41px);
  align-items: center;
}
#h__intro .container .contents .inner-contents rwp-wrap > a .inner .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
#h__intro .container .contents .inner-contents rwp-wrap > a .inner .icon svg {
  width: auto;
  height: 40px;
}
#h__intro .container .contents .inner-contents rwp-wrap > a .inner .icon svg path {
  fill: var(--white-color);
}
#h__intro .container .contents .inner-contents rwp-wrap > a .inner > span {
  position: relative;
  font-size: clamp(18px, 2.037037037svh, 22px);
  font-weight: 700;
  line-height: clamp(22px, 2.5925925926svh, 28px);
  padding-left: clamp(25px, 2.1354166667vw, 41px);
  color: var(--white-color);
}
#h__intro .container .contents .inner-contents rwp-wrap > a .inner > span span {
  text-transform: uppercase;
}
#h__intro .container .contents .inner-contents rwp-wrap > a .inner > span:before {
  background: var(--white-color);
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  width: 1px;
  height: 100%;
  transform: translate(0, -50%);
  opacity: 0.5;
}
#h__intro .img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 60px 60px;
  z-index: 1;
}
@media screen and (orientation: portrait) {
  #h__intro {
    min-height: 51.0416666667vw;
  }
  #h__intro .container .contents {
    max-width: clamp(820px, 56.875vw, 1092px);
  }
  #h__intro .container .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
  #h__intro .container .contents .inner-contents rwp-wrap {
    max-width: clamp(670px, 42.7083333333vw, 820px);
  }
  #h__intro .container .contents .inner-contents rwp-wrap p {
    font-size: clamp(18px, 1.1458333333vw, 22px);
    line-height: clamp(21px, 1.3541666667vw, 26px);
  }
  #h__intro .container .contents .inner-contents rwp-wrap > a .inner {
    column-gap: clamp(25px, 2.1354166667vw, 41px);
  }
  #h__intro .container .contents .inner-contents rwp-wrap > a .inner > span {
    font-size: clamp(18px, 1.1458333333vw, 22px);
    line-height: clamp(22px, 1.4583333333vw, 28px);
  }
  #h__intro .img-container {
    border-radius: 0;
  }
}
@media screen and (max-width: 820px) {
  #h__intro .container .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
@media screen and (max-width: 540px) {
  #h__intro .container .contents {
    text-align: left;
  }
  #h__intro .container .contents .inner-contents rwp-wrap > a {
    margin-left: initial;
    margin-right: initial;
  }
}
#h__ready-for {
  background: var(--gray-n5-color);
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 60px;
}
#h__ready-for .container {
  text-align: center;
}
#h__ready-for .container h2 {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--theme-color);
}
#h__ready-for .container .list {
  display: grid;
  width: 100%;
  max-width: 1089px;
  margin: 55px auto 0;
  grid-row-gap: 12px;
  grid-column-gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
#h__ready-for .container .list .item {
  background: var(--white-color);
  border-radius: 20px;
  padding-top: 26px;
  padding-bottom: 30px;
}
#h__ready-for .container .list .item .img-container {
  width: 100%;
  max-width: 172px;
  margin: 0 auto 19px;
  aspect-ratio: 1/1;
}
#h__ready-for .container .list .item h3 {
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#h__ready-for .container rwp-wrap {
  max-width: 1092px;
  margin: 61px auto 38px;
}
#h__ready-for .container rwp-wrap p {
  color: var(--gray-n3-color);
}
#h__ready-for .container .btn {
  margin: 0 auto;
}
@media screen and (orientation: portrait) {
  #h__ready-for {
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) {
  #h__ready-for .container .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 820px) {
  #h__ready-for .container .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 540px) {
  #h__ready-for .container {
    text-align: left;
  }
  #h__ready-for .container .list {
    grid-template-columns: 100%;
    text-align: center;
  }
  #h__ready-for .container .btn {
    margin: 0;
  }
}
#h__projects {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#h__projects .container {
  max-width: 1092px;
}
#h__projects .container .top .boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#h__projects .container .top .boxes .box {
  display: flex;
  column-gap: 17px;
  width: calc(50% - 6px);
  height: 100px;
  border: 1px solid var(--gray-n4-color);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
}
#h__projects .container .top .boxes .box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
#h__projects .container .top .boxes .box .icon svg {
  width: 32px;
  height: auto;
}
#h__projects .container .top .boxes .box span {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--black-color);
}
#h__projects .container .top h2 {
  background: var(--theme-color);
  position: relative;
  display: flex;
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  margin: 12px 0 0;
  padding: 18px 20px;
  border-radius: 20px;
  border: 2px solid var(--theme-color);
  transition-property: background, border-color;
  transition-duration: 0.2s, 0.2s;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: var(--white-color);
}
#h__projects .container .bottom {
  display: flex;
  margin: 60px 0 0;
  column-gap: 35px;
  align-items: flex-start;
  justify-content: space-between;
}
#h__projects .container .bottom > .left {
  width: 245px;
  flex: 0 0 245px;
}
#h__projects .container .bottom > .left > span {
  display: table;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 25px;
  color: var(--black-color);
  text-transform: uppercase;
}
#h__projects .container .bottom > .left .filter > div + div {
  margin: 10px 0 0;
}
#h__projects .container .bottom > .left {
  /*ul{
  	margin: 35px 0 0;
  	li{
  		a{
  			font-size: 14px;
  			line-height: 100%;
  			color: var(--gray-n3-color);
  		}
  		& + li{
  			margin: 12px 0 0;
  		}
  	}
  }*/
}
#h__projects .container .bottom > .right {
  width: 100%;
}
#h__projects .container .bottom > .right .list > a {
  background: var(--gray-n5-color);
  display: flex;
  column-gap: 40px;
  border-radius: 20px;
  padding: 10px 10px 10px 40px;
  align-items: center;
  border: 2px solid var(--gray-n5-color);
  justify-content: space-between;
  transition-property: background, border-color;
  transition-duration: 0.2s, 0.2s;
}
#h__projects .container .bottom > .right .list > a .left {
  width: 100%;
}
#h__projects .container .bottom > .right .list > a .left .up {
  display: flex;
  width: 100%;
  column-gap: 11px;
  align-items: center;
  justify-content: flex-start;
}
#h__projects .container .bottom > .right .list > a .left .up h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 0.2s;
}
#h__projects .container .bottom > .right .list > a .left .up .badge {
  transition-property: background;
  transition-duration: 0.2s;
}
#h__projects .container .bottom > .right .list > a .left .up .badge span {
  transition-property: color;
  transition-duration: 0.2s;
}
#h__projects .container .bottom > .right .list > a .left .up .badge.mobile {
  display: none;
}
#h__projects .container .bottom > .right .list > a .left .up > span {
  background: var(--white-color);
  position: relative;
  display: none;
  width: fit-content;
  padding: 5px 11.5px;
  border-radius: 5px;
  margin: 0 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: var(--gray-n3-color);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.2s;
}
#h__projects .container .bottom > .right .list > a .left ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3px;
  margin: 7px 0 0;
  align-items: flex-start;
  justify-content: space-between;
}
#h__projects .container .bottom > .right .list > a .left ul li {
  width: 50%;
}
#h__projects .container .bottom > .right .list > a .left ul li span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
  transition-property: color;
  transition-duration: 0.2s;
}
#h__projects .container .bottom > .right .list > a .left ul li:nth-child(2n+2) {
  padding-left: 36px;
}
#h__projects .container .bottom > .right .list > a .right {
  background: var(--white-color);
  display: flex;
  width: 142px;
  height: 110px;
  flex: 0 0 142px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
#h__projects .container .bottom > .right .list > a .right .inner {
  text-align: center;
}
#h__projects .container .bottom > .right .list > a .right .inner .badge {
  margin: 0 auto 5px;
}
#h__projects .container .bottom > .right .list > a .right .inner > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#h__projects .container .bottom > .right .list > a + a {
  margin: 12px 0 0;
}
#h__projects .container .bottom > .right .list > a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
#h__projects .container .bottom > .right .list > a:hover .left .up h3 {
  color: var(--white-color);
}
#h__projects .container .bottom > .right .list > a:hover .left .up > span {
  color: var(--white-color);
}
#h__projects .container .bottom > .right .list > a:hover .left .badge {
  background: var(--white-color);
}
#h__projects .container .bottom > .right .list > a:hover .left .badge span {
  color: var(--theme-color);
}
#h__projects .container .bottom > .right .list > a:hover .left ul li span {
  color: var(--white-color);
}
#h__projects .container .bottom > .right .list > a.featured {
  border-color: var(--theme-color);
}
#h__projects .container .bottom > .right .buttons {
  margin: 41px 0 0;
  justify-content: flex-end;
}
@media screen and (max-width: 1080px) {
  #h__projects .container .top {
    display: flex;
    flex-wrap: wrap;
  }
  #h__projects .container .top .boxes {
    order: 1;
    width: 100%;
    row-gap: 12px;
    flex-wrap: wrap;
  }
  #h__projects .container .top .boxes .box {
    width: 100%;
  }
  #h__projects .container .top h2 {
    order: 0;
    margin: 0 0 12px;
  }
  #h__projects .container .bottom {
    flex-wrap: wrap;
  }
  #h__projects .container .bottom > .left {
    display: none;
    order: 1;
    width: 100%;
    flex: 0 0 100%;
  }
  #h__projects .container .bottom > .right {
    order: 0;
  }
}
@media screen and (max-width: 820px) {
  #h__projects .container .bottom > .right .list > a {
    padding: 35px clamp(25px, 5.2083333333vw, 40px);
  }
  #h__projects .container .bottom > .right .list > a .left .up {
    flex-wrap: wrap;
  }
  #h__projects .container .bottom > .right .list > a .left .up .badge.mobile {
    display: flex;
  }
  #h__projects .container .bottom > .right .list > a .left .up > span {
    display: initial;
    background: var(--white-color);
  }
  #h__projects .container .bottom > .right .list > a .left ul {
    margin: 18px 0 0;
  }
  #h__projects .container .bottom > .right .list > a .right {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #h__projects .container .bottom > .right .list > a .left .up .badge {
    order: 0;
  }
  #h__projects .container .bottom > .right .list > a .left .up h3 {
    order: 1;
    width: 100%;
    margin: 18px 0 4px;
  }
  #h__projects .container .bottom > .right .list > a .left .up > span {
    background: none;
    order: 2;
    margin: 0;
    font-weight: 400;
    padding: 0;
  }
  #h__projects .container .bottom > .right .list > a .left ul {
    margin: 18px 0 0;
  }
  #h__projects .container .bottom > .right .list > a .right {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  #h__projects .container .bottom > .right .list > a .left ul li {
    width: 100%;
  }
  #h__projects .container .bottom > .right .list > a .left ul li:nth-child(2n+2) {
    padding: 0;
  }
}
@media screen and (max-width: 540px) {
  #h__projects .container .top .boxes .box {
    flex-wrap: wrap;
    padding: 0 15px;
    text-align: center;
    align-content: center;
  }
  #h__projects .container .top .boxes .box .icon svg {
    width: auto;
    height: 30px;
  }
  #h__projects .container .top .boxes .box span {
    width: 100%;
    margin: 8px 0 0;
  }
  #h__projects .container .bottom > .right .buttons {
    justify-content: flex-start;
  }
}
#h__cats {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#h__cats .container {
  text-align: center;
}
#h__cats .container h2 {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--theme-color);
}
#h__cats .container .list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 12px;
  margin: 55px 0 0;
  align-items: flex-start;
  justify-content: center;
}
#h__cats .container .list a {
  display: flex;
  padding: 15px 29px;
  border: 1px solid var(--gray-n4-color);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  color: var(--gray-n3-color);
}
/*#h_{
	&_intro{
		display: flex;
		height: 758px;
		padding-top: 250px;
		padding-bottom: 150px;
		align-items: center;
		.container{
			position: relative;
			z-index: 2;
			.contents{
				text-align: center;
				.inner-contents{
					h1{
						font-size: 32px;
						line-height: 100%;
						color: var(--theme-color);
						text-transform: uppercase;
					}
					rwp-wrap{
						margin: 20px 0 0;
						p{
							font-size: 22px;
							line-height: 140%;
							color: var(--gray-n1-color);
							&:nth-child(1){
								font-weight: 700;
							}
							&:nth-child(2){}
						}
					}
					.buttons{
						margin: 40px auto 0;
						justify-content: center;
					}
				}
			}
		}
		.img-container{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
	}
	&_companies{
		padding-top: 100px;
		.container{
			.contents{
				text-align: center;
				padding: 0 0 20px;
				border-bottom: 1px solid var(--gray-n4-color);
				.inner-contents{
					h2{
						font-size: 17px;
						line-height: 100%;
						text-transform: uppercase;
						color: var(--theme-color);
					}
				}
			}
			.list{
				display: grid;
				margin: 20px auto 0;
				grid-column-gap: 30px;
				grid-template-columns: repeat(6, 1fr);
				.img-container{
					height: auto;
					aspect-ratio: 4 / 3;
					.inner-img{
						img,
						.img{

						}
					}
				}
			}
		}
	}
	&_text{
		padding-top: 100px;
		padding-bottom: 100px;
		.container{
			.contents{
				text-align: center;
				.inner-contents{
					h2{
						font-size: 24px;
						margin: 0 0 25px;
						line-height: 100%;
						color: var(--gray-n1-color);
						text-transform: uppercase;
					}
					rwp-wrap{
						p{
							font-size: 14px;
							line-height: 140%;
							color: var(--gray-n1-color);
							a{
								color: var(--gray-n1-color);
								text-decoration: underline;
							}
						}
					}
				}
			}
		}
	}
	&_find{
		padding-bottom: 100px;
		.container{
			.contents{
				text-align: center;
				.inner-contents{
					h2{
						font-size: 25px;
						line-height: 100%;
						color: var(--theme-color);
						text-transform: uppercase;
					}
					rwp-wrap{
						p{
							font-size: 14px;
							line-height: 140%;
							color: var(--gray-n1-color);
							a{
								text-decoration: underline;
								color: var(--gray-n1-color);
							}
						}
					}
					.buttons{
						margin: 40px auto 0;
						justify-content: center;
					}
				}
			}
			.list{
				background: var(--gray-n4-color);
				display: grid;
				padding: 1px;
				margin: 40px 0 0;
				grid-row-gap: 1px;
				grid-column-gap: 1px;
				grid-template-columns: repeat(4, 1fr);
				.item{
					background: var(--white-color);
					.inner{
						display: flex;
						flex-wrap: wrap;
						height: 225px;
						padding: 20px 0;
						text-align: center;
						align-content: space-between;
						justify-content: center;
						.img-container{
							display: block;
							width: 150px;
							height: auto;
							margin: 0 auto;
							aspect-ratio: 1 / 1;
							.inner-img{
								img,
								.img{

								}
							}
						}
						h3{
							width: 100%;
							font-size: 16px;
							color: var(--gray-n1-color);
							text-transform: uppercase;
							text-align: center;
						}
					}
				}
				& + .contents{
					margin: 35px auto 0;
				}
			}
		}
	}
	&_projects{
		background: var(--gray-n3-color);
		padding-top: 100px;
		padding-bottom: 100px;
		.container{
			display: flex;
			column-gap: 65px;
			align-items: flex-start;
			justify-content: space-between;
			& > .left{
				width: 282px;
				flex: 0 0 282px;
				h2{
					font-size: 17px;
					text-transform: uppercase;
					color: var(--gray-n1-color);
				}
				ul{
					margin: 20px 0 0;
					li{
						a{
							font-size: 14px;
							line-height: 100%;
							color: var(--gray-n1-color);
							text-decoration: underline;
						}
						& + li{
							margin: 5px 0 0;
						}
					}
				}
			}
			& > .right{
				width: 100%;
				& > .top{
					display: flex;
					column-gap: 16px;
					align-items: center;
					justify-content: space-between;
					.item{
						background: var(--white-color);
						padding: 20px;
						width: calc(50% - 8px);
						box-shadow: 0 1px 4px var(--gray-n4-color);
						border-radius: 3px;
						.inner{
							display: flex;
							column-gap: 18px;
							align-items: center;
							justify-content: flex-start;
							.icon{
								display: inline-flex;
								svg{
									width: 20px;
									height: auto;
									path{
										fill: var(--theme-color);
									}
								}
							}
							span{
								font-size: 17px;
								line-height: 100%;
								color: var(--gray-n1-color);
							}
						}
					}
				}
				& > .bottom{
					margin: 40px 0 0;
					h2{
						font-size: 15px;
						line-height: 100%;
						text-transform: uppercase;
						color: var(--gray-n5-color);
					}
					.list{
						display: flex;
						flex-wrap: wrap;
						row-gap: 20px;
						margin: 18px 0 0;
						.item{
							background: var(--white-color);
							width: 100%;
							padding: 20px;
							box-shadow: 0 1px 4px var(--gray-n4-color);
							border-radius: 3px;
							.inner{
								display: flex;
								column-gap: 65px;
								align-items: flex-start;
								justify-content: flex-end;
								.left,
								.middle,
								.right{
									span{
										display: table;
										line-height: 100%;
										& + span{
											margin: 4px 0 0;
										}
									}
								}
								.left{
									margin: 0 auto 0 0;
									h3{
										font-size: 17px;
										line-height: 100%;
										color: var(--theme-color);
										margin: 0 0 6px;
									}
									span{
										font-size: 12px;
										color: var(--gray-n5-color);
										&:nth-child(2){

										}
										&:nth-child(3){

										}
									}
								}
								.middle{
									span{
										font-size: 14px;
										color: var(--black-color);
									}
								}
								.right{
									display: flex;
									flex-wrap: wrap;
									width: 240px;
									flex: 0 0 240px;
									justify-content: flex-end;
									.top{
										display: flex;
										column-gap: 6px;
										width: fit-content;
										margin: 0 0 6px;
										align-items: center;
										justify-content: flex-end;
										.badges{
											display: flex;
											column-gap: 8px;
											align-items: center;
											justify-content: flex-start;
											.badge{
												padding: 6px;
												border-radius: 3px;
												span{
													font-size: 12px;
													line-height: 100%;
													color: var(--white-color);
												}
												&.applied{
													background: var(--theme-color);
												}
												&.new{
													background: var(--theme-color);
												}
												&.open{
													background: var(--open-color);
												}
												&.closed{
													background: var(--closed-color);
												}
											}
										}
										& > span{
											font-size: 14px;
											color: var(--black-color);
										}
									}
									& > span{
										width: 100%;
										font-size: 12px;
										text-align: right;
										color: var(--gray-n5-color);
									}
								}
							}
							&:nth-child(2n + 1){
								&:hover{
									transform: rotate(1deg);
								}
							}
							&:nth-child(2n + 2){
								&:hover{
									transform: rotate(-1deg);
								}
							}
						}
					}
					.buttons{
						margin: 40px 0 0 auto;
						justify-content: flex-end;
					}
				}
			}
		}
	}
}*/
#directory__intro {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#directory__intro .container {
  max-width: 1092px;
}
#directory__intro .container .contents .inner-contents .uptitle {
  display: table;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
}
#directory__intro .container .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
@media screen and (orientation: portrait) {
  #directory__intro .container .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 820px) {
  #directory__intro .container .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
#directory__freelancers {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#directory__freelancers .container h2 {
  width: 100%;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--theme-color);
  text-align: center;
}
#directory__freelancers .container .filter {
  display: flex;
  column-gap: 12px;
  margin: 0 0 clamp(45px, 7.9268292683vw, 65px);
  align-items: flex-start;
}
#directory__freelancers .container .filter .css-b62m3t-container {
  width: calc(25% - 6px);
}
@media screen and (max-width: 860px) {
  #directory__freelancers .container .filter {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
  }
  #directory__freelancers .container .filter .css-b62m3t-container {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 540px) {
  #directory__freelancers .container .filter {
    row-gap: 16px;
  }
  #directory__freelancers .container .filter .css-b62m3t-container {
    width: 100%;
  }
}
#directory__freelancers .container .list {
  display: grid;
  grid-row-gap: 12px;
  grid-column-gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
#directory__freelancers .container .list .item {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
#directory__freelancers .container .list .item .top {
  width: 100%;
}
#directory__freelancers .container .list .item .top .img-container {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
#directory__freelancers .container .list .item .top .img-container .inner-img img,
#directory__freelancers .container .list .item .top .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
  transition-property: transform;
  transition-duration: 0.2s;
}
#directory__freelancers .container .list .item .top .contents {
  width: 100%;
  padding: 20px;
}
#directory__freelancers .container .list .item .top .contents .inner-contents {
  display: flex;
  flex-wrap: wrap;
  min-height: 120px;
  align-content: space-between;
}
#directory__freelancers .container .list .item .top .contents .inner-contents .topper {
  width: 100%;
}
#directory__freelancers .container .list .item .top .contents .inner-contents .topper h3,
#directory__freelancers .container .list .item .top .contents .inner-contents .topper .subtitle {
  font-size: 14px;
  line-height: 100%;
  color: var(--black-color);
}
#directory__freelancers .container .list .item .top .contents .inner-contents .topper .subtitle {
  display: table;
  width: 100%;
  margin: 4px 0 0;
  color: var(--gray-n3-color);
}
#directory__freelancers .container .list .item .top .contents .inner-contents rwp-wrap {
  width: 100%;
  margin: 22px 0 0;
}
#directory__freelancers .container .list .item .top .contents .inner-contents rwp-wrap ul li span {
  display: table;
  font-size: 12px;
  line-height: 140%;
  color: var(--black-color);
}
#directory__freelancers .container .list .item .top .contents .inner-contents rwp-wrap ul li span:nth-child(1) {
  font-weight: 700;
}
#directory__freelancers .container .list .item .quick-links {
  width: 100%;
  padding: 10px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
#directory__freelancers .container .list .item .quick-links ul {
  display: flex;
  width: 100%;
  row-gap: 6px;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
}
#directory__freelancers .container .list .item .quick-links ul li span {
  background: var(--black-color);
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  transition-property: background;
  transition-duration: 0.2s;
}
#directory__freelancers .container .list .item .quick-links ul li span svg {
  width: auto;
  height: 18px;
}
#directory__freelancers .container .list .item .quick-links ul li span svg path {
  fill: var(--white-color);
}
#directory__freelancers .container .list .item .quick-links ul li span:hover {
  background: var(--theme-color);
}
#directory__freelancers .container .list .item:hover .top .img-container .inner-img img,
#directory__freelancers .container .list .item:hover .top .img-container .inner-img .img {
  transform: scale(1.1);
}
@media screen and (max-width: 992px) {
  #directory__freelancers .container .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #directory__freelancers .container .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  #directory__freelancers .container .list {
    grid-template-columns: 100%;
  }
}
#directory__freelancers .container .pagination {
  display: flex;
  width: fit-content;
  margin: 41px 0 0 auto;
  align-items: center;
  justify-content: flex-end;
}
#directory__freelancers .container .pagination .arrow {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#directory__freelancers .container .pagination .arrow svg {
  width: auto;
  height: 22px;
}
#directory__freelancers .container .pagination input {
  width: 40px;
  height: 30px;
  font-size: 16px;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  color: var(--black-color);
  text-align: center;
  appearance: none;
  -moz-appearance: textfield;
}
#directory__freelancers .container .pagination input::-webkit-inner-spin-button, #directory__freelancers .container .pagination input::-webkit-outer-spin-button {
  display: none;
  appearance: none;
}

#projects__intro {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#projects__intro .container {
  max-width: 1092px;
}
#projects__intro .container .contents .inner-contents .uptitle {
  display: table;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
}
#projects__intro .container .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
@media screen and (orientation: portrait) {
  #projects__intro .container .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 820px) {
  #projects__intro .container .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
#projects__list {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
}
#projects__list .container {
  display: flex;
  column-gap: 35px;
  align-items: flex-start;
  justify-content: space-between;
}
#projects__list .container > .left {
  width: 245px;
  flex: 0 0 245px;
}
#projects__list .container > .left > span {
  display: table;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 25px;
  color: var(--black-color);
  text-transform: uppercase;
}
#projects__list .container > .left .filter > div + div {
  margin: 10px 0 0;
}
#projects__list .container > .left {
  /*ul{
  	margin: 35px 0 0;
  	li{
  		a{
  			font-size: 14px;
  			line-height: 100%;
  			color: var(--gray-n3-color);
  		}
  		& + li{
  			margin: 12px 0 0;
  		}
  	}
  }*/
}
#projects__list .container > .right {
  width: 100%;
}
#projects__list .container > .right .list > a {
  background: var(--gray-n5-color);
  display: flex;
  column-gap: 40px;
  border-radius: 20px;
  padding: 10px 10px 10px 40px;
  align-items: center;
  user-select: none;
  border: 2px solid var(--gray-n5-color);
  justify-content: space-between;
  transition-property: background, border-color;
  transition-duration: 0.2s, 0.2s;
}
#projects__list .container > .right .list > a .left {
  width: 100%;
}
#projects__list .container > .right .list > a .left .up {
  display: flex;
  width: 100%;
  column-gap: 11px;
  align-items: center;
  justify-content: flex-start;
}
#projects__list .container > .right .list > a .left .up h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 0.2s;
}
#projects__list .container > .right .list > a .left .up .badge {
  transition-property: background;
  transition-duration: 0.2s;
}
#projects__list .container > .right .list > a .left .up .badge span {
  transition-property: color;
  transition-duration: 0.2s;
}
#projects__list .container > .right .list > a .left .up .badge.mobile {
  display: none;
}
#projects__list .container > .right .list > a .left .up > span {
  background: var(--white-color);
  position: relative;
  display: none;
  width: fit-content;
  padding: 5px 11.5px;
  border-radius: 5px;
  margin: 0 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: var(--gray-n3-color);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.2s;
}
#projects__list .container > .right .list > a .left ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3px;
  margin: 7px 0 0;
  align-items: flex-start;
  justify-content: space-between;
}
#projects__list .container > .right .list > a .left ul li {
  width: 50%;
}
#projects__list .container > .right .list > a .left ul li span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
  transition-property: color;
  transition-duration: 0.2s;
}
#projects__list .container > .right .list > a .left ul li:nth-child(2n+2) {
  padding-left: 36px;
}
#projects__list .container > .right .list > a .right {
  background: var(--white-color);
  display: flex;
  width: 142px;
  height: 110px;
  flex: 0 0 142px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
#projects__list .container > .right .list > a .right .inner {
  text-align: center;
}
#projects__list .container > .right .list > a .right .inner .badge {
  margin: 0 auto 5px;
}
#projects__list .container > .right .list > a .right .inner > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#projects__list .container > .right .list > a + a {
  margin: 12px 0 0;
}
#projects__list .container > .right .list > a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
#projects__list .container > .right .list > a:hover .left .up h3 {
  color: var(--white-color);
}
#projects__list .container > .right .list > a:hover .left .up > span {
  color: var(--white-color);
}
#projects__list .container > .right .list > a:hover .left .badge {
  background: var(--white-color);
}
#projects__list .container > .right .list > a:hover .left .badge span {
  color: var(--theme-color);
}
#projects__list .container > .right .list > a:hover .left ul li span {
  color: var(--white-color);
}
#projects__list .container > .right .list > a.featured {
  border-color: var(--theme-color);
}
#projects__list .container > .right .pagination {
  display: flex;
  width: fit-content;
  margin: 41px 0 0 auto;
  align-items: center;
  justify-content: flex-end;
}
#projects__list .container > .right .pagination .arrow {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#projects__list .container > .right .pagination .arrow svg {
  width: auto;
  height: 22px;
}
#projects__list .container > .right .pagination input {
  width: 40px;
  height: 30px;
  font-size: 16px;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  color: var(--black-color);
  text-align: center;
  appearance: none;
  -moz-appearance: textfield;
}
#projects__list .container > .right .pagination input::-webkit-inner-spin-button, #projects__list .container > .right .pagination input::-webkit-outer-spin-button {
  display: none;
  appearance: none;
}
@media screen and (max-width: 1080px) {
  #projects__list .container {
    flex-wrap: wrap;
  }
  #projects__list .container > .left {
    width: 100%;
    flex: 0 0 100%;
  }
  #projects__list .container > .left .filter {
    display: flex;
    column-gap: 12px;
    width: 100%;
    margin: 0 0 clamp(45px, 7.9268292683vw, 65px);
    align-items: flex-start;
  }
  #projects__list .container > .left .filter .css-b62m3t-container {
    width: calc(25% - 6px);
  }
  #projects__list .container > .left .filter > div + div {
    margin: 0;
  }
}
@media screen and (max-width: 860px) {
  #projects__list .container > .left .filter {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
  }
  #projects__list .container > .left .filter .css-b62m3t-container {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 820px) {
  #projects__list .container > .right .list > a {
    padding: 35px clamp(25px, 5.2083333333vw, 40px);
  }
  #projects__list .container > .right .list > a .left .up {
    flex-wrap: wrap;
  }
  #projects__list .container > .right .list > a .left .up .badge.mobile {
    display: flex;
  }
  #projects__list .container > .right .list > a .left .up > span {
    display: initial;
    background: var(--white-color);
  }
  #projects__list .container > .right .list > a .left ul {
    margin: 18px 0 0;
  }
  #projects__list .container > .right .list > a .right {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #projects__list .container > .right .list > a .left .up .badge {
    order: 0;
  }
  #projects__list .container > .right .list > a .left .up h3 {
    order: 1;
    width: 100%;
    margin: 18px 0 4px;
  }
  #projects__list .container > .right .list > a .left .up > span {
    background: none;
    order: 2;
    margin: 0;
    font-weight: 400;
    padding: 0;
  }
  #projects__list .container > .right .list > a .left ul {
    margin: 18px 0 0;
  }
  #projects__list .container > .right .list > a .right {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  #projects__list .container > .right .list > a .left ul li {
    width: 100%;
  }
  #projects__list .container > .right .list > a .left ul li:nth-child(2n+2) {
    padding: 0;
  }
}
@media screen and (max-width: 540px) {
  #projects__list .container > .left .filter {
    row-gap: 16px;
  }
  #projects__list .container > .left .filter .css-b62m3t-container {
    width: 100%;
  }
  #projects__list .container > .right .buttons {
    justify-content: flex-start;
  }
}
#projects_ {
  /*&_view{
  	background: var(--gray-n3-color);
  	padding-top: 180px;
  	padding-bottom: 100px;
  	.container{
  		display: flex;
  		flex-wrap: wrap;
  		column-gap: 65px;
  		align-items: flex-start;
  		justify-content: space-between;
  		& > .top{
  			position: relative;
  			width: 100%;
  			margin: 0 0 60px;
  			padding: 0 0 20px;
  			h1{
  				font-size: 25px;
  				line-height: 100%;
  				color: var(--theme-color);
  				text-transform: uppercase;
  			}
  			&:after{
  				background: var(--theme-color);
  				position: absolute;
  				display: block;
  				content: "";
  				left: 0;
  				bottom: 0;
  				width: 22px;
  				height: 2px;
  			}
  		}
  		& > .left{
  			width: 282px;
  			flex: 0 0 282px;
  			.item{
  				.contents{
  					.inner-contents{
  						h2{
  							font-size: 15px;
  							line-height: 140%;
  							padding: 0 0 6px;
  							margin: 0 0 15px;
  							color: var(--gray-n1-color);
  							border-bottom: 1px solid var(--gray-n1-color);
  							text-transform: uppercase;
  						}
  						rwp-wrap{
  							p{
  								font-size: 14px;
  								line-height: 140%;
  								color: var(--gray-n5-color);
  							}
  							ul{
  								li{
  									a{
  										font-size: 14px;
  										line-height: 100%;
  										color: var(--gray-n1-color);
  										text-decoration: underline;
  									}
  									& + li{
  										margin: 5px 0 0;
  									}
  								}
  							}
  						}
  						.buttons{
  							margin: 25px 0 0;
  						}
  					}
  				}
  				& + .item{
  					margin: 65px 0 0;
  				}
  			}
  		}
  		& > .right{
  			width: calc(100% - 347px);
  			& > .top{
  				display: flex;
  				column-gap: 16px;
  				align-items: center;
  				justify-content: space-between;
  				.item{
  					background: var(--white-color);
  					padding: 20px;
  					width: calc(50% - 8px);
  					box-shadow: 0 1px 4px var(--gray-n4-color);
  					border-radius: 3px;
  					.inner{
  						display: flex;
  						column-gap: 18px;
  						align-items: center;
  						justify-content: flex-start;
  						.icon{
  							display: inline-flex;
  							svg{
  								width: 20px;
  								height: auto;
  								path{
  									fill: var(--theme-color);
  								}
  							}
  						}
  						span{
  							font-size: 17px;
  							line-height: 100%;
  							color: var(--gray-n1-color);
  						}
  					}
  				}
  			}
  			& > .bottom{
  				margin: 40px 0 0;
  				h2{
  					font-size: 15px;
  					line-height: 100%;
  					text-transform: uppercase;
  					color: var(--gray-n5-color);
  				}
  				.list{
  					display: flex;
  					flex-wrap: wrap;
  					row-gap: 20px;
  					margin: 18px 0 0;
  					.item{
  						background: var(--white-color);
  						width: 100%;
  						padding: 20px;
  						box-shadow: 0 1px 4px var(--gray-n4-color);
  						border-radius: 3px;
  						.inner{
  							display: flex;
  							column-gap: 65px;
  							align-items: flex-start;
  							justify-content: flex-end;
  							.left,
  							.middle,
  							.right{
  								span{
  									display: table;
  									line-height: 100%;
  									& + span{
  										margin: 4px 0 0;
  									}
  								}
  							}
  							.left{
  								margin: 0 auto 0 0;
  								h3{
  									font-size: 17px;
  									line-height: 100%;
  									color: var(--theme-color);
  									margin: 0 0 6px;
  								}
  								span{
  									font-size: 12px;
  									color: var(--gray-n5-color);
  									&:nth-child(2){

  									}
  									&:nth-child(3){

  									}
  								}
  							}
  							.middle{
  								span{
  									font-size: 14px;
  									color: var(--black-color);
  								}
  							}
  							.right{
  								display: flex;
  								flex-wrap: wrap;
  								width: 240px;
  								flex: 0 0 240px;
  								justify-content: flex-end;
  								.top{
  									display: flex;
  									column-gap: 6px;
  									width: fit-content;
  									margin: 0 0 6px;
  									align-items: center;
  									justify-content: flex-end;
  									.badges{
  										display: flex;
  										column-gap: 8px;
  										align-items: center;
  										justify-content: flex-start;
  										.badge{
  											padding: 6px;
  											border-radius: 3px;
  											span{
  												font-size: 12px;
  												line-height: 100%;
  												color: var(--white-color);
  											}
  											&.applied{
  												background: var(--theme-color);
  											}
  											&.new{
  												background: var(--theme-color);
  											}
  											&.open{
  												background: var(--open-color);
  											}
  											&.closed{
  												background: var(--closed-color);
  											}
  										}
  									}
  									& > span{
  										font-size: 14px;
  										color: var(--black-color);
  									}
  								}
  								& > span{
  									width: 100%;
  									font-size: 12px;
  									text-align: right;
  									color: var(--gray-n5-color);
  								}
  							}
  						}
  						&:nth-child(2n + 1){
  							&:hover{
  								transform: rotate(1deg);
  							}
  						}
  						&:nth-child(2n + 2){
  							&:hover{
  								transform: rotate(-1deg);
  							}
  						}
  					}
  					.no-project{
  						.contents{
  							.inner-contents{
  								rwp-wrap{
  									p{
  										font-size: 17px;
  										line-height: 100%;
  										color: var(--gray-n1-color);
  									}
  								}
  							}
  						}
  					}
  				}
  				.pagination{
  					display: flex;
  					margin: 25px 0 0;
  					align-items: center;
  					justify-content: flex-end;
  					ul{
  						display: flex;
  						column-gap: 6px;
  						width: fit-content;
  						align-items: center;
  						li{
  							a{
  								background: var(--white-color);
  								display: flex;
  								width: 28px;
  								height: 28px;
  								flex: 0 0 28px;
  								font-size: 14px;
  								align-items: center;
  								justify-content: center;
  								border: 1px solid var(--gray-n4-color);
  								color: var(--gray-n1-color);
  								&.active{
  									background: var(--theme-color);
  									border-color: var(--theme-color);
  									color: var(--white-color);
  								}
  							}
  						}
  					}
  				}
  			}
  		}
  	}
  }*/
}

#prices__intro {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#prices__intro .container {
  max-width: 1092px;
}
#prices__intro .container .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
#prices__intro .container .list {
  display: flex;
  margin: clamp(80px, 14.6341463415vw, 120px) 0 0;
  column-gap: 12px;
  justify-content: center;
}
#prices__intro .container .list .item {
  background: var(--white-color);
  padding: 35px 20px 60px;
  border-radius: 20px;
  width: calc(33.3333333333% - 6px);
}
#prices__intro .container .list .item .top {
  background: var(--theme-color);
  display: flex;
  width: calc(100% + 40px);
  height: 60px;
  margin: -94px 0 35px -20px;
  border-radius: 20px 20px 0 0;
  align-items: center;
  justify-content: center;
}
#prices__intro .container .list .item .top span {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white-color);
}
#prices__intro .container .list .item > span {
  font-size: clamp(20px, 3.6585365854vw, 30px);
  font-weight: 700;
  color: var(--black-color);
  text-transform: uppercase;
}
#prices__intro .container .list .item > span span {
  font-weight: 400;
}
#prices__intro .container .list .item .pricing {
  margin: 22px 0 0;
}
#prices__intro .container .list .item .pricing > span:nth-child(1) {
  display: flex;
  font-size: clamp(48px, 3.6458333333vw, 70px);
  font-weight: 700;
  line-height: 100%;
  color: var(--theme-color);
  align-items: flex-end;
  justify-content: flex-start;
}
#prices__intro .container .list .item .pricing > span:nth-child(1) span {
  font-size: clamp(16px, 2.6829268293vw, 22px);
  line-height: 100%;
  margin: 0 0 5px;
}
#prices__intro .container .list .item .pricing > span:nth-child(2) {
  display: table;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin: 4px 0 0;
  color: var(--gray-n3-color);
}
@media screen and (orientation: portrait) {
  #prices__intro .container .list .item .pricing span:nth-child(1) {
    font-size: clamp(48px, 3.6458333333vw, 70px);
  }
}
@media screen and (max-width: 820px) {
  #prices__intro .container .list .item .pricing span:nth-child(1) {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
#prices__intro .container .list .item .btn {
  width: 100%;
  margin: 40px 0 0;
}
#prices__intro .container .list .item .points {
  margin: 40px 0 0;
}
#prices__intro .container .list .item .points ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#prices__intro .container .list .item .points ul li .icon {
  display: flex;
  width: 33px;
  flex: 0 0 33px;
  transform: translate(0, 3px);
}
#prices__intro .container .list .item .points ul li .icon svg {
  width: 12px;
  height: auto;
}
#prices__intro .container .list .item .points ul li span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#prices__intro .container .list .item .points ul li + li {
  margin: 13px 0 0;
}
#prices__intro .container .list .item.featured {
  border-radius: 0 0 20px 20px;
}
#prices__intro .container .list .item.selected {
  opacity: 0.4;
  pointer-events: none;
}
#prices__intro .container .list .item[data-is="0"] {
  margin: 0 0 60px;
}
@media screen and (max-width: 880px) {
  #prices__intro .container .list {
    display: grid;
    grid-template-columns: 391px;
    row-gap: 20px;
    column-gap: 20px;
    align-items: flex-start;
  }
  #prices__intro .container .list .item {
    width: 100%;
    max-width: 391px;
  }
}
@media screen and (max-width: 600px) {
  #prices__intro .container .list .item {
    position: relative;
    width: 100%;
    padding: 35px clamp(20px, 7.4074074074vw, 40px) 60px;
  }
  #prices__intro .container .list .item .top {
    position: relative;
    left: 50%;
    margin-left: 0;
    width: calc(100% + clamp(40px, 14.8148148148vw, 80px));
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 500px) {
  #prices__intro .container .list {
    grid-template-columns: 100%;
  }
  #prices__intro .container .list .item {
    max-width: 100%;
  }
}
@media screen and (orientation: portrait) {
  #prices__intro .container .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 820px) {
  #prices__intro .container .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
#prices__faq {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#prices__faq .container > .contents {
  text-align: center;
}
#prices__faq .container > .contents .inner-contents h2 {
  font-size: 22px;
  margin: 0 0 35px;
  color: var(--black-color);
  text-transform: uppercase;
}
#prices__faq .container > .contents .inner-contents h2 span {
  color: var(--theme-color);
}
#prices__faq .container > .contents .inner-contents rwp-wrap p {
  color: var(--gray-n3-color);
}
#prices__faq .container .faq {
  margin: clamp(80px, 14.6341463415vw, 120px) 0 0;
}
#prices__faq .container .faq h2 {
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-transform: uppercase;
  text-align: center;
}
#prices__faq .container .faq .list {
  margin: 40px 0 0;
  border-bottom: 1px solid var(--gray-n4-color);
}
#prices__faq .container .faq .list .item {
  border-top: 1px solid var(--gray-n4-color);
}
#prices__faq .container .faq .list .item .thead {
  padding: 40px 20px 35px;
  cursor: pointer;
}
#prices__faq .container .faq .list .item .thead .inner {
  display: flex;
  column-gap: 35px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
#prices__faq .container .faq .list .item .thead .inner h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: var(--gray-n3-color);
  text-transform: uppercase;
}
#prices__faq .container .faq .list .item .thead .inner .icon {
  display: flex;
}
#prices__faq .container .faq .list .item .thead .inner .icon svg {
  width: 12px;
  height: auto;
}
#prices__faq .container .faq .list .item .tbody {
  height: 1px;
  overflow: hidden;
  padding: 0 20px;
}
#prices__faq .container .faq .list .item .tbody .inner {
  padding: 0 0 40px;
  max-width: 840px;
}
#prices__faq .container .faq .list .item .tbody .inner p {
  color: var(--gray-n4-color);
}
#prices__faq .container .faq .list .item .tbody .inner p + p {
  margin: 25px 0 0;
}
#prices__benefits {
  background: var(--gray-n5-color);
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 60px;
}
#prices__benefits .container h2 {
  width: 100%;
  font-size: 24px;
  line-height: 26px;
  color: var(--theme-color);
  text-transform: uppercase;
  text-align: center;
}
#prices__benefits .container .contents {
  display: flex;
  margin: 40px 0 0;
  row-gap: 45px;
  column-gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
#prices__benefits .container .contents .video {
  width: 540px;
  border-radius: 20px;
  overflow: hidden;
}
#prices__benefits .container .contents .video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#prices__benefits .container .contents .list {
  width: 100%;
  max-width: 540px;
}
#prices__benefits .container .contents .list .item {
  display: flex;
  min-height: 100px;
  padding: 20px 60px;
  border-radius: 20px;
  border: 1px solid var(--gray-n4-color);
  align-items: center;
  justify-content: flex-start;
}
#prices__benefits .container .contents .list .item .icon {
  display: flex;
  width: 48px;
  flex: 0 0 48px;
}
#prices__benefits .container .contents .list .item .icon svg {
  width: auto;
  height: 25px;
}
#prices__benefits .container .contents .list .item span {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#prices__benefits .container .contents .list .item + .item {
  margin: 12px 0 0;
}
@media screen and (max-width: 540px) {
  #prices__benefits .container .contents .list .item {
    padding: 20px clamp(20px, 7.4074074074vw, 40px);
  }
}
@media screen and (max-width: 1080px) {
  #prices__benefits .container .contents {
    flex-wrap: wrap;
  }
  #prices__benefits .container .contents .video {
    width: 100%;
  }
  #prices__benefits .container .contents .list {
    max-width: 100%;
  }
}
#prices__testimonials {
  background: none;
  border-radius: 0;
}
#prices__testimonials .container h2 {
  font-size: 24px;
}
#prices__testimonials .container .list .track .item {
  background: var(--gray-n5-color);
}
#prices__compare {
  background: var(--gray-n5-color);
  border-radius: 60px 60px 0 0;
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#prices__compare .container h2 {
  width: 100%;
  font-size: 24px;
  line-height: 26px;
  color: var(--theme-color);
  text-transform: uppercase;
  text-align: center;
}
#prices__compare .container .wrap-list .list {
  background: var(--white-color);
  border-radius: 20px;
  margin: 40px 0 0;
  overflow: hidden;
}
#prices__compare .container .wrap-list .list .thead .tr,
#prices__compare .container .wrap-list .list .tbody .tr,
#prices__compare .container .wrap-list .list .tfoot .tr {
  display: flex;
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(1),
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(1),
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(1) {
  width: 55%;
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(2),
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(2),
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(2) {
  width: 15%;
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(3),
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(3),
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(3) {
  width: 15%;
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(4),
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(4),
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(4) {
  width: 15%;
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(2n+2),
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(2n+2) {
  background: var(--gray-n6-color);
}
#prices__compare .container .wrap-list .list .thead {
  background: var(--theme-color);
}
#prices__compare .container .wrap-list .list .thead .tr .td span {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white-color);
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(1) {
  padding: 21px clamp(20px, 4.6936114733vw, 36px);
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(2) {
  padding: 21px 5px;
  text-align: center;
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(3) {
  padding: 21px 5px;
  text-align: center;
}
#prices__compare .container .wrap-list .list .thead .tr .td:nth-child(4) {
  padding: 21px 5px;
  text-align: center;
}
#prices__compare .container .wrap-list .list .tbody .tr {
  border-top: 1px solid var(--gray-n5-color);
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(1) {
  padding: 15px clamp(20px, 4.6936114733vw, 36px);
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(1) span {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(2) {
  display: flex;
  padding: 15px 5px;
  align-items: center;
  justify-content: center;
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(2) svg {
  display: flex;
  width: 12px;
  height: auto;
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(3) {
  display: flex;
  padding: 15px 5px;
  align-items: center;
  justify-content: center;
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(3) svg {
  display: flex;
  width: 12px;
  height: auto;
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(4) {
  display: flex;
  padding: 15px 5px;
  align-items: center;
  justify-content: center;
}
#prices__compare .container .wrap-list .list .tbody .tr .td:nth-child(4) svg {
  display: flex;
  width: 12px;
  height: auto;
}
#prices__compare .container .wrap-list .list .tbody .tr:nth-child(1) .td {
  padding-top: 42px;
}
#prices__compare .container .wrap-list .list .tfoot .tr {
  border-top: 1px solid var(--gray-n5-color);
}
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(1) {
  padding: 20px clamp(20px, 4.6936114733vw, 36px);
}
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(2) {
  padding: 20px 5px;
}
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(3) {
  padding: 20px 5px;
}
#prices__compare .container .wrap-list .list .tfoot .tr .td:nth-child(4) {
  padding: 20px 5px;
}
@media screen and (max-width: 600px) {
  #prices__compare .container .wrap-list {
    overflow: scroll;
  }
  #prices__compare .container .wrap-list .list {
    width: calc(100% + 50vw);
  }
}

#contact__view {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#contact__view .container {
  max-width: 1092px;
}
#contact__view .container .contents .inner-contents .uptitle {
  display: table;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
}
#contact__view .container .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
#contact__view .container .box {
  background: var(--white-color);
  padding: 56px clamp(20px, 7.4074074074vw, 40px) 40px;
  margin: clamp(80px, 14.6341463415vw, 120px) 0 0;
  border-radius: 20px;
}
#contact__view .container .box form .inner .buttons {
  justify-content: flex-end;
}
@media screen and (orientation: portrait) {
  #contact__view .container .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 820px) {
  #contact__view .container .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}

.form-page {
  background: var(--gray-n5-color);
  padding-top: 196px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
.form-page .container .contents {
  width: 100%;
  margin: 0 auto;
  max-width: 536px;
}
.form-page .container .contents .top {
  text-align: center;
}
.form-page .container .contents .top h1 {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.form-page .container .contents .top span {
  font-size: 16px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
.form-page .container .contents .top span a {
  color: var(--gray-n3-color);
  text-decoration: underline;
}
.form-page .container .contents .middle {
  background: var(--theme-color);
  border-radius: 20px;
  padding: 20px 40px;
  margin: 20px 0 0;
}
.form-page .container .contents .middle p {
  font-size: 16px;
  line-height: 130%;
  color: var(--white-color);
}
.form-page .container .contents .middle p a {
  color: var(--white-color);
  text-decoration: underline;
}
.form-page .container .contents form {
  background: var(--white-color);
  margin: 37px 0 0;
  padding: 60px 40px;
  border-radius: 20px;
}
.form-page .container .contents form .inner .btn {
  margin: 34px 0 0;
}
.form-page .container .contents .end {
  margin: 18px 0 0;
}
.form-page .container .contents .end ul {
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: center;
}
.form-page .container .contents .end ul li a {
  font-size: 16px;
  line-height: 100%;
  color: var(--gray-n3-color);
  text-decoration: underline;
}
@media screen and (max-width: 540px) {
  .form-page .container .contents {
    max-width: 100%;
  }
  .form-page .container .contents form {
    background: none;
    padding: 0;
  }
  .form-page .container .contents .middle {
    background: none;
    padding: 0;
  }
  .form-page .container .contents .middle p {
    color: var(--error-color);
    text-align: center;
  }
  .form-page .container .contents .middle p a {
    color: var(--error-color);
  }
  .form-page .container .contents .end {
    margin: 25px 0 0;
  }
  .form-page .container .contents .end ul {
    justify-content: flex-start;
  }
}

#single-project__view {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#single-project__view .container {
  max-width: 1092px;
}
#single-project__view .container > .contents .inner-contents .uptitle {
  display: table;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
}
#single-project__view .container > .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
#single-project__view .container > .top {
  width: 100%;
  margin: 105px 0 0;
}
#single-project__view .container > .top .box {
  display: grid;
  flex-wrap: wrap;
  grid-row-gap: 39px;
  grid-column-gap: 35px;
  padding: 50px clamp(20px, 5.9259259259vw, 32px);
  border-radius: 20px;
  border: 1px solid var(--gray-n3-color);
  grid-template-columns: repeat(2, 1fr);
}
#single-project__view .container > .top .box .item {
  display: flex;
  column-gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .top .box .item .icon {
  display: flex;
  width: 28px;
  align-items: center;
  justify-content: center;
}
#single-project__view .container > .top .box .item .icon svg {
  width: auto;
  height: auto;
  max-width: 28px;
  max-height: 28px;
}
#single-project__view .container > .top .box .item .contents {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .top .box .item .contents > span {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  color: var(--black-color);
}
@media screen and (max-width: 1024px) {
  #single-project__view .container > .top .box .item .contents {
    width: 100%;
    max-width: 260px;
  }
}
#single-project__view .container > .top .box .item:nth-child(3):not(:last-child) .contents span {
  text-decoration: underline;
  cursor: pointer;
}
#single-project__view .container > .top .box .item:nth-child(3):not(:last-child) .contents span.anon {
  text-decoration: none;
  cursor: initial;
}
@media screen and (max-width: 1024px) {
  #single-project__view .container > .top .box .item:nth-child(1) .contents {
    flex-wrap: wrap;
  }
  #single-project__view .container > .top .box .item:nth-child(1) .contents span {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  #single-project__view .container > .top .box {
    grid-template-columns: 100%;
  }
}
#single-project__view .container > .top > span {
  display: table;
  width: 100%;
  max-width: 820px;
  font-size: 14px;
  line-height: 16px;
  margin: 19px auto 0;
  color: var(--gray-n3-color);
  text-align: center;
}
#single-project__view .container > .bottom {
  display: flex;
  column-gap: 12px;
  margin: 60px 0 0;
  max-width: 1092px;
  align-items: flex-start;
}
#single-project__view .container > .bottom > .left {
  width: 264px;
  flex: 0 0 264px;
}
#single-project__view .container > .bottom > .right {
  width: 100%;
}
#single-project__view .container > .bottom > .right .preview h2 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#single-project__view .container > .bottom > .right .preview .box {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
}
#single-project__view .container > .bottom > .right .preview .box .top {
  background: var(--theme-color);
  padding: 20px clamp(20px, 7.4074074074vw, 40px);
}
#single-project__view .container > .bottom > .right .preview .box .top > .inner > ul {
  display: flex;
  column-gap: 35px;
  align-items: center;
  justify-content: space-between;
}
#single-project__view .container > .bottom > .right .preview .box .top > .inner > ul li {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .bottom > .right .preview .box .top > .inner > ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
#single-project__view .container > .bottom > .right .preview .box .top > .inner > ul li .icon svg {
  width: auto;
  height: 20px;
}
#single-project__view .container > .bottom > .right .preview .box .top > .inner > ul li span {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white-color);
}
#single-project__view .container > .bottom > .right .preview .box .top > .inner > ul li:last-child {
  margin: 0 119px 0 0;
}
@media screen and (max-width: 768px) {
  #single-project__view .container > .bottom > .right .preview .box .top {
    padding: 10px clamp(20px, 7.4074074074vw, 40px);
  }
  #single-project__view .container > .bottom > .right .preview .box .top > .inner {
    display: none;
  }
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents {
  padding: 56px clamp(20px, 7.4074074074vw, 40px) 40px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents h6 {
  font-size: 16px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 {
  display: table;
  margin-bottom: 25px;
  color: var(--gray-n3-color);
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + ol, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h1 + h6, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + ol, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h2 + h6, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + ol, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h3 + h6, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + ol, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h4 + h6, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + ol, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h5 + h6, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + ol, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap h6 + h6 {
  margin-top: 20px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p {
  color: var(--gray-n3-color);
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + ol {
  margin-top: 20px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap p + h6 {
  margin-top: 35px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol {
  padding-left: 20px;
  list-style: initial;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul li,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol li {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + p, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + ul, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + ol,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + p,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + ul,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + ol {
  margin-top: 20px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + h1, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + h2, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + h3, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + h4, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + h5, #single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ul + h6,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + h1,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + h2,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + h3,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + h4,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + h5,
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .contents .inner-contents rwp-wrap ol + h6 {
  margin-top: 35px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul {
  border-bottom: 1px solid var(--gray-n5-color);
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li {
  display: flex;
  column-gap: 16px;
  padding: 14px clamp(20px, 7.4074074074vw, 40px);
  border-top: 1px solid var(--gray-n5-color);
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li > span {
  width: 100%;
  max-width: 316px;
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li .value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li .value .icon {
  display: flex;
  width: 20px;
  flex: 0 0 20px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li .value .icon svg {
  width: auto;
  height: auto;
  max-width: 16px;
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li .value span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
@media screen and (max-width: 768px) {
  #single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li > span {
    max-width: 260px;
  }
}
@media screen and (max-width: 680px) {
  #single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li > span {
    max-width: 180px;
  }
}
@media screen and (max-width: 540px) {
  #single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  #single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li > span {
    width: 100%;
    max-width: 100%;
  }
  #single-project__view .container > .bottom > .right .preview .box .bottom > .inner > ul li .value .icon {
    display: none;
  }
}
#single-project__view .container > .bottom > .right .preview .box .bottom > .inner .buttons {
  padding: clamp(20px, 7.4074074074vw, 40px);
  row-gap: 12px;
  column-gap: 12px;
}
#single-project__view .container > .bottom > .right .preview > .buttons {
  margin: 45px 0 0;
  padding: 0 40px;
  justify-content: center;
}
#single-project__view .container > .bottom > .right .coords {
  position: relative;
  margin: 60px 0 0;
  padding: 2px;
  border-radius: 20px;
  overflow: hidden;
}
#single-project__view .container > .bottom > .right .coords .inner {
  background: var(--white-color);
  border-radius: 20px;
  padding: 56px clamp(20px, 7.4074074074vw, 40px);
}
#single-project__view .container > .bottom > .right .coords .inner h2 {
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#single-project__view .container > .bottom > .right .coords .inner p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 100%;
  color: var(--black-color);
}
#single-project__view .container > .bottom > .right .coords .inner ul li span {
  display: inline-block;
  font-size: 16px;
  line-height: 140%;
}
#single-project__view .container > .bottom > .right .coords .inner ul li span:nth-child(1) {
  width: 100px;
}
#single-project__view .container > .bottom > .right .coords .inner ul li + li {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid var(--gray-n5-color);
}
#single-project__view .container > .bottom > .right .coords .inner .highlight {
  background: var(--theme-color);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  z-index: -1;
}
#single-project__view .container > .bottom > .right .coords .inner {
  /*.highlight-left{
  	background: var(--theme-color);
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	width: 100%;
  	height: 100%;
  	transform-origin: right top;
  	z-index: -1;
  }
  .highlight-right{
  	background: var(--theme-color);
  	position: absolute;
  	top: -1px;
  	left: 0px;
  	width: calc(100% + 1px);
  	height: calc(100% + 1px);
  	transform-origin: left bottom;
  	z-index: -1;
  }*/
}
#single-project__view .container > .bottom > .right .private-message {
  position: relative;
  margin: 60px 0 0;
  padding: 2px;
}
#single-project__view .container > .bottom > .right .private-message .inner .form-message {
  margin: 0 0 6px;
}
#single-project__view .container > .bottom > .right .private-message .inner h2 {
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#single-project__view .container > .bottom > .right .private-message .inner p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 100%;
  color: var(--black-color);
}
#single-project__view .container > .bottom > .right .private-message .inner ul li span {
  display: inline-block;
  font-size: 16px;
  line-height: 140%;
}
#single-project__view .container > .bottom > .right .private-message .inner ul li span:nth-child(1) {
  width: 100px;
}
#single-project__view .container > .bottom > .right .private-message .inner ul li + li {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid var(--gray-n5-color);
}
#single-project__view .container > .bottom > .right .private-message .inner .highlight {
  background: var(--theme-color);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  z-index: -1;
}
#single-project__view .container > .bottom > .right .private-message .inner {
  /*.highlight-left{
  	background: var(--theme-color);
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	width: 100%;
  	height: 100%;
  	transform-origin: right top;
  	z-index: -1;
  }
  .highlight-right{
  	background: var(--theme-color);
  	position: absolute;
  	top: -1px;
  	left: 0px;
  	width: calc(100% + 1px);
  	height: calc(100% + 1px);
  	transform-origin: left bottom;
  	z-index: -1;
  }*/
}
#single-project__view .container > .bottom > .right .private-message.cant .inner {
  opacity: 0.4;
  pointer-events: none;
}
#single-project__view .container > .bottom > .right .form {
  background: var(--white-color);
  position: relative;
  padding: 56px clamp(20px, 7.4074074074vw, 40px) 40px;
  margin: 60px 0 0;
  border-radius: 20px;
}
#single-project__view .container > .bottom > .right .form form > .inner h2 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#single-project__view .container > .bottom > .right .form.cant form {
  opacity: 0.4;
  pointer-events: none;
}
#single-project__view .container > .bottom > .right .no-form {
  background: var(--theme-color);
  padding: clamp(20px, 7.4074074074vw, 40px);
  margin: 60px 0 0;
  border-radius: 20px;
}
#single-project__view .container > .bottom > .right .no-form .inner {
  display: flex;
  row-gap: 16px;
  column-gap: 35px;
  align-items: center;
  justify-content: space-between;
}
#single-project__view .container > .bottom > .right .no-form .inner span {
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
}
@media screen and (max-width: 1080px) {
  #single-project__view .container > .bottom > .right .no-form .inner {
    flex-wrap: wrap;
  }
}
#single-project__view .container > .bottom > .right .applicants {
  margin: 60px 0 0;
}
#single-project__view .container > .bottom > .right .applicants h2 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#single-project__view .container > .bottom > .right .applicants .list .item {
  background: var(--white-color);
  display: flex;
  height: 60px;
  padding: 0 clamp(20px, 7.4074074074vw, 40px);
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
}
#single-project__view .container > .bottom > .right .applicants .list .item span {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  text-transform: uppercase;
}
#single-project__view .container > .bottom > .right .applicants .list .item + .item {
  margin: 12px 0 0;
}
@media screen and (orientation: portrait) {
  #single-project__view .container > .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 1080px) {
  #single-project__view .container .bottom {
    flex-wrap: wrap;
  }
  #single-project__view .container .bottom .left {
    order: 1;
  }
  #single-project__view .container .bottom .right {
    order: 0;
  }
}
@media screen and (max-width: 820px) {
  #single-project__view .container > .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
#single-project_ {
  /*&_view{
  	background: var(--gray-n3-color);
  	padding-top: 180px;
  	padding-bottom: 100px;
  	.container{
  		display: flex;
  		flex-wrap: wrap;
  		column-gap: 65px;
  		align-items: flex-start;
  		justify-content: space-between;
  		& > .top{
  			position: relative;
  			width: 100%;
  			margin: 0 0 60px;
  			padding: 0 0 20px;
  			h1{
  				font-size: 25px;
  				line-height: 100%;
  				color: var(--theme-color);
  				text-transform: uppercase;
  			}
  			&:after{
  				background: var(--theme-color);
  				position: absolute;
  				display: block;
  				content: "";
  				left: 0;
  				bottom: 0;
  				width: 22px;
  				height: 2px;
  			}
  		}
  		& > .left{
  			width: 282px;
  			flex: 0 0 282px;
  			.item{
  				.contents{
  					.inner-contents{
  						h2{
  							font-size: 15px;
  							line-height: 140%;
  							padding: 0 0 6px;
  							margin: 0 0 15px;
  							color: var(--gray-n1-color);
  							border-bottom: 1px solid var(--gray-n1-color);
  							text-transform: uppercase;
  						}
  						rwp-wrap{
  							p{
  								font-size: 14px;
  								line-height: 140%;
  								color: var(--gray-n5-color);
  							}
  						}
  						.buttons{
  							margin: 25px 0 0;
  						}
  					}
  				}
  			}
  		}
  		& > .right{
  			width: calc(100% - 347px);
  			.details{
  				width: 100%;
  				margin: 0 0 30px;
  				.items{
  					display: flex;
  					flex-wrap: wrap;
  					width: 100%;
  					row-gap: 25px;
  					align-items: center;
  					justify-content: space-between;
  					.item{
  						display: flex;
  						width: 50%;
  						align-items: center;
  						justify-content: flex-start;
  						.icon{
  							display: inline-flex;
  							width: 40px;
  							flex: 0 0 40px;
  							align-items: center;
  							justify-content: center;
  							svg{
  								width: auto;
  								height: 16px;
  								path{
  									fill: var(--theme-color);
  								}
  							}
  						}
  						span{
  							font-size: 15px;
  							color: var(--theme-color);
  							a{
  								font-weight: 700;
  								color: var(--theme-color);
  								text-decoration: underline;
  							}
  							i{
  								font-weight: 700;
  								font-style: initial;
  							}
  						}
  						.badges{
  							display: flex;
  							column-gap: 8px;
  							margin-left: 16px;
  							align-items: center;
  							justify-content: flex-start;
  							.badge{
  								padding: 6px;
  								border-radius: 3px;
  								span{
  									font-size: 12px;
  									line-height: 100%;
  									color: var(--white-color);
  								}
  								&.applied{
  									background: var(--theme-color);
  								}
  								&.new{
  									background: var(--theme-color);
  								}
  								&.open{
  									background: var(--open-color);
  								}
  								&.closed{
  									background: var(--closed-color);
  								}
  							}
  						}
  						&:last-child{
  							.icon{
  								svg{
  									width: 18px;
  								}
  							}
  						}
  						&.project-leader{
  							span{
  								a,
  								i{
  									text-transform: uppercase;
  								}
  							}
  						}
  					}
  				}
  				.info{
  					display: flex;
  					width: 100%;
  					margin: 25px 0 0;
  					align-items: center;
  					justify-content: flex-start;
  					.icon{
  						display: inline-flex;
  						width: 40px;
  						flex: 0 0 40px;
  						align-items: center;
  						justify-content: center;
  						svg{
  							width: 14px;
  							height: auto;
  							path{
  								fill: var(--gray-n5-color);
  							}
  						}
  					}
  					p{
  						font-size: 12px;
  						line-height: 100%;
  						color: var(--gray-n5-color);
  					}
  				}
  			}
  			.buttons{
  				margin: 30px 0 15px;
  				justify-content: flex-end;
  				.btn{
  					height: 41px;
  					span{
  						font-size: 14px;
  					}
  				}
  			}
  			.description{
  				background: var(--white-color);
  				box-shadow: 0 1px 4px var(--gray-n4-color);
  				.top{
  					background: var(--gray-n2-color);
  					padding: 25px 20px;
  					ul{
  						display: flex;
  						column-gap: 25px;
  						align-items: center;
  						justify-content: flex-start;
  						li{
  							display: flex;
  							align-items: center;
  							.icon{
  								display: inline-flex;
  								width: 40px;
  								flex: 0 0 40px;
  								align-items: center;
  								justify-content: center;
  								svg{
  									width: auto;
  									height: 16px;
  									path{
  										fill: var(--white-color);
  									}
  								}
  							}
  							a,
  							span{
  								font-size: 13px;
  								line-height: 100%;
  								color: var(--white-color);
  							}
  						}
  					}
  				}
  				.middle{
  					padding: 40px;
  					.contents{
  						.inner-contents{
  							rwp-wrap{
  								p{
  									font-size: 14px;
  									line-height: 140%;
  									color: var(--gray-n1-color);
  									&+p{
  										margin-top: 25px;
  									}
  									&+ul{
  										margin-top: 12px;
  									}
  								}
  								ul{
  									list-style: initial;
  									margin-left: 20px;
  									li{
  										font-size: 14px;
  										line-height: 140%;
  										color: var(--gray-n1-color);
  									}
  									&+p,
  									&+ul{
  										margin-top: 25px;
  									}
  								}
  							}
  						}
  					}
  				}
  				.bottom{
  					border-top: 1px solid var(--gray-n4-color);
  					border-bottom: 1px solid var(--gray-n4-color);
  					.item{
  						display: flex;
  						column-gap: 65px;
  						padding: 25px 40px;
  						align-items: center;
  						justify-content: flex-start;
  						& > span{
  							width: 100%;
  							font-size: 14px;
  							max-width: 241px;
  							color: var(--gray-n1-color);
  						}
  						.value{
  							display: flex;
  							align-items: center;
  							.icon{
  								display: inline-flex;
  								width: 40px;
  								flex: 0 0 40px;
  								align-items: center;
  								justify-content: center;
  								svg{
  									width: auto;
  									height: 16px;
  									path{
  										fill: var(--gray-n1-color);
  									}
  								}
  							}
  							span{
  								font-size: 14px;
  								color: var(--gray-n1-color);
  							}
  						}
  						& + .item{
  							border-top: 1px solid var(--gray-n4-color);
  						}
  					}
  				}
  			}
  			.apply{
  				margin: 48px 0 0;
  				.box{
  					background: var(--theme-color);
  					width: 100%;
  					padding: 20px;
  					border-radius: 3px;
  					.inner{
  						display: flex;
  						align-items: center;
  						justify-content: flex-start;
  						.icon{
  							display: inline-flex;
  							width: 40px;
  							flex: 0 0 40px;
  							align-items: center;
  							justify-content: center;
  							svg{
  								width: auto;
  								height: 14px;
  								path{
  									fill: var(--white-color);
  								}
  							}
  						}
  						& > span{
  							font-size: 17px;
  							font-weight: 700;
  							color: var(--white-color);
  						}
  						.btn{
  							margin: 0 0 0 25px;
  						}
  					}
  				}
  				.form{
  					h2{
  						font-size: 17px;
  						line-height: 100%;
  						text-transform: uppercase;
  						color: var(--gray-n1-color);
  					}
  					form{
  						margin: 25px 0 0;
  					}
  				}
  			}

  			.applicants{
  				margin: 48px 0 0;
  				h2{
  					font-size: 17px;
  					line-height: 100%;
  					text-transform: uppercase;
  					color: var(--gray-n1-color);
  				}
  				.list{
  					background: var(--white-color);
  					margin: 25px 0 0;
  					box-shadow: 0 1px 4px var(--gray-n4-color);
  					.item{
  						padding: 25px 40px;
  						border-top: 1px solid var(--gray-n4-color);
  						span{
  							font-size: 14px;
  							font-weight: 700;
  							color: var(--gray-n1-color);
  						}
  					}
  				}
  			}
  		}
  	}
  }*/
}

#single-profile__view {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#single-profile__view .container {
  max-width: 1092px;
}
#single-profile__view .container > .top > .contents .inner-contents .uptitle {
  display: table;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
}
#single-profile__view .container > .top > .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
#single-profile__view .container > .bottom {
  display: flex;
  margin: 45px 0 0;
  column-gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
#single-profile__view .container > .bottom .side {
  width: 235px;
  flex: 0 0 235px;
}
#single-profile__view .container > .bottom .side .img-container {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
#single-profile__view .container > .bottom .side .img-container .inner-img img,
#single-profile__view .container > .bottom .side .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
}
#single-profile__view .container > .bottom .side .btn {
  margin: 25px auto 0;
}
#single-profile__view .container > .bottom .side .quick-links {
  width: 100%;
  margin: 25px 0 0;
}
#single-profile__view .container > .bottom .side .quick-links ul {
  display: flex;
  width: 100%;
  row-gap: 6px;
  column-gap: 6px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
#single-profile__view .container > .bottom .side .quick-links ul li a {
  background: var(--black-color);
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}
#single-profile__view .container > .bottom .side .quick-links ul li a svg {
  width: auto;
  height: 18px;
}
#single-profile__view .container > .bottom .side .quick-links ul li a svg path {
  fill: var(--white-color);
}
#single-profile__view .container > .bottom .boxes {
  width: 100%;
  max-width: 816px;
}
#single-profile__view .container > .bottom .boxes .box {
  background: var(--white-color);
  position: relative;
  width: 100%;
  padding: 40px clamp(20px, 7.4074074074vw, 40px);
  margin: 0 auto;
  border-radius: 20px;
}
#single-profile__view .container > .bottom .boxes .box h2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 26px;
  color: var(--black-color);
  text-transform: uppercase;
}
#single-profile__view .container > .bottom .boxes .box .portfolio {
  display: grid;
  grid-row-gap: 8px;
  grid-column-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item {
  position: relative;
  display: flex;
  aspect-ratio: 16/9;
  border-radius: 20px;
  border: 1px solid var(--theme-color);
  overflow: hidden;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item .img-container {
  background: none;
  width: 100%;
  height: 100%;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item .img-container .inner-img .img {
  background: var(--theme-color);
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item > span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  z-index: 2;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item .opts {
  position: absolute;
  display: flex;
  column-gap: 6px;
  top: 10px;
  right: 10px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item .opts .opt {
  background: var(--white-color);
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item .opts .opt svg {
  width: auto;
  height: 22px;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item:last-child {
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item:last-child .contents svg {
  display: block;
  width: auto;
  height: 34px;
  margin: 0 auto;
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item:last-child .contents svg path {
  fill: var(--theme-color);
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item:last-child .contents span {
  display: table;
  margin: 8px auto 0;
  text-align: center;
  white-space: nowrap;
  color: var(--theme-color);
}
#single-profile__view .container > .bottom .boxes .box .portfolio .item:hover .opts {
  pointer-events: initial;
  opacity: 1;
}
@media screen and (max-width: 680px) {
  #single-profile__view .container > .bottom .boxes .box .portfolio {
    grid-template-columns: 100%;
  }
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item {
  background: var(--gray-n5-color);
  border-top: 5px solid var(--theme-color);
  padding: 30px;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .top {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 16px;
  align-items: center;
  justify-content: space-between;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .top > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .top .stars {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .top .stars span:nth-child(1) {
  font-size: 16px;
  line-height: 100%;
  color: var(--theme-color);
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .top .stars span:nth-child(2) {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom {
  margin: 35px 0 0;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents > span,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents > span {
  display: table;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--black-color);
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap p,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap p {
  color: var(--black-color);
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap p + p, #single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap p + ul, #single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap p + ol,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap p + p,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap p + ul,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap p + ol {
  margin: 15px 0 0;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ul,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ol,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ul,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ol {
  padding-left: 20px;
  list-style: initial;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ul li,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ol li,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ul li,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ol li {
  font-size: 14px;
  line-height: 18px;
  color: var(--black-color);
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ul + p, #single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ul + ul, #single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ul + ol,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ol + p,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ol + ul,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .message .contents .inner-contents rwp-wrap ol + ol,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ul + p,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ul + ul,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ul + ol,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ol + p,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ol + ul,
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer .contents .inner-contents rwp-wrap ol + ol {
  margin: 15px 0 0;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer {
  margin: 25px 0 0;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--theme-color);
  text-decoration: underline;
  cursor: pointer;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer form {
  display: none;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item .bottom .answer form .inner .btn {
  margin: 35px 0 0;
}
#single-profile__view .container > .bottom .boxes .box .reviews .items .item + .item {
  margin: 15px 0 0;
}
#single-profile__view .container > .bottom .boxes .box .reviews .form {
  margin: 26px 0 0;
}
#single-profile__view .container > .bottom .boxes .box .reviews .form h3 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 26px;
  color: var(--black-color);
  text-transform: uppercase;
}
#single-profile__view .container > .bottom .boxes .box .reviews .form .inner .btn {
  margin: 35px 0 0;
}
#single-profile__view .container > .bottom .boxes .box > .items .item {
  display: flex;
  row-gap: 4px;
  column-gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
#single-profile__view .container > .bottom .boxes .box > .items .item .title {
  width: clamp(140px, 16.6666666667vw, 180px);
  flex: 0 0 clamp(140px, 16.6666666667vw, 180px);
}
#single-profile__view .container > .bottom .boxes .box > .items .item .title span {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
#single-profile__view .container > .bottom .boxes .box > .items .item .content {
  width: 100%;
  max-width: 520px;
}
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap p {
  color: var(--gray-n3-color);
}
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap p + p, #single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap p + ul, #single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap p + ol {
  margin: 20px 0 0;
}
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ul,
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ol {
  padding-left: 20px;
  list-style: initial;
}
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ul li,
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ol li {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ul + p, #single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ul + ul, #single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ul + ol,
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ol + p,
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ol + ul,
#single-profile__view .container > .bottom .boxes .box > .items .item .content rwp-wrap ol + ol {
  margin: 20px 0 0;
}
#single-profile__view .container > .bottom .boxes .box > .items .item .content > a, #single-profile__view .container > .bottom .boxes .box > .items .item .content > span, #single-profile__view .container > .bottom .boxes .box > .items .item .content > ul li span {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n3-color);
}
#single-profile__view .container > .bottom .boxes .box > .items .item:nth-child(1) {
  padding: 0 0 20px;
}
#single-profile__view .container > .bottom .boxes .box > .items .item + .item {
  padding: 20px 0;
  border-top: 1px solid var(--gray-n5-color);
}
#single-profile__view .container > .bottom .boxes .box > .items .item.about .content rwp-wrap p a {
  font-weight: 700;
  color: var(--theme-color);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #single-profile__view .container > .bottom .boxes .box > .items .item {
    flex-wrap: wrap;
  }
}
#single-profile__view .container > .bottom .boxes .box + .box {
  margin: 16px 0 0;
}
#single-profile__view .container > .bottom .boxes .box.cant h2 {
  opacity: 0.4;
  pointer-events: none;
}
#single-profile__view .container > .bottom .boxes .box.cant form {
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (max-width: 1080px) {
  #single-profile__view .container > .bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  #single-profile__view .container > .bottom .boxes {
    margin: clamp(65px, 7.4074074074vw, 80px) 0 0;
  }
}
@media screen and (orientation: portrait) {
  #single-profile__view .container > .top .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 820px) {
  #single-profile__view .container > .top .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
#single-profile_ {
  /*&_view{
  	background: var(--gray-n3-color);
  	padding-top: 180px;
  	padding-bottom: 100px;
  	.container{
  		display: flex;
  		flex-wrap: wrap;
  		column-gap: 65px;
  		align-items: flex-start;
  		justify-content: space-between;
  		& > .top{
  			position: relative;
  			width: 100%;
  			margin: 0 0 60px;
  			padding: 0 0 20px;
  			h1{
  				font-size: 25px;
  				line-height: 100%;
  				color: var(--theme-color);
  				text-transform: uppercase;
  			}
  			&:after{
  				background: var(--theme-color);
  				position: absolute;
  				display: block;
  				content: "";
  				left: 0;
  				bottom: 0;
  				width: 22px;
  				height: 2px;
  			}
  		}
  		& > .left{
  			width: 282px;
  			flex: 0 0 282px;
  			.item{
  				.contents{
  					.inner-contents{
  						h2{
  							font-size: 15px;
  							line-height: 140%;
  							padding: 0 0 6px;
  							margin: 0 0 15px;
  							color: var(--gray-n1-color);
  							border-bottom: 1px solid var(--gray-n1-color);
  							text-transform: uppercase;
  						}
  						rwp-wrap{
  							p{
  								font-size: 14px;
  								line-height: 140%;
  								color: var(--gray-n5-color);
  							}
  						}
  						.buttons{
  							margin: 25px 0 0;
  						}
  					}
  				}
  			}
  		}
  		& > .right{
  			width: calc(100% - 347px);
  			.details{
  				width: 100%;
  				margin: 0 0 30px;
  				.items{
  					display: flex;
  					flex-wrap: wrap;
  					width: 100%;
  					row-gap: 25px;
  					align-items: center;
  					justify-content: space-between;
  					.item{
  						display: flex;
  						width: 50%;
  						align-items: center;
  						justify-content: flex-start;
  						.icon{
  							display: inline-flex;
  							width: 40px;
  							flex: 0 0 40px;
  							align-items: center;
  							justify-content: center;
  							svg{
  								width: auto;
  								height: 16px;
  								path{
  									fill: var(--theme-color);
  								}
  							}
  						}
  						span{
  							font-size: 15px;
  							color: var(--theme-color);
  							a{
  								font-weight: 700;
  								color: var(--theme-color);
  								text-decoration: underline;
  							}
  							i{
  								font-weight: 700;
  								font-style: initial;
  							}
  						}
  						.badges{
  							display: flex;
  							column-gap: 8px;
  							margin-left: 16px;
  							align-items: center;
  							justify-content: flex-start;
  							.badge{
  								padding: 6px;
  								border-radius: 3px;
  								span{
  									font-size: 12px;
  									line-height: 100%;
  									color: var(--white-color);
  								}
  								&.applied{
  									background: var(--theme-color);
  								}
  								&.new{
  									background: var(--theme-color);
  								}
  								&.open{
  									background: var(--open-color);
  								}
  								&.closed{
  									background: var(--closed-color);
  								}
  							}
  						}
  						&:last-child{
  							.icon{
  								svg{
  									width: 18px;
  								}
  							}
  						}
  						&.project-leader{
  							span{
  								a,
  								i{
  									text-transform: uppercase;
  								}
  							}
  						}
  					}
  				}
  				.info{
  					display: flex;
  					width: 100%;
  					margin: 25px 0 0;
  					align-items: center;
  					justify-content: flex-start;
  					.icon{
  						display: inline-flex;
  						width: 40px;
  						flex: 0 0 40px;
  						align-items: center;
  						justify-content: center;
  						svg{
  							width: 14px;
  							height: auto;
  							path{
  								fill: var(--gray-n5-color);
  							}
  						}
  					}
  					p{
  						font-size: 12px;
  						line-height: 100%;
  						color: var(--gray-n5-color);
  					}
  				}
  			}
  			.buttons{
  				margin: 30px 0 15px;
  				justify-content: flex-end;
  				.btn{
  					height: 41px;
  					span{
  						font-size: 14px;
  					}
  				}
  			}
  			.description{
  				background: var(--white-color);
  				box-shadow: 0 1px 4px var(--gray-n4-color);
  				.top{
  					background: var(--gray-n2-color);
  					padding: 25px 20px;
  					ul{
  						display: flex;
  						column-gap: 25px;
  						align-items: center;
  						justify-content: flex-start;
  						li{
  							display: flex;
  							align-items: center;
  							.icon{
  								display: inline-flex;
  								width: 40px;
  								flex: 0 0 40px;
  								align-items: center;
  								justify-content: center;
  								svg{
  									width: auto;
  									height: 16px;
  									path{
  										fill: var(--white-color);
  									}
  								}
  							}
  							a,
  							span{
  								font-size: 13px;
  								line-height: 100%;
  								color: var(--white-color);
  							}
  						}
  					}
  				}
  				.middle{
  					padding: 40px;
  					.contents{
  						.inner-contents{
  							rwp-wrap{
  								p{
  									font-size: 14px;
  									line-height: 140%;
  									color: var(--gray-n1-color);
  									&+p{
  										margin-top: 25px;
  									}
  									&+ul{
  										margin-top: 12px;
  									}
  								}
  								ul{
  									list-style: initial;
  									margin-left: 20px;
  									li{
  										font-size: 14px;
  										line-height: 140%;
  										color: var(--gray-n1-color);
  									}
  									&+p,
  									&+ul{
  										margin-top: 25px;
  									}
  								}
  							}
  						}
  					}
  				}
  				.bottom{
  					border-top: 1px solid var(--gray-n4-color);
  					border-bottom: 1px solid var(--gray-n4-color);
  					.item{
  						display: flex;
  						column-gap: 65px;
  						padding: 25px 40px;
  						align-items: center;
  						justify-content: flex-start;
  						& > span{
  							width: 100%;
  							font-size: 14px;
  							max-width: 241px;
  							color: var(--gray-n1-color);
  						}
  						.value{
  							display: flex;
  							align-items: center;
  							.icon{
  								display: inline-flex;
  								width: 40px;
  								flex: 0 0 40px;
  								align-items: center;
  								justify-content: center;
  								svg{
  									width: auto;
  									height: 16px;
  									path{
  										fill: var(--gray-n1-color);
  									}
  								}
  							}
  							span{
  								font-size: 14px;
  								color: var(--gray-n1-color);
  							}
  						}
  						& + .item{
  							border-top: 1px solid var(--gray-n4-color);
  						}
  					}
  				}
  			}
  			.apply{
  				margin: 48px 0 0;
  				.box{
  					background: var(--theme-color);
  					width: 100%;
  					padding: 20px;
  					border-radius: 3px;
  					.inner{
  						display: flex;
  						align-items: center;
  						justify-content: flex-start;
  						.icon{
  							display: inline-flex;
  							width: 40px;
  							flex: 0 0 40px;
  							align-items: center;
  							justify-content: center;
  							svg{
  								width: auto;
  								height: 14px;
  								path{
  									fill: var(--white-color);
  								}
  							}
  						}
  						& > span{
  							font-size: 17px;
  							font-weight: 700;
  							color: var(--white-color);
  						}
  						.btn{
  							margin: 0 0 0 25px;
  						}
  					}
  				}
  				.form{
  					h2{
  						font-size: 17px;
  						line-height: 100%;
  						text-transform: uppercase;
  						color: var(--gray-n1-color);
  					}
  					form{
  						margin: 25px 0 0;
  					}
  				}
  			}

  			.applicants{
  				margin: 48px 0 0;
  				h2{
  					font-size: 17px;
  					line-height: 100%;
  					text-transform: uppercase;
  					color: var(--gray-n1-color);
  				}
  				.list{
  					background: var(--white-color);
  					margin: 25px 0 0;
  					box-shadow: 0 1px 4px var(--gray-n4-color);
  					.item{
  						padding: 25px 40px;
  						border-top: 1px solid var(--gray-n4-color);
  						span{
  							font-size: 14px;
  							font-weight: 700;
  							color: var(--gray-n1-color);
  						}
  					}
  				}
  			}
  		}
  	}
  }*/
}

#become-freelancer__intro {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#become-freelancer__intro .container {
  max-width: 820px;
}
#become-freelancer__intro .container .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
#become-freelancer__intro .container .box {
  background: var(--white-color);
  padding: 56px 40px 40px;
  margin: 106px 0 0;
  border-radius: 20px;
}
#become-freelancer__intro .container .box form > .inner h2 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#become-freelancer__intro .container .box form > .inner .payment-method {
  display: block;
}
#become-freelancer__intro .container .box form > .inner .payment-method .saved-card {
  display: flex;
  column-gap: 35px;
  padding: 27px 21px;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  align-items: center;
  justify-content: flex-start;
}
#become-freelancer__intro .container .box form > .inner .payment-method .saved-card span {
  font-size: 14px;
  line-height: 100%;
}
#become-freelancer__intro .container .box form > .inner .payment-method .saved-card span:nth-child(1) {
  font-weight: 700;
  color: var(--gray-n3-color);
}
#become-freelancer__intro .container .box form > .inner .payment-method .saved-card span:nth-child(2) {
  color: var(--gray-n3-color);
  margin: 0 0 0 clamp(35px, 4.4270833333vw, 85px);
}
#become-freelancer__intro .container .box form > .inner .payment-method .saved-card span:nth-child(3) {
  margin: 0 0 0 auto;
  color: var(--theme-color);
  cursor: pointer;
  padding: 5px 0;
}
#become-freelancer__intro .container .box form > .inner .payment-method .inner-method .items .item .tbody .inner .btn {
  margin: 25px 0 0;
}
@media screen and (orientation: portrait) {
  #become-freelancer__intro .container .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 820px) {
  #become-freelancer__intro .container .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}

#add-project__intro {
  background: var(--gray-n5-color);
  padding-top: 169px;
  z-index: 2;
}
#add-project__intro .container {
  max-width: 1092px;
}
#add-project__intro .container h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
#add-project__intro .container .sub {
  display: flex;
  column-gap: 12px;
  margin: 25px 0 0;
}
#add-project__intro .container .sub .img-container {
  width: 264px;
  flex: 0 0 264px;
  border-radius: 20px;
}
#add-project__intro .container .sub .contents {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--gray-n3-color);
  padding: 58px 48px 58px 56px;
}
#add-project__intro .container .sub .contents .inner-contents rwp-wrap ul li {
  display: flex;
  column-gap: 16px;
  align-items: flex-start;
}
#add-project__intro .container .sub .contents .inner-contents rwp-wrap ul li .icon {
  display: flex;
}
#add-project__intro .container .sub .contents .inner-contents rwp-wrap ul li .icon svg {
  width: 24px;
  height: auto;
}
#add-project__intro .container .sub .contents .inner-contents rwp-wrap ul li .text span {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--black-color);
}
#add-project__intro .container .sub .contents .inner-contents rwp-wrap ul li .text p {
  margin: 3px 0 0;
  font-size: 16px;
  line-height: 18px;
  color: var(--black-color);
}
#add-project__intro .container .sub .contents .inner-contents rwp-wrap ul li .text p a {
  color: var(--black-color);
}
#add-project__intro .container .sub .contents .inner-contents rwp-wrap ul li + li {
  margin: 27px 0 0;
}
@media screen and (orientation: portrait) {
  #add-project__intro .container h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 880px) {
  #add-project__intro .container .sub .img-container {
    display: none;
  }
  #add-project__intro .container .sub .contents {
    padding: clamp(20px, 7.4074074074vw, 40px);
  }
}
@media screen and (max-width: 820px) {
  #add-project__intro .container h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
@media screen and (max-width: 540px) {
  #add-project__intro .container h1 br {
    display: none;
  }
}
#add-project__form {
  background: var(--gray-n5-color);
  padding-top: 61px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  margin: -1px 0 0;
}
#add-project__form .container {
  display: flex;
  column-gap: 12px;
  max-width: 1092px;
  align-items: flex-start;
}
#add-project__form .container > .left {
  width: 264px;
  flex: 0 0 264px;
}
#add-project__form .container > .right {
  width: 100%;
}
#add-project__form .container > .right .steps {
  position: relative;
  display: flex;
  margin: 0 0 57px;
  align-items: flex-start;
  justify-content: space-between;
}
#add-project__form .container > .right .steps .item {
  position: relative;
  width: 33.333333333%;
  text-align: center;
  z-index: 2;
}
#add-project__form .container > .right .steps .item .inner {
  margin: 0 auto;
  width: fit-content;
}
#add-project__form .container > .right .steps .item .inner .icon {
  background: var(--gray-n4-color);
  display: flex;
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}
#add-project__form .container > .right .steps .item .inner span {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#add-project__form .container > .right .steps .item.active .icon {
  background: var(--theme-color);
}
#add-project__form .container > .right .steps .item.active span {
  color: var(--theme-color);
}
#add-project__form .container > .right .steps:before {
  background: var(--gray-n4-color);
  position: absolute;
  display: block;
  content: "";
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  max-width: 540px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 880px) {
  #add-project__form .container > .right .steps {
    display: none;
  }
}
#add-project__form .container > .right .form {
  background: var(--white-color);
  padding: 56px clamp(20px, 7.4074074074vw, 40px) 40px;
  border-radius: 20px;
}
#add-project__form .container > .right .form form > .inner h2 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#add-project__form .container > .right .preview {
  display: none;
}
#add-project__form .container > .right .preview h2 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#add-project__form .container > .right .preview .box {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
}
#add-project__form .container > .right .preview .box .top {
  background: var(--theme-color);
  padding: 20px clamp(20px, 7.4074074074vw, 40px);
}
#add-project__form .container > .right .preview .box .top .inner > ul {
  display: flex;
  column-gap: 35px;
  align-items: center;
  justify-content: space-between;
}
#add-project__form .container > .right .preview .box .top .inner > ul li {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
#add-project__form .container > .right .preview .box .top .inner > ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
#add-project__form .container > .right .preview .box .top .inner > ul li .icon svg {
  width: auto;
  height: 20px;
}
#add-project__form .container > .right .preview .box .top .inner > ul li span {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white-color);
}
#add-project__form .container > .right .preview .box .top .inner > ul li:last-child {
  margin: 0 119px 0 0;
}
@media screen and (max-width: 768px) {
  #add-project__form .container > .right .preview .box .top {
    padding: 10px clamp(20px, 7.4074074074vw, 40px);
  }
  #add-project__form .container > .right .preview .box .top > .inner {
    display: none;
  }
}
#add-project__form .container > .right .preview .box .bottom .inner .contents {
  padding: 56px clamp(20px, 7.4074074074vw, 40px) 40px;
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents h6 {
  font-size: 16px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 {
  display: table;
  margin-bottom: 25px;
  color: var(--gray-n3-color);
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + ol, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h1 + h6, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + ol, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h2 + h6, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + ol, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h3 + h6, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + ol, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h4 + h6, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + ol, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h5 + h6, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + ol, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap h6 + h6 {
  margin-top: 20px;
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p {
  color: var(--gray-n3-color);
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + ol {
  margin-top: 20px;
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap p + h6 {
  margin-top: 35px;
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol {
  padding-left: 20px;
  list-style: initial;
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul li,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol li {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + p, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + ul, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + ol,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + p,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + ul,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + ol {
  margin-top: 20px;
}
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + h1, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + h2, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + h3, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + h4, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + h5, #add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ul + h6,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + h1,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + h2,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + h3,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + h4,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + h5,
#add-project__form .container > .right .preview .box .bottom .inner .contents .inner-contents rwp-wrap ol + h6 {
  margin-top: 35px;
}
#add-project__form .container > .right .preview .box .bottom .inner > ul {
  border-bottom: 1px solid var(--gray-n5-color);
}
#add-project__form .container > .right .preview .box .bottom .inner > ul li {
  display: flex;
  column-gap: 16px;
  padding: 14px clamp(20px, 7.4074074074vw, 40px);
  border-top: 1px solid var(--gray-n5-color);
  align-items: center;
  justify-content: flex-start;
}
#add-project__form .container > .right .preview .box .bottom .inner > ul li > span {
  width: 100%;
  max-width: 316px;
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#add-project__form .container > .right .preview .box .bottom .inner > ul li .value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#add-project__form .container > .right .preview .box .bottom .inner > ul li .value .icon {
  display: flex;
  width: 20px;
  flex: 0 0 20px;
}
#add-project__form .container > .right .preview .box .bottom .inner > ul li .value .icon svg {
  width: auto;
  height: 16px;
}
#add-project__form .container > .right .preview .box .bottom .inner > ul li .value span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
@media screen and (max-width: 768px) {
  #add-project__form .container > .right .preview .box .bottom .inner > ul li > span {
    max-width: 260px;
  }
}
@media screen and (max-width: 680px) {
  #add-project__form .container > .right .preview .box .bottom .inner > ul li > span {
    max-width: 180px;
  }
}
@media screen and (max-width: 540px) {
  #add-project__form .container > .right .preview .box .bottom .inner > ul li {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  #add-project__form .container > .right .preview .box .bottom .inner > ul li > span {
    width: 100%;
    max-width: 100%;
  }
  #add-project__form .container > .right .preview .box .bottom .inner > ul li .value .icon {
    display: none;
  }
}
#add-project__form .container > .right .preview .box .bottom .inner .buttons {
  padding: clamp(20px, 7.4074074074vw, 40px);
  row-gap: 12px;
  column-gap: 12px;
}
#add-project__form .container > .right .preview > .buttons {
  margin: 45px 0 0;
  padding: 0 clamp(20px, 7.4074074074vw, 40px);
  justify-content: center;
}
#add-project__form .container > .right .submit {
  background: var(--white-color);
  display: none;
  padding: 56px clamp(20px, 7.4074074074vw, 40px) 40px;
  border-radius: 20px;
}
#add-project__form .container > .right .submit form > .inner h2 {
  font-size: 16px;
  margin: 0 0 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-color);
}
#add-project__form .container > .right .submit form > .inner .price-resume {
  display: none;
}
#add-project__form .container > .right .submit form > .inner .payment-method .saved-card {
  display: flex;
  column-gap: 35px;
  padding: 27px 21px;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  align-items: center;
  justify-content: flex-start;
}
#add-project__form .container > .right .submit form > .inner .payment-method .saved-card span {
  font-size: 14px;
  line-height: 100%;
}
#add-project__form .container > .right .submit form > .inner .payment-method .saved-card span:nth-child(1) {
  font-weight: 700;
  color: var(--gray-n3-color);
}
#add-project__form .container > .right .submit form > .inner .payment-method .saved-card span:nth-child(2) {
  color: var(--gray-n3-color);
  margin: 0 0 0 clamp(35px, 4.4270833333vw, 85px);
}
#add-project__form .container > .right .submit form > .inner .payment-method .saved-card span:nth-child(3) {
  margin: 0 0 0 auto;
  color: var(--theme-color);
  cursor: pointer;
  padding: 5px 0;
}
#add-project__form .container > .right .submit form > .inner .payment-method .inner-method .items .item .tbody .inner .btn {
  margin: 25px 0 0;
}
#add-project__form .container > .right .confirmation {
  background: var(--white-color);
  padding: 56px clamp(20px, 7.4074074074vw, 40px) 40px;
  border-radius: 20px;
  display: none;
}
#add-project__form .container > .right .confirmation .inner {
  display: flex;
  column-gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
}
#add-project__form .container > .right .confirmation .inner .contents .inner-contents h2 {
  margin: 0 0 15px;
  font-size: 28px;
  color: var(--theme-color);
  text-transform: uppercase;
}
#add-project__form .container > .right .confirmation .inner .contents .inner-contents .subtitle {
  display: block;
  width: 100%;
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  text-transform: uppercase;
}
#add-project__form .container > .right .confirmation .inner .contents .inner-contents .buttons {
  margin: 20px 0 0;
}
@media screen and (max-width: 1080px) {
  #add-project__form .container {
    flex-wrap: wrap;
  }
  #add-project__form .container > .left {
    order: 1;
  }
  #add-project__form .container > .right {
    order: 0;
  }
}
#add-project__form.cant .container > .right {
  position: relative;
  pointer-events: none;
}
#add-project__form.cant .container > .right > div:not(:last-child) {
  opacity: 0.4;
}
#add-project__form.cant .container > .right .cant-because {
  top: 0;
  transform: translate(-50%, 0);
}

#account__view {
  background: var(--gray-n5-color);
  padding-top: 200px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#account__view .container {
  display: flex;
  column-gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
#account__view .container .left {
  width: 220px;
  flex: 0 0 220px;
}
#account__view .container .left .card {
  display: flex;
  column-gap: 12px;
  margin: 0 0 35px;
  align-items: flex-start;
  justify-content: flex-start;
}
#account__view .container .left .card .profile-img {
  position: relative;
  width: 80px;
  flex: 0 0 80px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
#account__view .container .left .card .profile-img .img-container {
  background: transparent;
  width: 100%;
  height: 100%;
}
#account__view .container .left .card .profile-img .img-container .inner-img img,
#account__view .container .left .card .profile-img .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
}
#account__view .container .left .card .profile-img .img-container .inner-img .img {
  background: #ff0000;
}
#account__view .container .left .card .profile-img input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
#account__view .container .left .card .infos span {
  display: table;
  width: 100%;
  font-size: 14px;
  line-height: 100%;
}
#account__view .container .left .card .infos span:nth-child(1) {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
}
#account__view .container .left .card .infos span:nth-child(2) {
  margin: 2px 0 0;
  color: var(--gray-n3-color);
}
#account__view .container .left .card .infos span:nth-child(3) {
  margin: 5px 0 0;
  color: var(--theme-color);
  text-decoration: underline;
  cursor: pointer;
}
#account__view .container .left .menus .btn {
  display: none;
}
#account__view .container .left .menus .items .menu > span {
  display: table;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 13px;
  text-transform: uppercase;
}
#account__view .container .left .menus .items .menu ul li {
  width: fit-content;
}
#account__view .container .left .menus .items .menu ul li a {
  position: relative;
  display: flex;
  column-gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
}
#account__view .container .left .menus .items .menu ul li a .icon {
  display: flex;
  width: 16px;
  flex: 0 0 16px;
}
#account__view .container .left .menus .items .menu ul li a .icon svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
#account__view .container .left .menus .items .menu ul li a .icon svg path {
  fill: var(--theme-color);
}
#account__view .container .left .menus .items .menu ul li a span {
  font-size: 14px;
  line-height: 120%;
  color: var(--gray-n3-color);
}
#account__view .container .left .menus .items .menu ul li a:hover span {
  color: var(--theme-color);
}
#account__view .container .left .menus .items .menu ul li .ping {
  background: var(--theme-color);
  position: absolute;
  display: none;
  top: 50%;
  left: calc(100% + 8px);
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 100%;
  transform: translate(0, -50%);
}
#account__view .container .left .menus .items .menu ul li + li {
  margin: 6px 0 0;
}
#account__view .container .left .menus .items .menu + .menu {
  margin: 25px 0 0;
}
#account__view .container .left .menus .items .menu:first-child ul li a span {
  text-transform: uppercase;
}
#account__view .container .left .menus .items .menu:nth-child(2) {
  margin: 35px 0 0;
}
#account__view .container .right {
  width: 100%;
}
#account__view .container .right .services {
  display: flex;
  row-gap: 13px;
  column-gap: 8px;
  justify-content: space-between;
}
#account__view .container .right .services .service {
  display: flex;
  flex-wrap: wrap;
  row-gap: 19px;
  padding: 30px clamp(20px, 7.4074074074vw, 40px);
  width: calc(50% - 4px);
  border-radius: 20px;
  border: 1px solid var(--gray-n3-color);
  align-content: space-between;
}
#account__view .container .right .services .service .contents {
  width: 100%;
}
#account__view .container .right .services .service .contents .title {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
#account__view .container .right .services .service .contents .title > span {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
}
#account__view .container .right .services .service .contents .text {
  margin: 10px 0 0;
}
#account__view .container .right .services .service .contents .text p {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#account__view .container .right .services .service .contents .text ul {
  margin: 12px 0 0;
}
#account__view .container .right .services .service .contents .text ul li a,
#account__view .container .right .services .service .contents .text ul li span {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-n3-color);
}
#account__view .container .right .services .service .contents .text ul li:first-child a:first-child,
#account__view .container .right .services .service .contents .text ul li:first-child span:first-child {
  font-weight: 700;
}
#account__view .container .right .services .service .contents .text ul li:not(:first-child) {
  margin: 6px 0 0;
}
#account__view .container .right .services .service .contents .text ul li:not(:first-child) a,
#account__view .container .right .services .service .contents .text ul li:not(:first-child) span {
  text-decoration: underline;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.2s;
}
#account__view .container .right .services .service .contents .text ul li:not(:first-child) a:hover,
#account__view .container .right .services .service .contents .text ul li:not(:first-child) span:hover {
  color: var(--theme-color);
}
#account__view .container .right .accordions {
  margin: 13px 0 0;
}
#account__view .container .right .accordions .accordion {
  background: var(--white-color);
  border-radius: 20px;
}
#account__view .container .right .accordions .accordion .thead {
  padding: 27px clamp(20px, 7.4074074074vw, 40px);
  user-select: none;
  cursor: pointer;
}
#account__view .container .right .accordions .accordion .thead .inner {
  display: flex;
  column-gap: clamp(35px, 4.0625vw, 65px);
  align-items: center;
  justify-content: space-between;
}
#account__view .container .right .accordions .accordion .thead .inner span {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--black-color);
  text-transform: uppercase;
}
#account__view .container .right .accordions .accordion .tbody {
  padding: 0 clamp(20px, 7.4074074074vw, 40px);
  display: none;
}
#account__view .container .right .accordions .accordion .tbody .inner {
  padding: 0 0 30px;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .heading {
  display: flex;
  column-gap: 15px;
  margin: 0 0 8px;
  align-items: flex-end;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .heading .col span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .heading .col:nth-child(1) {
  width: 60%;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .heading .col:nth-child(2) {
  width: 25%;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .heading .col:nth-child(3) {
  width: 15%;
}
@media screen and (max-width: 680px) {
  #account__view .container .right .accordions .accordion .tbody .inner .table .heading .col:nth-child(1) {
    width: 100%;
  }
  #account__view .container .right .accordions .accordion .tbody .inner .table .heading .col:nth-child(2), #account__view .container .right .accordions .accordion .tbody .inner .table .heading .col:nth-child(3) {
    display: none;
  }
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list {
  border-top: 1px solid var(--gray-n5-color);
  border-bottom: 1px solid var(--gray-n5-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item {
  padding: 13px 0 15px;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top {
  display: flex;
  row-gap: 12px;
  column-gap: 15px;
  align-items: center;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col > span i {
  display: none;
  font-style: initial;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) {
  width: 60%;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) > span {
  font-size: 16px;
  font-weight: 700;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) .links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 12px;
  margin: 4px 0 0;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) .links a,
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) .links span {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) .links span {
  color: var(--theme-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) .links a,
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) .links .like-link {
  color: var(--gray-n4-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(2) {
  width: 25%;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3) {
  display: flex;
  column-gap: 5px;
  width: 15%;
  align-items: center;
  justify-content: flex-start;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3) .point {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 100%;
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).pige-pending .point {
  background: var(--pending-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).pige-pending span {
  color: var(--pending-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).open .point, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).accepted .point, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).future .point {
  background: var(--open-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).open span, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).accepted span, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).future span {
  color: var(--open-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).closed .point, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).denied .point, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).client-pending .point {
  background: var(--closed-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).closed span, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).denied span, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).client-pending span {
  color: var(--closed-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).assigned .point, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).read .point {
  background: var(--theme-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).assigned span, #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).read span {
  color: var(--theme-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).unread .point {
  background: var(--gray-n4-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3).unread span {
  color: var(--gray-n3-color);
}
@media screen and (max-width: 680px) {
  #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top {
    flex-wrap: wrap;
  }
  #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col > span i {
    display: initial;
  }
  #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(1) {
    order: 1;
    width: 100%;
  }
  #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(2) {
    order: 2;
    width: 100%;
  }
  #account__view .container .right .accordions .accordion .tbody .inner .table .list .item .top .col:nth-child(3) {
    order: 0;
    width: 100%;
  }
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .item + .item {
  border-top: 1px solid var(--gray-n5-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .table .list .no-item {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right .accordions .accordion .tbody .inner .btn {
  margin: 30px 0 0;
}
#account__view .container .right .accordions .accordion + .accordion {
  margin: 13px 0 0;
}
#account__view .container .right .accordions + .box {
  margin: 13px 0 0;
}
#account__view .container .right > .box {
  background: var(--white-color);
  padding: 24px clamp(20px, 7.4074074074vw, 40px) 40px;
  border-radius: 20px;
}
#account__view .container .right > .box h2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 26px;
  color: var(--black-color);
  text-transform: uppercase;
}
#account__view .container .right > .box .tools .item {
  display: flex;
  padding: 25px 0;
  column-gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
#account__view .container .right > .box .tools .item .img-container {
  width: 140px;
  flex: 0 0 140px;
  aspect-ratio: 3/4;
  border-radius: 10px;
}
#account__view .container .right > .box .tools .item .contents {
  width: 100%;
  max-width: 515px;
  padding: 10px 0;
}
#account__view .container .right > .box .tools .item .contents .inner-contents h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--black-color);
}
#account__view .container .right > .box .tools .item .contents .inner-contents rwp-wrap {
  margin: 8px 0 0;
}
#account__view .container .right > .box .tools .item .contents .inner-contents rwp-wrap p {
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .tools .item .contents .inner-contents .buttons {
  margin: 16px 0 0;
}
#account__view .container .right > .box .tools .item + .item {
  border-top: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .portfolio {
  display: grid;
  grid-row-gap: 8px;
  grid-column-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
#account__view .container .right > .box .portfolio .item {
  position: relative;
  display: flex;
  aspect-ratio: 16/9;
  border-radius: 20px;
  border: 1px solid var(--theme-color);
  overflow: hidden;
}
#account__view .container .right > .box .portfolio .item .img-container {
  background: none;
  width: 100%;
  height: 100%;
}
#account__view .container .right > .box .portfolio .item .img-container .inner-img .img {
  background: var(--theme-color);
}
#account__view .container .right > .box .portfolio .item > span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  z-index: 2;
}
#account__view .container .right > .box .portfolio .item .opts {
  position: absolute;
  display: flex;
  column-gap: 6px;
  top: 10px;
  right: 10px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}
#account__view .container .right > .box .portfolio .item .opts .opt {
  background: var(--white-color);
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#account__view .container .right > .box .portfolio .item .opts .opt svg {
  width: auto;
  height: 22px;
}
#account__view .container .right > .box .portfolio .item:last-child {
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#account__view .container .right > .box .portfolio .item:last-child .contents svg {
  display: block;
  width: auto;
  height: 34px;
  margin: 0 auto;
}
#account__view .container .right > .box .portfolio .item:last-child .contents svg path {
  fill: var(--theme-color);
}
#account__view .container .right > .box .portfolio .item:last-child .contents span {
  display: table;
  margin: 8px auto 0;
  text-align: center;
  white-space: nowrap;
  color: var(--theme-color);
}
#account__view .container .right > .box .portfolio .item:hover .opts {
  pointer-events: initial;
  opacity: 1;
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .portfolio {
    grid-template-columns: 100%;
  }
}
#account__view .container .right > .box .saved-card {
  display: flex;
  row-gap: 12px;
  column-gap: 35px;
  padding: 27px 21px;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  align-items: center;
  justify-content: flex-start;
}
#account__view .container .right > .box .saved-card span {
  font-size: 14px;
  line-height: 100%;
}
#account__view .container .right > .box .saved-card span:nth-child(1) {
  font-weight: 700;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .saved-card span:nth-child(2) {
  color: var(--gray-n3-color);
  margin: 0 0 0 clamp(35px, 4.4270833333vw, 85px);
}
#account__view .container .right > .box .saved-card span:nth-child(3) {
  margin: 0 0 0 auto;
  color: var(--theme-color);
  cursor: pointer;
  padding: 5px 0;
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .saved-card {
    flex-wrap: wrap;
  }
  #account__view .container .right > .box .saved-card span:nth-child(3) {
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .saved-card {
    flex-wrap: wrap;
  }
  #account__view .container .right > .box .saved-card span:nth-child(2) {
    margin: 0;
    width: 100%;
  }
  #account__view .container .right > .box .saved-card span:nth-child(3) {
    width: initial;
  }
}
#account__view .container .right > .box .payment-method {
  border-bottom: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .payment-method .item {
  border-top: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .payment-method .item .thead {
  padding: 20px;
  cursor: pointer;
}
#account__view .container .right > .box .payment-method .item .thead .inner {
  display: flex;
  column-gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
#account__view .container .right > .box .payment-method .item .thead .inner .dot {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid var(--gray-n3-color);
}
#account__view .container .right > .box .payment-method .item .tbody {
  height: 0;
  overflow: hidden;
}
#account__view .container .right > .box .payment-method .item .tbody .inner {
  padding: 0 0 40px;
}
#account__view .container .right > .box .payment-method .item .tbody .inner .form-message {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--black-color);
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field {
  width: 100%;
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field .credit-input {
  display: flex;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  color: var(--black-color);
  align-items: center;
  justify-content: flex-start;
  cursor: text;
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field .credit-input .__PrivateStripeElement {
  width: 100%;
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field .credit-input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field .credit-input::-moz-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field .credit-input:-ms-input-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field .credit-input:-moz-placeholder {
  opacity: 1;
  color: var(--gray-n4-color);
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field .credit-input.error {
  border-color: var(--error-color);
}
#account__view .container .right > .box .payment-method .item .tbody .inner .fields .field.split {
  width: calc(50% - 6px);
}
@media screen and (max-width: 768px) {
  #account__view .container .right > .box .payment-method .item .tbody .inner .fields .field.split {
    width: 100%;
  }
}
#account__view .container .right > .box .payment-method .item .tbody .inner .btn {
  margin: 25px 0 0;
}
#account__view .container .right > .box .payment-method .item.active .thead .inner .dot {
  background: var(--theme-color);
}
#account__view .container .right > .box .payment-method .item.active .tbody {
  height: auto;
}
#account__view .container .right > .box .invoices .heading {
  display: flex;
  column-gap: 15px;
  margin: 0 0 8px;
  align-items: flex-end;
}
#account__view .container .right > .box .invoices .heading .col span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .invoices .heading .col:nth-child(1) {
  width: 60%;
}
#account__view .container .right > .box .invoices .heading .col:nth-child(2) {
  width: 25%;
}
#account__view .container .right > .box .invoices .heading .col:nth-child(3) {
  width: 15%;
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .invoices .heading .col:nth-child(1) {
    width: 100%;
  }
  #account__view .container .right > .box .invoices .heading .col:nth-child(2), #account__view .container .right > .box .invoices .heading .col:nth-child(3) {
    display: none;
  }
}
#account__view .container .right > .box .invoices .list {
  border-top: 1px solid var(--gray-n5-color);
  border-bottom: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .invoices .list .item {
  display: flex;
  row-gap: 12px;
  column-gap: 15px;
  align-items: center;
  padding: 13px 0 15px;
}
#account__view .container .right > .box .invoices .list .item .col > span {
  display: table;
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .invoices .list .item .col:nth-child(1) {
  width: 60%;
}
#account__view .container .right > .box .invoices .list .item .col:nth-child(1) > span:nth-child(1) {
  font-size: 16px;
  font-weight: 700;
}
#account__view .container .right > .box .invoices .list .item .col:nth-child(1) > span:nth-child(2) {
  margin: 4px 0 0;
}
#account__view .container .right > .box .invoices .list .item .col:nth-child(2) {
  width: 25%;
}
#account__view .container .right > .box .invoices .list .item .col:nth-child(3) {
  width: 15%;
}
#account__view .container .right > .box .invoices .list .item .col:nth-child(3) a {
  font-size: 14px;
  line-height: 100%;
  color: var(--theme-color);
}
#account__view .container .right > .box .invoices .list .item + .item {
  border-top: 1px solid var(--gray-n5-color);
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .invoices .list .item {
    flex-wrap: wrap;
  }
  #account__view .container .right > .box .invoices .list .item .col > span i {
    display: initial;
  }
  #account__view .container .right > .box .invoices .list .item .col:nth-child(1) {
    width: 100%;
  }
  #account__view .container .right > .box .invoices .list .item .col:nth-child(2) {
    width: 100%;
  }
  #account__view .container .right > .box .invoices .list .item .col:nth-child(3) {
    width: 100%;
  }
}
#account__view .container .right > .box .invoices .list .no-item {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .project-fav .heading {
  display: flex;
  column-gap: 15px;
  margin: 0 0 8px;
  align-items: flex-end;
}
#account__view .container .right > .box .project-fav .heading .col span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .project-fav .heading .col:nth-child(1) {
  width: 85%;
}
#account__view .container .right > .box .project-fav .heading .col:nth-child(2) {
  width: 15%;
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .project-fav .heading .col:nth-child(1) {
    width: 100%;
  }
  #account__view .container .right > .box .project-fav .heading .col:nth-child(2) {
    display: none;
  }
}
#account__view .container .right > .box .project-fav .list {
  border-top: 1px solid var(--gray-n5-color);
  border-bottom: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .project-fav .list .item {
  padding: 13px 0 15px;
}
#account__view .container .right > .box .project-fav .list .item .top {
  display: flex;
  row-gap: 12px;
  column-gap: 15px;
  align-items: center;
}
#account__view .container .right > .box .project-fav .list .item .top .col > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) {
  width: 85%;
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) > span {
  font-size: 16px;
  font-weight: 700;
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) .links {
  display: flex;
  column-gap: 12px;
  margin: 4px 0 0;
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) .links a,
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) .links span {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) .links span {
  color: var(--theme-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) .links a,
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) .links .like-link {
  color: var(--gray-n4-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2) {
  display: flex;
  column-gap: 5px;
  width: 15%;
  align-items: center;
  justify-content: flex-start;
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2) .point {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 100%;
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).open .point, #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).accepted .point {
  background: var(--open-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).open span, #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).accepted span {
  color: var(--open-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).closed .point, #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).denied .point {
  background: var(--closed-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).closed span, #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).denied span {
  color: var(--closed-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).assigned .point, #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).read .point {
  background: var(--theme-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).assigned span, #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).read span {
  color: var(--theme-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).unread .point {
  background: var(--gray-n4-color);
}
#account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2).unread span {
  color: var(--gray-n3-color);
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .project-fav .list .item .top {
    flex-wrap: wrap;
  }
  #account__view .container .right > .box .project-fav .list .item .top .col > span i {
    display: initial;
  }
  #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(1) {
    order: 1;
    width: 100%;
  }
  #account__view .container .right > .box .project-fav .list .item .top .col:nth-child(2) {
    order: 0;
    width: 100%;
  }
}
#account__view .container .right > .box .project-fav .list .item + .item {
  border-top: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .project-fav .list .no-item {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .table .heading {
  display: flex;
  column-gap: 15px;
  margin: 0 0 8px;
  align-items: flex-end;
}
#account__view .container .right > .box .table .heading .col span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .table .heading .col:nth-child(1) {
  width: 60%;
}
#account__view .container .right > .box .table .heading .col:nth-child(2) {
  width: 25%;
}
#account__view .container .right > .box .table .heading .col:nth-child(3) {
  width: 15%;
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .table .heading .col:nth-child(1) {
    width: 100%;
  }
  #account__view .container .right > .box .table .heading .col:nth-child(2), #account__view .container .right > .box .table .heading .col:nth-child(3) {
    display: none;
  }
}
#account__view .container .right > .box .table .list {
  border-top: 1px solid var(--gray-n5-color);
  border-bottom: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .table .list .item {
  padding: 13px 0 15px;
}
#account__view .container .right > .box .table .list .item .top {
  display: flex;
  row-gap: 12px;
  column-gap: 15px;
  align-items: center;
}
#account__view .container .right > .box .table .list .item .top .col > span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .table .list .item .top .col > span i {
  display: none;
  font-style: initial;
}
#account__view .container .right > .box .table .list .item .top .col.has-image {
  display: flex;
  column-gap: 12px;
  align-items: flex-start;
}
#account__view .container .right > .box .table .list .item .top .col.has-image img,
#account__view .container .right > .box .table .list .item .top .col.has-image .img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: cover;
  object-position: center center;
}
#account__view .container .right > .box .table .list .item .top .col.has-image .contents > span {
  font-size: 16px;
  font-weight: 700;
}
#account__view .container .right > .box .table .list .item .top .col.has-image .contents .links {
  display: flex;
  column-gap: 12px;
  margin: 4px 0 0;
}
#account__view .container .right > .box .table .list .item .top .col.has-image .contents .links a,
#account__view .container .right > .box .table .list .item .top .col.has-image .contents .links span {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#account__view .container .right > .box .table .list .item .top .col.has-image .contents .links a {
  color: var(--gray-n4-color);
}
#account__view .container .right > .box .table .list .item .top .col.has-image .contents .links span {
  color: var(--theme-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) {
  width: 60%;
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) > span {
  font-size: 16px;
  font-weight: 700;
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) .links {
  display: flex;
  column-gap: 12px;
  margin: 4px 0 0;
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) .links a,
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) .links span {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) .links span {
  color: var(--theme-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) .links a,
#account__view .container .right > .box .table .list .item .top .col:nth-child(1) .links .like-link {
  color: var(--gray-n4-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(2) {
  width: 25%;
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3) {
  display: flex;
  column-gap: 5px;
  width: 15%;
  align-items: center;
  justify-content: flex-start;
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3) .point {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 100%;
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).pige-pending .point {
  background: var(--pending-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).pige-pending span {
  color: var(--pending-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).open .point, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).accepted .point, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).future .point {
  background: var(--open-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).open span, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).accepted span, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).future span {
  color: var(--open-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).closed .point, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).denied .point, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).client-pending .point {
  background: var(--closed-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).closed span, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).denied span, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).client-pending span {
  color: var(--closed-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).assigned .point, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).read .point, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).not-me .point, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).me .point {
  background: var(--theme-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).assigned span, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).read span, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).not-me span, #account__view .container .right > .box .table .list .item .top .col:nth-child(3).me span {
  color: var(--theme-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).unread .point {
  background: var(--gray-n4-color);
}
#account__view .container .right > .box .table .list .item .top .col:nth-child(3).unread span {
  color: var(--gray-n3-color);
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .table .list .item .top {
    flex-wrap: wrap;
  }
  #account__view .container .right > .box .table .list .item .top .col > span i {
    display: initial;
  }
  #account__view .container .right > .box .table .list .item .top .col:nth-child(1) {
    order: 1;
    width: 100%;
  }
  #account__view .container .right > .box .table .list .item .top .col:nth-child(2) {
    order: 2;
    width: 100%;
  }
  #account__view .container .right > .box .table .list .item .top .col:nth-child(3) {
    order: 0;
    width: 100%;
  }
}
#account__view .container .right > .box .table .list .item + .item {
  border-top: 1px solid var(--gray-n5-color);
}
#account__view .container .right > .box .table .list .no-item {
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--gray-n3-color);
}
#account__view .container .right > .box .table.discussions .heading,
#account__view .container .right > .box .table.discussions .list .item .top {
  column-gap: 12px;
}
#account__view .container .right > .box .table.discussions .heading .col span,
#account__view .container .right > .box .table.discussions .list .item .top .col span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n3-color);
  white-space: nowrap;
}
#account__view .container .right > .box .table.discussions .heading .col:nth-child(1),
#account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(1) {
  width: 230px;
  flex: 0 0 230px;
}
#account__view .container .right > .box .table.discussions .heading .col:nth-child(1) .contents > span,
#account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(1) .contents > span {
  white-space: nowrap;
}
#account__view .container .right > .box .table.discussions .heading .col:nth-child(1) .contents .links a,
#account__view .container .right > .box .table.discussions .heading .col:nth-child(1) .contents .links span,
#account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(1) .contents .links a,
#account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(1) .contents .links span {
  white-space: nowrap;
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .table.discussions .heading .col:nth-child(1),
  #account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(1) {
    width: 100%;
    flex: initial;
  }
}
#account__view .container .right > .box .table.discussions .heading .col:nth-child(2),
#account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(2) {
  width: 55%;
}
#account__view .container .right > .box .table.discussions .heading .col:nth-child(2) span,
#account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(2) span {
  white-space: initial;
}
@media screen and (max-width: 680px) {
  #account__view .container .right > .box .table.discussions .heading .col:nth-child(2),
  #account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(2) {
    display: none;
  }
}
#account__view .container .right > .box .table.discussions .heading .col:nth-child(3),
#account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(3) {
  width: 15%;
}
@media screen and (max-width: 820px) {
  #account__view .container .right > .box .table.discussions .heading .col:nth-child(3),
  #account__view .container .right > .box .table.discussions .list .item .top .col:nth-child(3) {
    display: none;
  }
}
#account__view .container .right > .box .table.discussions .list .item {
  position: relative;
}
#account__view .container .right > .box .table.discussions .list .item.unread:before {
  background: var(--theme-color);
  position: absolute;
  display: block;
  content: "";
  top: 8px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 2;
}
#account__view .container .right > .box .pagination {
  display: flex;
  width: fit-content;
  margin: 41px 0 0 auto;
  align-items: center;
  justify-content: flex-end;
}
#account__view .container .right > .box .pagination .arrow {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#account__view .container .right > .box .pagination .arrow svg {
  width: auto;
  height: 22px;
}
#account__view .container .right > .box .pagination input {
  width: 40px;
  height: 30px;
  font-size: 16px;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--gray-n3-color);
  color: var(--black-color);
  text-align: center;
  appearance: none;
  -moz-appearance: textfield;
}
#account__view .container .right > .box .pagination input::-webkit-inner-spin-button, #account__view .container .right > .box .pagination input::-webkit-outer-spin-button {
  display: none;
  appearance: none;
}
#account__view .container .right > .box form {
  margin: 26px 0 0;
}
#account__view .container .right > .box form .inner .fields .field textarea {
  resize: vertical;
}
#account__view .container .right > .box form .inner .buttons {
  position: relative;
  margin: 55px 0 0;
}
#account__view .container .right > .box form .inner .buttons.profile-img {
  margin: 0;
}
#account__view .container .right > .box form .inner .buttons #profile-img-input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
#account__view .container .right > .box + .box {
  margin: 13px 0 0;
}
#account__view .container .right > .box.edit-box {
  position: absolute;
  pointer-events: none;
  margin: 0;
  opacity: 0;
}
#account__view .container .right > .box.edit-box .top-box {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  margin: 0 0 26px;
  align-items: center;
  justify-content: space-between;
}
#account__view .container .right > .box.edit-box .top-box h2 {
  margin: 0;
}
#account__view .container .right > .box.edit-box .top-box span {
  font-size: 16px;
  cursor: pointer;
}
#account__view .container .right > .box.edit-box form .reason {
  background: var(--error-color);
  border-radius: 10px;
  margin: 0 0 13px;
  padding: 20px;
}
#account__view .container .right > .box.edit-box form .reason p {
  font-size: 16px;
  line-height: 140%;
  color: var(--white-color);
}
#account__view .container .right {
  /*.stats{
  	display: flex;
  	flex-wrap: wrap;
  	row-gap: 8px;
  	column-gap: 8px;
  	margin: 35px 0 0;
  	.stat{
  		background: var(--white-color);
  		width: 100%;
  		min-height: 80px;
  		padding: 30px 40px;
  		border-radius: 20px;
  		border-left: 4px solid var(--theme-color);
  		box-shadow: 0 0 4px var(--gray-n3-color);
  		span{
  			display: table;
  			font-size: 16px;
  			line-height: 100%;
  			&:nth-child(1){
  				margin: 0 0 6px;
  				font-weight: 700;
  				text-transform: uppercase;
  			}
  		}
  		&.col-6{
  			width: calc(50% - 4px);
  		}
  		&.col-4{
  			width: calc(33.3333333333% - 5.3333333333px);
  		}
  	}
  }*/
}
@media screen and (max-width: 1080px) {
  #account__view .container {
    flex-wrap: wrap;
  }
  #account__view .container .left {
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 35px;
    width: 100%;
    flex: 0 0 100%;
    margin: 0 0 35px;
    align-items: flex-start;
    justify-content: space-between;
  }
  #account__view .container .left .card {
    margin: 0 0 0;
  }
  #account__view .container .left .menus {
    width: 100%;
    max-width: 480px;
  }
  #account__view .container .left .menus .btn {
    display: flex;
    margin: 0 0 0 auto;
    align-items: center;
    justify-content: center;
  }
  #account__view .container .left .menus .items {
    background: var(--white-color);
    display: none;
    flex-wrap: wrap;
    row-gap: 25px;
    margin: 12px 0 0;
    padding: 40px clamp(20px, 7.4074074074vw, 40px);
    border-radius: 20px;
    align-items: flex-start;
    justify-content: space-between;
  }
  #account__view .container .left .menus .items .menu {
    width: 50%;
  }
  #account__view .container .left .menus .items .menu:nth-child(1) {
    width: 100%;
  }
  #account__view .container .left .menus .items .menu + .menu {
    margin: 0;
  }
}
@media screen and (max-width: 798px) {
  #account__view .container .left .menus .btn {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #account__view .container .right .services {
    flex-wrap: wrap;
  }
  #account__view .container .right .services .service {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  #account__view .container .left .menus .items .menu {
    width: 100%;
  }
  #account__view .container .right .box .tools .item .img-container {
    display: none;
  }
}

/*#account_{
	&_view{
		background: var(--gray-n5-color);
		padding-top: 200px;
		padding-bottom: clamp(80px, vw(120px, 820px), 120px);
		.container{
			display: flex;
			flex-wrap: wrap;
			column-gap: 65px;
			align-items: flex-start;
			justify-content: space-between;
			& > .left{
				width: 282px;
				flex: 0 0 282px;
				.top{
					.up{
						display: flex;
						column-gap: 25px;
						.img-container{
							width: 64px;
							height: 64px;
							flex: 0 0 64px;
							.inner-img{
								img,
								.img{

								}
							}
						}
						.contents{
							span{
								display: table;
								color: var(--gray-n1-color);
								&:nth-child(1){
									font-size: 14px;
								}
								&:nth-child(2){
									font-size: 12px;
									font-weight: 700;
									margin: 4px 0 0;
									text-transform: uppercase;
								}
								&:nth-child(3){
									font-size: 11px;
									margin: 15px 0 0;
									text-decoration: underline;
									cursor: pointer;
								}
							}
						}
					}
					.down{
						margin: 12px 0 0;
						border-top: 1px solid var(--gray-n4-color);
						border-bottom: 1px solid var(--gray-n4-color);
						a{
							display: flex;
							width: 100%;
							padding: 12px 0;
							.icon{
								display: inline-flex;
								width: 40px;
								flex: 0 0 40px;
								align-items: center;
								justify-content: center;
								svg{
									width: auto;
									height: 14px;
									path{
										fill: var(--gray-n1-color);
									}
								}
							}
							span{
								font-size: 14px;
								text-transform: uppercase;
								color: var(--gray-n1-color);
							}
							&:hover{
								.icon{
									svg{
										path{
											fill: var(--theme-color);
										}
									}
								}
								span{
									color: var(--theme-color);
								}
							}
						}
					}
				}
				.bottom{
					.item{
						padding: 16px 0;
						& > span{
							display: table;
							font-size: 12px;
							font-weight: 700;
							margin: 0 0 12px;
							text-transform: uppercase;
							color: var(--gray-n1-color);
						}
						ul{
							li{
								a{
									display: flex;
									.icon{
										display: inline-flex;
										width: 40px;
										flex: 0 0 40px;
										align-items: center;
										justify-content: center;
										svg{
											width: auto;
											height: 14px;
											path{
												fill: var(--gray-n1-color);
											}
										}
									}
									span{
										font-size: 14px;
										color: var(--gray-n1-color);
									}
									&:hover{
										.icon{
											svg{
												path{
													fill: var(--theme-color);
												}
											}
										}
										span{
											color: var(--theme-color);
										}
									}
								}
								& + li{
									margin: 6px 0 0;
								}
							}
						}
						& + .item{
							border-top: 1px solid var(--gray-n4-color);
						}
					}
				}
			}
			& > .right{
				width: calc(100% - 347px);
				.services{
					h2{
						font-size: 17px;
						line-height: 100%;
						text-transform: uppercase;
						color: var(--gray-n1-color);
						margin: 0 0 25px;
					}
					.boxes{
						display: flex;
						row-gap: 24px;
						column-gap: 24px;
						justify-content: space-between;
						.box{
							background: var(--white-color);
							width: calc(50% - 12px);
							padding: 40px;
							box-shadow: 0 1px 4px var(--gray-n4-color);
							.badge{
								width: fit-content;
								padding: 6px;
								margin: 0 0 18px;
								border-radius: 3px;
								span{
									font-size: 12px;
									line-height: 100%;
									color: var(--white-color);
								}
								&.enable{
									background: var(--open-color);
								}
								&.disable{
									background: var(--closed-color);
								}
							}
							h3{
								font-size: 17px;
								line-height: 100%;
								color: var(--gray-n1-color);
							}
							p{
								font-size: 14px;
								line-height: 140%;
								color: var(--gray-n5-color);
								margin: 4px 0 0;
							}
							.btn{
								margin: 16px 0 0;
								span{
									font-size: 14px;
								}
							}
						}
					}
				}
				.projects{
					margin: 65px 0 0;
					h2{
						font-size: 17px;
						line-height: 100%;
						text-transform: uppercase;
						color: var(--gray-n1-color);
						margin: 0 0 25px;
					}
				}
				.applications{
					margin: 65px 0 0;
					h2{
						font-size: 17px;
						line-height: 100%;
						text-transform: uppercase;
						color: var(--gray-n1-color);
						margin: 0 0 25px;
					}
				}
				.discussions{
					margin: 65px 0 0;
					h2{
						font-size: 17px;
						line-height: 100%;
						text-transform: uppercase;
						color: var(--gray-n1-color);
						margin: 0 0 25px;
					}
				}
			}
		}
	}
}*/
#faq__intro {
  background: var(--gray-n5-color);
  padding-top: 169px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
#faq__intro .container {
  max-width: 1092px;
}
#faq__intro .container .contents .inner-contents .uptitle {
  display: table;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
}
#faq__intro .container .contents .inner-contents h1 {
  font-size: clamp(48px, 3.6458333333vw, 70px);
  line-height: clamp(130%, 4.1666666667vw, 80px);
  color: var(--theme-color);
  text-align: center;
}
@media screen and (orientation: portrait) {
  #faq__intro .container .contents .inner-contents h1 {
    font-size: clamp(48px, 3.6458333333vw, 70px);
    line-height: clamp(130%, 4.1666666667vw, 80px);
  }
}
@media screen and (max-width: 820px) {
  #faq__intro .container .contents .inner-contents h1 {
    font-size: clamp(32px, 5.8536585366vw, 48px);
  }
}
#faq__list {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
}
#faq__list .container {
  max-width: 1092px;
}
#faq__list .container .list {
  border-bottom: 1px solid var(--gray-n4-color);
}
#faq__list .container .list .item {
  border-top: 1px solid var(--gray-n4-color);
}
#faq__list .container .list .item .thead {
  padding: 40px 20px 35px;
  cursor: pointer;
}
#faq__list .container .list .item .thead .inner {
  display: flex;
  width: 100%;
  column-gap: 35px;
  align-items: center;
  justify-content: space-between;
}
#faq__list .container .list .item .thead .inner h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: var(--gray-n3-color);
  text-transform: uppercase;
}
#faq__list .container .list .item .thead .inner .icon {
  display: flex;
}
#faq__list .container .list .item .thead .inner .icon svg {
  width: 12px;
  height: auto;
}
#faq__list .container .list .item .tbody {
  height: 1px;
  overflow: hidden;
  padding: 0 20px;
}
#faq__list .container .list .item .tbody .inner {
  padding: 0 0 40px;
  max-width: 840px;
}
#faq__list .container .list .item .tbody .inner p {
  color: var(--gray-n4-color);
}
#faq__list .container .list .item .tbody .inner p + p {
  margin: 25px 0 0;
}

#how-it-work-client__intro {
  padding-top: 180px;
  padding-bottom: 60px;
}
#how-it-work-client__intro .container {
  display: flex;
  column-gap: 35px;
  align-items: flex-start;
  justify-content: space-between;
}
#how-it-work-client__intro .container .contents {
  width: 100%;
  max-width: 723px;
}
#how-it-work-client__intro .container .contents .inner-contents h1 {
  font-size: 30px;
  line-height: 37px;
  color: var(--theme-color);
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap {
  margin: 10px 0 0;
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap > span {
  display: table;
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap > span:nth-child(1) {
  font-size: 15px;
  line-height: 100%;
  color: var(--gray-n3-color);
  text-transform: uppercase;
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap > span:nth-child(2) {
  margin: 10px 0 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--black-color);
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap > span:nth-child(2) sup {
  font-size: 9.5px;
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap p {
  font-size: 16px;
  line-height: 23px;
  margin-top: 25px;
  color: var(--black-color);
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap p a {
  color: var(--black-color);
}
#how-it-work-client__intro .container .contents .inner-contents rwp-wrap > a {
  display: table;
  font-size: 14px;
  line-height: 100%;
  margin-top: 12px;
  color: var(--gray-n3-color);
  text-decoration: underline;
}
#how-it-work-client__intro .container .img-container {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1/1;
}
#how-it-work-client__intro .container .img-container .inner-img img,
#how-it-work-client__intro .container .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 768px) {
  #how-it-work-client__intro .container .img-container {
    display: none;
  }
}
#how-it-work-client__video {
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-client__video .container iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#how-it-work-client__video .container .btn {
  margin: 35px auto 0;
}
#how-it-work-client__list {
  background: var(--gray-n5-color);
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-client__list .container h2 {
  width: 100%;
  font-size: 24px;
  line-height: 33px;
  color: var(--theme-color);
  text-transform: uppercase;
  text-align: center;
}
#how-it-work-client__list .container .list {
  margin: 20px auto 0;
}
#how-it-work-client__list .container .list .item {
  background: var(--white-color);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 60px;
}
#how-it-work-client__list .container .list .item .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#how-it-work-client__list .container .list .item .inner .contents {
  width: 100%;
  max-width: 600px;
}
#how-it-work-client__list .container .list .item .inner .contents .inner-contents h3 {
  font-size: 24px;
  line-height: 100%;
  color: var(--black-color);
}
#how-it-work-client__list .container .list .item .inner .contents .inner-contents rwp-wrap {
  margin: 25px 0 0;
}
#how-it-work-client__list .container .list .item .inner .contents .inner-contents rwp-wrap p {
  font-size: 16px;
  line-height: 23px;
  color: var(--gray-n3-color);
}
#how-it-work-client__list .container .list .item .inner .contents .inner-contents rwp-wrap p a {
  color: var(--gray-n3-color);
}
#how-it-work-client__list .container .list .item .inner .contents .inner-contents rwp-wrap p + p, #how-it-work-client__list .container .list .item .inner .contents .inner-contents rwp-wrap p + a {
  margin: 25px 0 0;
}
#how-it-work-client__list .container .list .item .inner .contents .inner-contents rwp-wrap a {
  display: table;
  font-size: 16px;
  line-height: 23px;
  color: var(--gray-n3-color);
  text-decoration: underline;
}
#how-it-work-client__list .container .list .item .inner .img-container {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1/1;
}
#how-it-work-client__list .container .list .item .inner .img-container .inner-img img,
#how-it-work-client__list .container .list .item .inner .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 768px) {
  #how-it-work-client__list .container .list .item .inner .img-container {
    display: none;
  }
}
#how-it-work-client__list .container .list .item + .item {
  margin: 30px 0 0;
}
@media screen and (max-width: 600px) {
  #how-it-work-client__list .container .list .item {
    padding: 60px clamp(20px, 7.4074074074vw, 40px);
  }
}
#how-it-work-client__list .container .btn {
  margin: 25px auto 10px;
}
#how-it-work-client__list .container > span {
  display: table;
  margin: 0 auto;
  text-align: center;
}
#how-it-work-client__last-text {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-client__last-text .container {
  display: flex;
  column-gap: 35px;
  border-bottom: 1px solid var(--gray-n5-color);
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-client__last-text .container .contents {
  width: 100%;
  max-width: 723px;
}
#how-it-work-client__last-text .container .contents .inner-contents h2 {
  font-size: 30px;
  line-height: 37px;
  color: var(--theme-color);
}
#how-it-work-client__last-text .container .contents .inner-contents rwp-wrap {
  margin: 10px 0 0;
}
#how-it-work-client__last-text .container .contents .inner-contents rwp-wrap p {
  font-size: 16px;
  line-height: 23px;
  margin-top: 25px;
  color: var(--black-color);
}
#how-it-work-client__last-text .container .contents .inner-contents rwp-wrap p a {
  color: var(--black-color);
}
#how-it-work-client__last-text .container .contents .inner-contents rwp-wrap > a {
  display: table;
  font-size: 14px;
  line-height: 100%;
  margin-top: 12px;
  color: var(--gray-n3-color);
  text-decoration: underline;
}
#how-it-work-client__last-text .container .img-container {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1/1;
}
#how-it-work-client__last-text .container .img-container .inner-img img,
#how-it-work-client__last-text .container .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 768px) {
  #how-it-work-client__last-text .container .img-container {
    display: none;
  }
}

#how-it-work-freelancer__intro {
  padding-top: 180px;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-freelancer__intro .container {
  display: flex;
  column-gap: 35px;
  align-items: flex-start;
  justify-content: space-between;
}
#how-it-work-freelancer__intro .container .contents {
  width: 100%;
  max-width: 723px;
}
#how-it-work-freelancer__intro .container .contents .inner-contents h1 {
  font-size: 30px;
  line-height: 37px;
  color: var(--theme-color);
}
#how-it-work-freelancer__intro .container .contents .inner-contents rwp-wrap {
  margin: 10px 0 0;
}
#how-it-work-freelancer__intro .container .contents .inner-contents rwp-wrap > span {
  display: table;
}
#how-it-work-freelancer__intro .container .contents .inner-contents rwp-wrap > span:nth-child(1) {
  margin: 10px 0 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--black-color);
}
#how-it-work-freelancer__intro .container .contents .inner-contents rwp-wrap > span:nth-child(1) sup {
  font-size: 9.5px;
}
#how-it-work-freelancer__intro .container .contents .inner-contents rwp-wrap p {
  font-size: 16px;
  line-height: 23px;
  margin-top: 25px;
  color: var(--black-color);
}
#how-it-work-freelancer__intro .container .contents .inner-contents rwp-wrap p a {
  color: var(--black-color);
}
#how-it-work-freelancer__intro .container .contents .inner-contents rwp-wrap > a {
  display: table;
  font-size: 14px;
  line-height: 100%;
  margin-top: 12px;
  color: var(--gray-n3-color);
  text-decoration: underline;
}
#how-it-work-freelancer__intro .container .img-container {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1/1;
}
#how-it-work-freelancer__intro .container .img-container .inner-img img,
#how-it-work-freelancer__intro .container .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 768px) {
  #how-it-work-freelancer__intro .container .img-container {
    display: none;
  }
}
#how-it-work-freelancer__qa {
  background: var(--theme-color);
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-freelancer__qa .container .contents {
  text-align: center;
}
#how-it-work-freelancer__qa .container .contents .inner-contents h2 {
  font-size: 22px;
  line-height: 100%;
  color: var(--white-color);
  text-transform: uppercase;
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap {
  margin: 10px 0 0;
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap p {
  font-size: 15px;
  line-height: 23px;
  color: var(--white-color);
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap .list {
  display: grid;
  margin: 45px 0 0;
  grid-row-gap: 35px;
  grid-column-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap .list .item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap .list .item .icon svg {
  width: auto;
  height: 50px;
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap .list .item .icon svg path {
  fill: var(--white-color);
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap .list .item h3 {
  width: 100%;
  font-size: 15px;
  line-height: 100%;
  margin: 15px 0 8px;
  color: var(--white-color);
  text-transform: uppercase;
}
#how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap .list .item p a {
  font-weight: 700;
  color: var(--black-color);
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  #how-it-work-freelancer__qa .container .contents .inner-contents rwp-wrap .list {
    grid-template-columns: 100%;
  }
}
#how-it-work-freelancer__with-free-account {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-freelancer__with-free-account .container .contents {
  text-align: center;
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents h2 {
  font-size: 22px;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap {
  margin: 10px 0 0;
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap p {
  font-size: 15px;
  line-height: 23px;
  color: var(--black-color);
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list {
  display: grid;
  margin: 45px 0 0;
  grid-row-gap: 35px;
  grid-column-gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list .item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list .item .icon svg {
  width: auto;
  height: 50px;
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list .item .icon svg path {
  fill: var(--black-color);
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list .item h3 {
  width: 100%;
  font-size: 15px;
  line-height: 100%;
  margin: 15px 0 8px;
  color: var(--black-color);
  text-transform: uppercase;
}
#how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list .item p a {
  font-weight: 700;
  color: var(--black-color);
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  #how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  #how-it-work-freelancer__with-free-account .container .contents .inner-contents rwp-wrap .list {
    grid-template-columns: 100%;
  }
}
#how-it-work-freelancer__more {
  background: var(--gray-n5-color);
  padding-top: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-freelancer__more .container .contents {
  text-align: center;
}
#how-it-work-freelancer__more .container .contents .inner-contents h2 {
  font-size: 22px;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap {
  margin: 10px 0 0;
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap p {
  font-size: 15px;
  line-height: 23px;
  color: var(--black-color);
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list {
  display: grid;
  margin: 45px 0 0;
  grid-row-gap: 35px;
  grid-column-gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list .item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list .item .icon svg {
  width: auto;
  height: 50px;
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list .item .icon svg path {
  fill: var(--black-color);
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list .item h3 {
  width: 100%;
  font-size: 15px;
  line-height: 100%;
  margin: 15px 0 8px;
  color: var(--black-color);
  text-transform: uppercase;
}
#how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list .item p a {
  font-weight: 700;
  color: var(--black-color);
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  #how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  #how-it-work-freelancer__more .container .contents .inner-contents rwp-wrap .list {
    grid-template-columns: 100%;
  }
}
#how-it-work-freelancer__testimonials {
  border-radius: 0;
}
#how-it-work-freelancer__last-text {
  padding-top: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-freelancer__last-text .container {
  display: flex;
  column-gap: 35px;
  border-bottom: 1px solid var(--gray-n5-color);
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
#how-it-work-freelancer__last-text .container .contents {
  width: 100%;
  max-width: 723px;
}
#how-it-work-freelancer__last-text .container .contents .inner-contents h2 {
  font-size: 30px;
  line-height: 37px;
  color: var(--theme-color);
}
#how-it-work-freelancer__last-text .container .contents .inner-contents rwp-wrap {
  margin: 10px 0 0;
}
#how-it-work-freelancer__last-text .container .contents .inner-contents rwp-wrap p {
  font-size: 16px;
  line-height: 23px;
  margin-top: 25px;
  color: var(--black-color);
}
#how-it-work-freelancer__last-text .container .contents .inner-contents rwp-wrap p a {
  color: var(--black-color);
}
#how-it-work-freelancer__last-text .container .contents .inner-contents rwp-wrap > a {
  display: table;
  font-size: 14px;
  line-height: 100%;
  margin-top: 12px;
  color: var(--gray-n3-color);
  text-decoration: underline;
}
#how-it-work-freelancer__last-text .container .img-container {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1/1;
}
#how-it-work-freelancer__last-text .container .img-container .inner-img img,
#how-it-work-freelancer__last-text .container .img-container .inner-img .img {
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 768px) {
  #how-it-work-freelancer__last-text .container .img-container {
    display: none;
  }
}

footer .top,
footer .middle,
footer .bottom {
  padding-left: 35px;
  padding-right: 35px;
}
footer .top {
  background: var(--theme-color);
  padding-top: 30px;
  padding-bottom: 30px;
}
footer .top .container {
  display: grid;
  grid-row-gap: 35px;
  grid-template-columns: repeat(4, 1fr);
}
footer .top .container .item {
  display: flex;
  flex-wrap: wrap;
  padding: 0 18px;
  border-left: 2px solid var(--subtheme-color);
}
footer .top .container .item span {
  display: flex;
  width: 100%;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white-color);
  align-items: flex-end;
}
footer .top .container .item span:nth-child(1) {
  font-size: 15px;
}
footer .top .container .item span:nth-child(2) {
  font-size: 30px;
  font-weight: 600;
  margin: 2px 0 6px;
}
footer .top .container .item span:nth-child(2) small {
  font-size: 15px;
  line-height: 15px;
  transform: translate(0, -4px);
}
footer .top .container .item span:nth-child(3) {
  font-size: 17px;
}
footer .middle {
  background: var(--gray-n2-color);
  padding-top: clamp(80px, 14.6341463415vw, 120px);
  padding-bottom: clamp(80px, 14.6341463415vw, 120px);
}
footer .middle .container {
  display: flex;
  column-gap: 25px;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .middle .container .col {
  width: 100%;
  max-width: 270px;
}
footer .middle .container .col .item h2 {
  display: flex;
  column-gap: 9px;
  font-size: 16px;
  margin: 0 0 22px;
  text-transform: uppercase;
  color: var(--white-color);
  align-items: center;
  justify-content: flex-start;
}
footer .middle .container .col .item h2 a {
  display: flex;
  column-gap: 9px;
  color: var(--white-color);
  align-items: center;
  justify-content: flex-start;
}
footer .middle .container .col .item h2 svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}
footer .middle .container .col .item h2 svg path {
  fill: var(--gray-n4-color);
}
footer .middle .container .col .item ul {
  padding: 0 0 0 12px;
  border-left: 1px solid var(--gray-n3-color);
}
footer .middle .container .col .item ul li {
  color: var(--white-color);
}
footer .middle .container .col .item ul li a {
  font-size: 14px;
  color: var(--white-color);
}
footer .middle .container .col .item ul li + li {
  margin: 12px 0 0;
}
footer .middle .container .col .item + .item {
  margin: 35px 0 0;
}
footer .middle .container .col:nth-child(1) .item:nth-child(2) ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
}
footer .middle .container .col:nth-child(1) .item:nth-child(2) ul li + li {
  margin: 0;
}
footer .middle .container .col:last-child {
  max-width: 380px;
  margin: 0 0 0 9.375vw;
}
@media screen and (max-width: 820px) {
  footer .middle .container .col:last-child {
    margin: 0;
  }
}
footer .bottom {
  background: var(--gray-n1-color);
  padding-top: 22px;
  padding-bottom: 22px;
}
footer .bottom .container ul {
  display: flex;
  width: 100%;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
}
footer .bottom .container ul li {
  display: flex;
  column-gap: 6px;
  align-items: center;
}
footer .bottom .container ul li a,
footer .bottom .container ul li span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n4-color);
}
footer .bottom .container ul li + li:before {
  background: var(--gray-n4-color);
  content: "";
  width: 1px;
  height: 12px;
}
@media screen and (max-width: 820px) {
  footer .middle .container {
    row-gap: 35px;
    flex-wrap: wrap;
  }
  footer .middle .container .col {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  footer .top {
    padding-top: clamp(80px, 14.6341463415vw, 120px);
    padding-bottom: clamp(80px, 14.6341463415vw, 120px);
  }
  footer .top .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 540px) {
  footer .top .container {
    grid-template-columns: 100%;
  }
  footer .bottom .container ul {
    flex-wrap: wrap;
  }
  footer .bottom .container ul li {
    width: 100%;
  }
  footer .bottom .container ul li + li {
    margin: 12px 0 0;
  }
  footer .bottom .container ul li + li:before {
    display: none;
  }
}