/*
* 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;
}*/
a {
  text-decoration: none;
}

p {
  margin: 0;
}

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

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

section {
  position: relative;
}

#viewport {
  height: 100%;
  min-height: 100lvh;
}
#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;
  column-gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.btn {
  background: transparent;
  position: relative;
  display: flex;
  width: fit-content;
  height: 51px;
  padding: 0 25px;
  border-radius: 3px;
  border: 2px solid var(--black-color);
  transition-property: background, border-color;
  transition-duration: 0.2s, 0.2s;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn span {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  transition-property: color;
  transition-duration: 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn.green {
  background: var(--green-n1-color);
  border-color: var(--green-n1-color);
}
.btn.green span {
  color: var(--white-color);
}
.btn.green.bordered {
  background: transparent;
}
.btn.green.bordered span {
  color: var(--green-n1-color);
}
.btn.green:hover {
  background: var(--gray-n2-color);
  border-color: var(--gray-n2-color);
}
.btn.green:hover span {
  color: var(--white-color);
}
.btn.blue {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.btn.blue span {
  color: var(--white-color);
}
.btn.blue.bordered {
  background: transparent;
}
.btn.blue.bordered span {
  color: var(--theme-color);
}
.btn.blue:hover {
  background: var(--gray-n2-color);
  border-color: var(--gray-n2-color);
}
.btn.blue:hover span {
  color: var(--white-color);
}
.btn.white {
  background: var(--white-color);
  border-color: var(--white-color);
}
.btn.white span {
  color: var(--theme-color);
}
.btn.white.bordered {
  background: transparent;
}
.btn.white.bordered span {
  color: var(--white-color);
}
.btn.white:hover {
  background: var(--gray-n2-color);
  border-color: var(--gray-n2-color);
}
.btn.white:hover span {
  color: var(--white-color);
}

.img-container {
  background: #ff0000;
}
.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 {
  background: var(--white-color);
  margin: 25px 0 0;
  padding: 40px;
  box-shadow: 0 1px 4px var(--gray-n4-color);
}
form .form-message {
  font-size: 16px;
  line-height: 100%;
  margin: 0 0 8px;
  color: var(--gray-n1-color);
}
form .fields .field .el input,
form .fields .field .el select,
form .fields .field .el textarea {
  background: transparent;
  width: 100%;
  font-size: 14px;
  line-height: 140%;
  border-radius: 3px;
  border: 1px solid var(--gray-n1-color);
}
form .fields .field .el input::-webkit-input-placeholder,
form .fields .field .el select::-webkit-input-placeholder,
form .fields .field .el textarea::-webkit-input-placeholder {
  opacity: 0.4;
  color: var(--gray-n1-color);
}
form .fields .field .el input::-moz-placeholder,
form .fields .field .el select::-moz-placeholder,
form .fields .field .el textarea::-moz-placeholder {
  opacity: 0.4;
  color: var(--gray-n1-color);
}
form .fields .field .el input:-ms-input-placeholder,
form .fields .field .el select:-ms-input-placeholder,
form .fields .field .el textarea:-ms-input-placeholder {
  opacity: 0.4;
  color: var(--gray-n1-color);
}
form .fields .field .el input:-moz-placeholder,
form .fields .field .el select:-moz-placeholder,
form .fields .field .el textarea:-moz-placeholder {
  opacity: 0.4;
  color: var(--gray-n1-color);
}
form .fields .field .el input.error,
form .fields .field .el select.error,
form .fields .field .el textarea.error {
  border-color: var(--error-color);
}
form .fields .field .counter {
  display: flex;
  column-gap: 16px;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
form .fields .field .counter .left span,
form .fields .field .counter .right span {
  font-size: 12px;
  line-height: 100%;
  color: var(--gray-n5-color);
}
form .fields .field .counter .left span i,
form .fields .field .counter .right span i {
  font-style: initial;
}
form .fields .field .counter .right {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
form .fields .field .notice {
  margin: 6px 0 0;
}
form .fields .field .notice p {
  font-size: 12px;
  line-height: 140%;
  color: var(--gray-n5-color);
}
form .fields .field.input .el input {
  height: 50px;
  padding: 0 30px;
  color: var(--gray-n1-color);
}
form .fields .field.select .el select {
  height: 50px;
  padding: 0 30px;
  appearance: none;
  color: rgba(27, 27, 27, 0.4);
  cursor: pointer;
}
form .fields .field.select .el select option {
  color: var(--gray-n1-color);
}
form .fields .field.select .el select.selected {
  color: var(--gray-n1-color);
}
form .fields .field.textarea .el textarea {
  height: 220px;
  padding: 25px 30px;
  color: var(--gray-n1-color);
  resize: vertical;
}
form .fields .field + .field {
  margin: 16px 0 0;
}
form .fields .field.file {
  margin: 35px 0 0;
}
form .fields .field.file .el {
  position: relative;
}
form .fields .field.file .el .el-wrap {
  display: flex;
  column-gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
form .fields .field.file .el .el-wrap label {
  background: var(--gray-n3-color);
  display: flex;
  column-gap: 12px;
  font-size: 14px;
  line-height: 100%;
  padding: 15px 25px;
  color: var(--gray-n1-color);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
form .fields .field.file .el .el-wrap label .icon {
  display: inline-flex;
}
form .fields .field.file .el .el-wrap label .icon svg {
  width: auto;
  height: 14px;
}
form .fields .field.file .el .el-wrap label .icon svg path {
  fill: var(--gray-n1-color);
}
form .fields .field.file .el .el-wrap label:hover {
  transform: rotate(1deg);
}
form .fields .field.file .el .el-wrap span {
  font-size: 14px;
  color: var(--gray-n2-color);
}
form .fields .field.file .el input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
form .btn {
  margin: 35px 0 0;
  height: 41px;
}
form .btn span {
  font-size: 14px;
}

/*
* Templates
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 99;
}
header .plywood {
  padding: 20px 0;
  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: 104.66px;
  pointer-events: initial;
}
header .plywood .container > a svg {
  width: 100%;
  height: auto;
}
header .plywood .container nav ul {
  display: flex;
  column-gap: 24px;
  align-items: center;
}
header .plywood .container nav ul li a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-n1-color);
  pointer-events: initial;
}
header .plywood .container nav ul li#menu-item-10 a, header .plywood .container nav ul li#menu-item-11 a, header .plywood .container nav ul li#menu-item-13 a {
  background: var(--theme-color);
  padding: 6px;
  border-radius: 3px;
  color: var(--white-color);
}

/*
* VW Unit
*/
/*
* VH Unit
*/
#h__intro {
  display: flex;
  height: 758px;
  padding-top: 250px;
  padding-bottom: 150px;
  align-items: center;
}
#h__intro .container {
  position: relative;
  z-index: 2;
}
#h__intro .container .contents {
  text-align: center;
}
#h__intro .container .contents .inner-contents h1 {
  font-size: 32px;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
}
#h__intro .container .contents .inner-contents rwp-wrap {
  margin: 20px 0 0;
}
#h__intro .container .contents .inner-contents rwp-wrap p {
  font-size: 22px;
  line-height: 140%;
  color: var(--gray-n1-color);
}
#h__intro .container .contents .inner-contents rwp-wrap p:nth-child(1) {
  font-weight: 700;
}
#h__intro .container .contents .inner-contents .buttons {
  margin: 40px auto 0;
  justify-content: center;
}
#h__intro .img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#h__companies {
  padding-top: 100px;
}
#h__companies .container .contents {
  text-align: center;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--gray-n4-color);
}
#h__companies .container .contents .inner-contents h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--theme-color);
}
#h__companies .container .list {
  display: grid;
  margin: 20px auto 0;
  grid-column-gap: 30px;
  grid-template-columns: repeat(6, 1fr);
}
#h__companies .container .list .img-container {
  height: auto;
  aspect-ratio: 4/3;
}
#h__text {
  padding-top: 100px;
  padding-bottom: 100px;
}
#h__text .container .contents {
  text-align: center;
}
#h__text .container .contents .inner-contents h2 {
  font-size: 24px;
  margin: 0 0 25px;
  line-height: 100%;
  color: var(--gray-n1-color);
  text-transform: uppercase;
}
#h__text .container .contents .inner-contents rwp-wrap p {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n1-color);
}
#h__text .container .contents .inner-contents rwp-wrap p a {
  color: var(--gray-n1-color);
  text-decoration: underline;
}
#h__find {
  padding-bottom: 100px;
}
#h__find .container .contents {
  text-align: center;
}
#h__find .container .contents .inner-contents h2 {
  font-size: 25px;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
}
#h__find .container .contents .inner-contents rwp-wrap p {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n1-color);
}
#h__find .container .contents .inner-contents rwp-wrap p a {
  text-decoration: underline;
  color: var(--gray-n1-color);
}
#h__find .container .contents .inner-contents .buttons {
  margin: 40px auto 0;
  justify-content: center;
}
#h__find .container .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);
}
#h__find .container .list .item {
  background: var(--white-color);
}
#h__find .container .list .item .inner {
  display: flex;
  flex-wrap: wrap;
  height: 225px;
  padding: 20px 0;
  text-align: center;
  align-content: space-between;
  justify-content: center;
}
#h__find .container .list .item .inner .img-container {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
#h__find .container .list .item .inner h3 {
  width: 100%;
  font-size: 16px;
  color: var(--gray-n1-color);
  text-transform: uppercase;
  text-align: center;
}
#h__find .container .list + .contents {
  margin: 35px auto 0;
}
#h__projects {
  background: var(--gray-n3-color);
  padding-top: 100px;
  padding-bottom: 100px;
}
#h__projects .container {
  display: flex;
  column-gap: 65px;
  align-items: flex-start;
  justify-content: space-between;
}
#h__projects .container > .left {
  width: 282px;
  flex: 0 0 282px;
}
#h__projects .container > .left h2 {
  font-size: 17px;
  text-transform: uppercase;
  color: var(--gray-n1-color);
}
#h__projects .container > .left ul {
  margin: 20px 0 0;
}
#h__projects .container > .left ul li a {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n1-color);
  text-decoration: underline;
}
#h__projects .container > .left ul li + li {
  margin: 5px 0 0;
}
#h__projects .container > .right {
  width: 100%;
}
#h__projects .container > .right > .top {
  display: flex;
  column-gap: 16px;
  align-items: center;
  justify-content: space-between;
}
#h__projects .container > .right > .top .item {
  background: var(--white-color);
  padding: 20px;
  width: calc(50% - 8px);
  box-shadow: 0 1px 4px var(--gray-n4-color);
  border-radius: 3px;
}
#h__projects .container > .right > .top .item .inner {
  display: flex;
  column-gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
#h__projects .container > .right > .top .item .inner .icon {
  display: inline-flex;
}
#h__projects .container > .right > .top .item .inner .icon svg {
  width: 20px;
  height: auto;
}
#h__projects .container > .right > .top .item .inner .icon svg path {
  fill: var(--theme-color);
}
#h__projects .container > .right > .top .item .inner span {
  font-size: 17px;
  line-height: 100%;
  color: var(--gray-n1-color);
}
#h__projects .container > .right > .bottom {
  margin: 40px 0 0;
}
#h__projects .container > .right > .bottom h2 {
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n5-color);
}
#h__projects .container > .right > .bottom .list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 18px 0 0;
}
#h__projects .container > .right > .bottom .list .item {
  background: var(--white-color);
  width: 100%;
  padding: 20px;
  box-shadow: 0 1px 4px var(--gray-n4-color);
  border-radius: 3px;
}
#h__projects .container > .right > .bottom .list .item .inner {
  display: flex;
  column-gap: 65px;
  align-items: flex-start;
  justify-content: flex-end;
}
#h__projects .container > .right > .bottom .list .item .inner .left span,
#h__projects .container > .right > .bottom .list .item .inner .middle span,
#h__projects .container > .right > .bottom .list .item .inner .right span {
  display: table;
  line-height: 100%;
}
#h__projects .container > .right > .bottom .list .item .inner .left span + span,
#h__projects .container > .right > .bottom .list .item .inner .middle span + span,
#h__projects .container > .right > .bottom .list .item .inner .right span + span {
  margin: 4px 0 0;
}
#h__projects .container > .right > .bottom .list .item .inner .left {
  margin: 0 auto 0 0;
}
#h__projects .container > .right > .bottom .list .item .inner .left h3 {
  font-size: 17px;
  line-height: 100%;
  color: var(--theme-color);
  margin: 0 0 6px;
}
#h__projects .container > .right > .bottom .list .item .inner .left span {
  font-size: 12px;
  color: var(--gray-n5-color);
}
#h__projects .container > .right > .bottom .list .item .inner .middle span {
  font-size: 14px;
  color: var(--black-color);
}
#h__projects .container > .right > .bottom .list .item .inner .right {
  display: flex;
  flex-wrap: wrap;
  width: 240px;
  flex: 0 0 240px;
  justify-content: flex-end;
}
#h__projects .container > .right > .bottom .list .item .inner .right .top {
  display: flex;
  column-gap: 6px;
  width: fit-content;
  margin: 0 0 6px;
  align-items: center;
  justify-content: flex-end;
}
#h__projects .container > .right > .bottom .list .item .inner .right .top .badges {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
#h__projects .container > .right > .bottom .list .item .inner .right .top .badges .badge {
  padding: 6px;
  border-radius: 3px;
}
#h__projects .container > .right > .bottom .list .item .inner .right .top .badges .badge span {
  font-size: 12px;
  line-height: 100%;
  color: var(--white-color);
}
#h__projects .container > .right > .bottom .list .item .inner .right .top .badges .badge.applied {
  background: var(--theme-color);
}
#h__projects .container > .right > .bottom .list .item .inner .right .top .badges .badge.new {
  background: var(--theme-color);
}
#h__projects .container > .right > .bottom .list .item .inner .right .top .badges .badge.open {
  background: var(--open-color);
}
#h__projects .container > .right > .bottom .list .item .inner .right .top .badges .badge.closed {
  background: var(--closed-color);
}
#h__projects .container > .right > .bottom .list .item .inner .right .top > span {
  font-size: 14px;
  color: var(--black-color);
}
#h__projects .container > .right > .bottom .list .item .inner .right > span {
  width: 100%;
  font-size: 12px;
  text-align: right;
  color: var(--gray-n5-color);
}
#h__projects .container > .right > .bottom .list .item:nth-child(2n+1):hover {
  transform: rotate(1deg);
}
#h__projects .container > .right > .bottom .list .item:nth-child(2n+2):hover {
  transform: rotate(-1deg);
}
#h__projects .container > .right > .bottom .buttons {
  margin: 40px 0 0 auto;
  justify-content: flex-end;
}

#projects__view {
  background: var(--gray-n3-color);
  padding-top: 180px;
  padding-bottom: 100px;
}
#projects__view .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 65px;
  align-items: flex-start;
  justify-content: space-between;
}
#projects__view .container > .top {
  position: relative;
  width: 100%;
  margin: 0 0 60px;
  padding: 0 0 20px;
}
#projects__view .container > .top h1 {
  font-size: 25px;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
}
#projects__view .container > .top:after {
  background: var(--theme-color);
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
}
#projects__view .container > .left {
  width: 282px;
  flex: 0 0 282px;
}
#projects__view .container > .left .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;
}
#projects__view .container > .left .item .contents .inner-contents rwp-wrap p {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n5-color);
}
#projects__view .container > .left .item .contents .inner-contents rwp-wrap ul li a {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n1-color);
  text-decoration: underline;
}
#projects__view .container > .left .item .contents .inner-contents rwp-wrap ul li + li {
  margin: 5px 0 0;
}
#projects__view .container > .left .item .contents .inner-contents .buttons {
  margin: 25px 0 0;
}
#projects__view .container > .left .item + .item {
  margin: 65px 0 0;
}
#projects__view .container > .right {
  width: calc(100% - 347px);
}
#projects__view .container > .right > .top {
  display: flex;
  column-gap: 16px;
  align-items: center;
  justify-content: space-between;
}
#projects__view .container > .right > .top .item {
  background: var(--white-color);
  padding: 20px;
  width: calc(50% - 8px);
  box-shadow: 0 1px 4px var(--gray-n4-color);
  border-radius: 3px;
}
#projects__view .container > .right > .top .item .inner {
  display: flex;
  column-gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
#projects__view .container > .right > .top .item .inner .icon {
  display: inline-flex;
}
#projects__view .container > .right > .top .item .inner .icon svg {
  width: 20px;
  height: auto;
}
#projects__view .container > .right > .top .item .inner .icon svg path {
  fill: var(--theme-color);
}
#projects__view .container > .right > .top .item .inner span {
  font-size: 17px;
  line-height: 100%;
  color: var(--gray-n1-color);
}
#projects__view .container > .right > .bottom {
  margin: 40px 0 0;
}
#projects__view .container > .right > .bottom h2 {
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n5-color);
}
#projects__view .container > .right > .bottom .list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 18px 0 0;
}
#projects__view .container > .right > .bottom .list .item {
  background: var(--white-color);
  width: 100%;
  padding: 20px;
  box-shadow: 0 1px 4px var(--gray-n4-color);
  border-radius: 3px;
}
#projects__view .container > .right > .bottom .list .item .inner {
  display: flex;
  column-gap: 65px;
  align-items: flex-start;
  justify-content: flex-end;
}
#projects__view .container > .right > .bottom .list .item .inner .left span,
#projects__view .container > .right > .bottom .list .item .inner .middle span,
#projects__view .container > .right > .bottom .list .item .inner .right span {
  display: table;
  line-height: 100%;
}
#projects__view .container > .right > .bottom .list .item .inner .left span + span,
#projects__view .container > .right > .bottom .list .item .inner .middle span + span,
#projects__view .container > .right > .bottom .list .item .inner .right span + span {
  margin: 4px 0 0;
}
#projects__view .container > .right > .bottom .list .item .inner .left {
  margin: 0 auto 0 0;
}
#projects__view .container > .right > .bottom .list .item .inner .left h3 {
  font-size: 17px;
  line-height: 100%;
  color: var(--theme-color);
  margin: 0 0 6px;
}
#projects__view .container > .right > .bottom .list .item .inner .left span {
  font-size: 12px;
  color: var(--gray-n5-color);
}
#projects__view .container > .right > .bottom .list .item .inner .middle span {
  font-size: 14px;
  color: var(--black-color);
}
#projects__view .container > .right > .bottom .list .item .inner .right {
  display: flex;
  flex-wrap: wrap;
  width: 240px;
  flex: 0 0 240px;
  justify-content: flex-end;
}
#projects__view .container > .right > .bottom .list .item .inner .right .top {
  display: flex;
  column-gap: 6px;
  width: fit-content;
  margin: 0 0 6px;
  align-items: center;
  justify-content: flex-end;
}
#projects__view .container > .right > .bottom .list .item .inner .right .top .badges {
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
#projects__view .container > .right > .bottom .list .item .inner .right .top .badges .badge {
  padding: 6px;
  border-radius: 3px;
}
#projects__view .container > .right > .bottom .list .item .inner .right .top .badges .badge span {
  font-size: 12px;
  line-height: 100%;
  color: var(--white-color);
}
#projects__view .container > .right > .bottom .list .item .inner .right .top .badges .badge.applied {
  background: var(--theme-color);
}
#projects__view .container > .right > .bottom .list .item .inner .right .top .badges .badge.new {
  background: var(--theme-color);
}
#projects__view .container > .right > .bottom .list .item .inner .right .top .badges .badge.open {
  background: var(--open-color);
}
#projects__view .container > .right > .bottom .list .item .inner .right .top .badges .badge.closed {
  background: var(--closed-color);
}
#projects__view .container > .right > .bottom .list .item .inner .right .top > span {
  font-size: 14px;
  color: var(--black-color);
}
#projects__view .container > .right > .bottom .list .item .inner .right > span {
  width: 100%;
  font-size: 12px;
  text-align: right;
  color: var(--gray-n5-color);
}
#projects__view .container > .right > .bottom .list .item:nth-child(2n+1):hover {
  transform: rotate(1deg);
}
#projects__view .container > .right > .bottom .list .item:nth-child(2n+2):hover {
  transform: rotate(-1deg);
}
#projects__view .container > .right > .bottom .list .no-project .contents .inner-contents rwp-wrap p {
  font-size: 17px;
  line-height: 100%;
  color: var(--gray-n1-color);
}
#projects__view .container > .right > .bottom .pagination {
  display: flex;
  margin: 25px 0 0;
  align-items: center;
  justify-content: flex-end;
}
#projects__view .container > .right > .bottom .pagination ul {
  display: flex;
  column-gap: 6px;
  width: fit-content;
  align-items: center;
}
#projects__view .container > .right > .bottom .pagination ul 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);
}
#projects__view .container > .right > .bottom .pagination ul li a.active {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}

.form-page {
  background: var(--gray-n3-color);
  padding-top: 180px;
  padding-bottom: 100px;
}
.form-page .container .form {
  width: 100%;
  margin: 0 auto;
  max-width: 540px;
}
.form-page .container .form h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n1-color);
}
.form-page .container .form > p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n5-color);
}
.form-page .container .form > p a {
  text-decoration: underline;
  color: var(--gray-n5-color);
}
.form-page .container .form form {
  margin: 25px 0 0;
}

#single-project__view {
  background: var(--gray-n3-color);
  padding-top: 180px;
  padding-bottom: 100px;
}
#single-project__view .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 65px;
  align-items: flex-start;
  justify-content: space-between;
}
#single-project__view .container > .top {
  position: relative;
  width: 100%;
  margin: 0 0 60px;
  padding: 0 0 20px;
}
#single-project__view .container > .top h1 {
  font-size: 25px;
  line-height: 100%;
  color: var(--theme-color);
  text-transform: uppercase;
}
#single-project__view .container > .top:after {
  background: var(--theme-color);
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
}
#single-project__view .container > .left {
  width: 282px;
  flex: 0 0 282px;
}
#single-project__view .container > .left .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;
}
#single-project__view .container > .left .item .contents .inner-contents rwp-wrap p {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n5-color);
}
#single-project__view .container > .left .item .contents .inner-contents .buttons {
  margin: 25px 0 0;
}
#single-project__view .container > .right {
  width: calc(100% - 347px);
}
#single-project__view .container > .right .details {
  width: 100%;
  margin: 0 0 30px;
}
#single-project__view .container > .right .details .items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 25px;
  align-items: center;
  justify-content: space-between;
}
#single-project__view .container > .right .details .items .item {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .right .details .items .item .icon {
  display: inline-flex;
  width: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
#single-project__view .container > .right .details .items .item .icon svg {
  width: auto;
  height: 16px;
}
#single-project__view .container > .right .details .items .item .icon svg path {
  fill: var(--theme-color);
}
#single-project__view .container > .right .details .items .item span {
  font-size: 15px;
  color: var(--theme-color);
}
#single-project__view .container > .right .details .items .item span a {
  font-weight: 700;
  color: var(--theme-color);
  text-decoration: underline;
}
#single-project__view .container > .right .details .items .item span i {
  font-weight: 700;
  font-style: initial;
}
#single-project__view .container > .right .details .items .item .badges {
  display: flex;
  column-gap: 8px;
  margin-left: 16px;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .right .details .items .item .badges .badge {
  padding: 6px;
  border-radius: 3px;
}
#single-project__view .container > .right .details .items .item .badges .badge span {
  font-size: 12px;
  line-height: 100%;
  color: var(--white-color);
}
#single-project__view .container > .right .details .items .item .badges .badge.applied {
  background: var(--theme-color);
}
#single-project__view .container > .right .details .items .item .badges .badge.new {
  background: var(--theme-color);
}
#single-project__view .container > .right .details .items .item .badges .badge.open {
  background: var(--open-color);
}
#single-project__view .container > .right .details .items .item .badges .badge.closed {
  background: var(--closed-color);
}
#single-project__view .container > .right .details .items .item:last-child .icon svg {
  width: 18px;
}
#single-project__view .container > .right .details .items .item.project-leader span a,
#single-project__view .container > .right .details .items .item.project-leader span i {
  text-transform: uppercase;
}
#single-project__view .container > .right .details .info {
  display: flex;
  width: 100%;
  margin: 25px 0 0;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .right .details .info .icon {
  display: inline-flex;
  width: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
#single-project__view .container > .right .details .info .icon svg {
  width: 14px;
  height: auto;
}
#single-project__view .container > .right .details .info .icon svg path {
  fill: var(--gray-n5-color);
}
#single-project__view .container > .right .details .info p {
  font-size: 12px;
  line-height: 100%;
  color: var(--gray-n5-color);
}
#single-project__view .container > .right .buttons {
  margin: 30px 0 15px;
  justify-content: flex-end;
}
#single-project__view .container > .right .buttons .btn {
  height: 41px;
}
#single-project__view .container > .right .buttons .btn span {
  font-size: 14px;
}
#single-project__view .container > .right .description {
  background: var(--white-color);
  box-shadow: 0 1px 4px var(--gray-n4-color);
}
#single-project__view .container > .right .description .top {
  background: var(--gray-n2-color);
  padding: 25px 20px;
}
#single-project__view .container > .right .description .top ul {
  display: flex;
  column-gap: 25px;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .right .description .top ul li {
  display: flex;
  align-items: center;
}
#single-project__view .container > .right .description .top ul li .icon {
  display: inline-flex;
  width: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
#single-project__view .container > .right .description .top ul li .icon svg {
  width: auto;
  height: 16px;
}
#single-project__view .container > .right .description .top ul li .icon svg path {
  fill: var(--white-color);
}
#single-project__view .container > .right .description .top ul li a,
#single-project__view .container > .right .description .top ul li span {
  font-size: 13px;
  line-height: 100%;
  color: var(--white-color);
}
#single-project__view .container > .right .description .middle {
  padding: 40px;
}
#single-project__view .container > .right .description .middle .contents .inner-contents rwp-wrap p {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n1-color);
}
#single-project__view .container > .right .description .middle .contents .inner-contents rwp-wrap p + p {
  margin-top: 25px;
}
#single-project__view .container > .right .description .middle .contents .inner-contents rwp-wrap p + ul {
  margin-top: 12px;
}
#single-project__view .container > .right .description .middle .contents .inner-contents rwp-wrap ul {
  list-style: initial;
  margin-left: 20px;
}
#single-project__view .container > .right .description .middle .contents .inner-contents rwp-wrap ul li {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n1-color);
}
#single-project__view .container > .right .description .middle .contents .inner-contents rwp-wrap ul + p, #single-project__view .container > .right .description .middle .contents .inner-contents rwp-wrap ul + ul {
  margin-top: 25px;
}
#single-project__view .container > .right .description .bottom {
  border-top: 1px solid var(--gray-n4-color);
  border-bottom: 1px solid var(--gray-n4-color);
}
#single-project__view .container > .right .description .bottom .item {
  display: flex;
  column-gap: 65px;
  padding: 25px 40px;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .right .description .bottom .item > span {
  width: 100%;
  font-size: 14px;
  max-width: 241px;
  color: var(--gray-n1-color);
}
#single-project__view .container > .right .description .bottom .item .value {
  display: flex;
  align-items: center;
}
#single-project__view .container > .right .description .bottom .item .value .icon {
  display: inline-flex;
  width: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
#single-project__view .container > .right .description .bottom .item .value .icon svg {
  width: auto;
  height: 16px;
}
#single-project__view .container > .right .description .bottom .item .value .icon svg path {
  fill: var(--gray-n1-color);
}
#single-project__view .container > .right .description .bottom .item .value span {
  font-size: 14px;
  color: var(--gray-n1-color);
}
#single-project__view .container > .right .description .bottom .item + .item {
  border-top: 1px solid var(--gray-n4-color);
}
#single-project__view .container > .right .apply {
  margin: 48px 0 0;
}
#single-project__view .container > .right .apply .box {
  background: var(--theme-color);
  width: 100%;
  padding: 20px;
  border-radius: 3px;
}
#single-project__view .container > .right .apply .box .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#single-project__view .container > .right .apply .box .inner .icon {
  display: inline-flex;
  width: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
#single-project__view .container > .right .apply .box .inner .icon svg {
  width: auto;
  height: 14px;
}
#single-project__view .container > .right .apply .box .inner .icon svg path {
  fill: var(--white-color);
}
#single-project__view .container > .right .apply .box .inner > span {
  font-size: 17px;
  font-weight: 700;
  color: var(--white-color);
}
#single-project__view .container > .right .apply .box .inner .btn {
  margin: 0 0 0 25px;
}
#single-project__view .container > .right .apply .form h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n1-color);
}
#single-project__view .container > .right .apply .form form {
  margin: 25px 0 0;
}
#single-project__view .container > .right .applicants {
  margin: 48px 0 0;
}
#single-project__view .container > .right .applicants h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n1-color);
}
#single-project__view .container > .right .applicants .list {
  background: var(--white-color);
  margin: 25px 0 0;
  box-shadow: 0 1px 4px var(--gray-n4-color);
}
#single-project__view .container > .right .applicants .list .item {
  padding: 25px 40px;
  border-top: 1px solid var(--gray-n4-color);
}
#single-project__view .container > .right .applicants .list .item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-n1-color);
}

#account__view {
  background: var(--gray-n3-color);
  padding-top: 180px;
  padding-bottom: 100px;
}
#account__view .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 65px;
  align-items: flex-start;
  justify-content: space-between;
}
#account__view .container > .left {
  width: 282px;
  flex: 0 0 282px;
}
#account__view .container > .left .top .up {
  display: flex;
  column-gap: 25px;
}
#account__view .container > .left .top .up .img-container {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}
#account__view .container > .left .top .up .contents span {
  display: table;
  color: var(--gray-n1-color);
}
#account__view .container > .left .top .up .contents span:nth-child(1) {
  font-size: 14px;
}
#account__view .container > .left .top .up .contents span:nth-child(2) {
  font-size: 12px;
  font-weight: 700;
  margin: 4px 0 0;
  text-transform: uppercase;
}
#account__view .container > .left .top .up .contents span:nth-child(3) {
  font-size: 11px;
  margin: 15px 0 0;
  text-decoration: underline;
  cursor: pointer;
}
#account__view .container > .left .top .down {
  margin: 12px 0 0;
  border-top: 1px solid var(--gray-n4-color);
  border-bottom: 1px solid var(--gray-n4-color);
}
#account__view .container > .left .top .down a {
  display: flex;
  width: 100%;
  padding: 12px 0;
}
#account__view .container > .left .top .down a .icon {
  display: inline-flex;
  width: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
#account__view .container > .left .top .down a .icon svg {
  width: auto;
  height: 14px;
}
#account__view .container > .left .top .down a .icon svg path {
  fill: var(--gray-n1-color);
}
#account__view .container > .left .top .down a span {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--gray-n1-color);
}
#account__view .container > .left .top .down a:hover .icon svg path {
  fill: var(--theme-color);
}
#account__view .container > .left .top .down a:hover span {
  color: var(--theme-color);
}
#account__view .container > .left .bottom .item {
  padding: 16px 0;
}
#account__view .container > .left .bottom .item > span {
  display: table;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--gray-n1-color);
}
#account__view .container > .left .bottom .item ul li a {
  display: flex;
}
#account__view .container > .left .bottom .item ul li a .icon {
  display: inline-flex;
  width: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
#account__view .container > .left .bottom .item ul li a .icon svg {
  width: auto;
  height: 14px;
}
#account__view .container > .left .bottom .item ul li a .icon svg path {
  fill: var(--gray-n1-color);
}
#account__view .container > .left .bottom .item ul li a span {
  font-size: 14px;
  color: var(--gray-n1-color);
}
#account__view .container > .left .bottom .item ul li a:hover .icon svg path {
  fill: var(--theme-color);
}
#account__view .container > .left .bottom .item ul li a:hover span {
  color: var(--theme-color);
}
#account__view .container > .left .bottom .item ul li + li {
  margin: 6px 0 0;
}
#account__view .container > .left .bottom .item + .item {
  border-top: 1px solid var(--gray-n4-color);
}
#account__view .container > .right {
  width: calc(100% - 347px);
}
#account__view .container > .right .services h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n1-color);
  margin: 0 0 25px;
}
#account__view .container > .right .services .boxes {
  display: flex;
  row-gap: 24px;
  column-gap: 24px;
  justify-content: space-between;
}
#account__view .container > .right .services .boxes .box {
  background: var(--white-color);
  width: calc(50% - 12px);
  padding: 40px;
  box-shadow: 0 1px 4px var(--gray-n4-color);
}
#account__view .container > .right .services .boxes .box .badge {
  width: fit-content;
  padding: 6px;
  margin: 0 0 18px;
  border-radius: 3px;
}
#account__view .container > .right .services .boxes .box .badge span {
  font-size: 12px;
  line-height: 100%;
  color: var(--white-color);
}
#account__view .container > .right .services .boxes .box .badge.enable {
  background: var(--open-color);
}
#account__view .container > .right .services .boxes .box .badge.disable {
  background: var(--closed-color);
}
#account__view .container > .right .services .boxes .box h3 {
  font-size: 17px;
  line-height: 100%;
  color: var(--gray-n1-color);
}
#account__view .container > .right .services .boxes .box p {
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-n5-color);
  margin: 4px 0 0;
}
#account__view .container > .right .services .boxes .box .btn {
  margin: 16px 0 0;
}
#account__view .container > .right .services .boxes .box .btn span {
  font-size: 14px;
}
#account__view .container > .right .projects {
  margin: 65px 0 0;
}
#account__view .container > .right .projects h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n1-color);
  margin: 0 0 25px;
}
#account__view .container > .right .applications {
  margin: 65px 0 0;
}
#account__view .container > .right .applications h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n1-color);
  margin: 0 0 25px;
}
#account__view .container > .right .discussions {
  margin: 65px 0 0;
}
#account__view .container > .right .discussions h2 {
  font-size: 17px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gray-n1-color);
  margin: 0 0 25px;
}

footer .top {
  background: var(--theme-color);
  padding: 30px 0;
}
footer .top .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
footer .top .container .item {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 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: 55px 0 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 {
  font-size: 15px;
  margin: 0 0 22px;
  text-transform: uppercase;
  color: var(--gray-n3-color);
}
footer .middle .container .col .item ul {
  padding: 0 0 0 20px;
  list-style: square;
}
footer .middle .container .col .item ul li {
  color: var(--gray-n3-color);
}
footer .middle .container .col .item ul li a {
  font-size: 14px;
  color: var(--gray-n3-color);
}
footer .middle .container .col .item ul li + li {
  margin: 5px 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;
}
footer .middle .container .col:last-child .item ul li + li {
  margin: 25px 0 0;
}
footer .bottom {
  background: var(--gray-n1-color);
  padding: 20px 0;
}
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: 12px;
  line-height: 100%;
  color: var(--white-color);
}
footer .bottom .container ul li + li:before {
  background: var(--white-color);
  content: "";
  width: 1px;
  height: 12px;
}