@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-Black.otf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-BlackItalic.otf");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-Bold.otf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-BoldItalic.otf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-ExtraBold.otf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-ExtraBoldItalic.otf");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-Light.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-LightItalic.otf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-Medium.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-Medium.otf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-Regular.otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-RegularItalic.otf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-ThinItalic.otf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "BwGradual";
  src: url("../font/BW Gradual/BwGradual-ThinItalic.otf");
  font-weight: 200;
  font-style: italic;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes marqueeMobile {
  0% {
    left: 0;
  }
  100% {
    left: -150%;
  }
}
* {
  font-family: "BwGradual";
  font-weight: 400;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

body {
  background-color: #aaaaac;
  padding: 0;
  margin: 0;
  font-size: 12px;
  overflow-x: hidden;
}

.mobile {
  display: none !important;
}

.btn {
  padding: 7px;
  font-size: 12px;
  line-height: 1;
  height: 26px;
  text-transform: uppercase;
  display: block;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  overflow: hidden;
  border: 1px solid #000000;
}
.btn .btn-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn .btn-inner span {
  transition-duration: 0.3s;
}

.title-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 12px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
.title-row h2,
.title-row span {
  font-size: 12px;
  padding: 0;
}

.copyright {
  justify-content: center;
}

h2 {
  font-size: 50px;
}

@media only screen and (max-width: 1280px) {
  h2 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1281px) {
  .btn:hover span {
    transform: translateY(-24px);
  }
}
.person {
  height: 940px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.person-img {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.person-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.person-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
}
.person:nth-of-type(4n) {
  border-right: none;
}
.person:last-of-type {
  border-bottom: 0;
}
.person .person-desc {
  display: none;
}
.person.active .person-inner {
  background-color: #ffffff;
  height: 940px;
}
.person.active .person-inner .person-desc {
  display: block;
  width: 100%;
  flex-grow: 1;
  overflow: auto;
  border-top: 1px solid #000000;
}
.person.active .person-inner .person-desc-inner {
  display: block;
}
.person.active .person-inner .person-desc-inner p {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding: 12px;
}
.person.active .person-inner .person-info {
  border-top: 1px solid #000000;
}
.person .uploading {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  transform: translate(-50%);
}
.person-info {
  padding: 18px;
  position: relative;
  z-index: 3;
}
.person-info p {
  font-size: 12px;
  line-height: 1.2;
}
.person-info-name {
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (max-width: 2048px) {
  .person:nth-of-type(4n) {
    border-right: 1px solid #000000;
  }
  .person:nth-last-of-type(2), .person:nth-last-of-type(3) {
    border-bottom: none;
  }
  .person:nth-of-type(3n) {
    border-right: 0;
  }
}
@media only screen and (max-width: 1280px) {
  .person {
    height: 640px;
    background-size: 500px;
  }
  .person:nth-of-type(3n) {
    border-right: 1px solid #000000;
  }
  .person:nth-of-type(2n) {
    border-right: none;
  }
  .person:nth-last-of-type(2), .person:nth-last-of-type(3) {
    border-bottom: 1px solid #000000;
  }
  .person:last-of-type {
    border-bottom: none;
  }
  .person.active .person-inner {
    height: 640px;
  }
  .person.active .person-inner .person-desc {
    flex-grow: 0;
  }
}
@media only screen and (max-width: 768px) {
  .person {
    height: 400px;
    background-size: 270px;
  }
  .person.active .person-inner {
    height: 400px;
  }
  .person.active .person-inner .person-desc-inner p {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1281px) {
  .person.got_desc:hover {
    background-color: #ffffff;
    cursor: pointer;
  }
}
.works-title-line {
  width: 100%;
  border-bottom: 1px solid #000000;
}
.works-title-line thead {
  width: 100%;
}
.works-title-line thead tr {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
.works-title-line thead tr td.view-selector span {
  opacity: 0.5;
}
.works-title-line thead tr td.view-selector span.active, .works-title-line thead tr td.view-selector span:hover {
  opacity: 1;
  cursor: pointer;
}
.works-title-line thead tr td:first-of-type {
  width: 160px;
}
.works-title-line thead tr td:last-of-type {
  flex-grow: 1;
  text-align: right;
}
.works .works-content {
  display: none;
}
.works .works-content.active {
  display: grid;
}
.works .list-view {
  grid-template-columns: 2fr 1fr;
}
.works .list-view table {
  padding: 18px;
}
.works .list-view table tr {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 100px;
}
.works .list-view table tr td {
  padding: 0;
}
.works .list-view table thead tr td {
  padding: 14px 0;
}
.works .list-view table thead tr td#works-sorter-btn {
  cursor: pointer;
  text-decoration: underline;
}
.works .list-view table tbody {
  display: flex;
  flex-direction: column;
}
.works .list-view table tbody.reversed {
  flex-direction: column-reverse;
}
.works .list-view table tbody tr:hover {
  color: #3f444b;
}
.works .list-view table tbody tr:hover .work-img img {
  display: block;
}
.works .list-view table tbody tr:hover .work-live a {
  color: #3f444b;
}
.works .list-view table tbody tr td {
  padding-bottom: 14px;
}
.works .list-view table tbody tr .work-year {
  width: 160px;
}
.works .list-view table tbody tr .work-name {
  text-transform: uppercase;
  font-weight: 600;
}
.works .list-view table tbody tr .work-live {
  text-align: right;
}
.works .list-view table tbody tr .work-live a {
  color: #000000;
  text-decoration: none;
}
.works .list-view .work-img img {
  position: sticky;
  top: 0;
  right: 17px;
  width: 100%;
}
.works .grid-view .works-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.works .grid-view .works-grid .work {
  width: 25%;
  padding-bottom: 72px;
}
.works .grid-view .works-grid .work:hover .work-content {
  opacity: 0.5;
}
.works .grid-view .works-grid .work-img {
  width: 100%;
  height: auto;
}
.works .grid-view .works-grid .work .work-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.works .grid-view .works-grid .work .work-content > div {
  padding: 17px;
}
.works .grid-view .works-grid .work .work-content .work-right .work-name {
  text-transform: uppercase;
  font-weight: 600;
}
.works .grid-view .works-grid .work .work-content .work-right .work-live a {
  color: #000000;
  text-decoration: none;
}

@media only screen and (max-width: 2000px) {
  .works .grid-view .works-grid .work {
    width: 33.33%;
  }
}
@media only screen and (max-width: 1280px) {
  .works-title-line {
    padding: 15px 17px;
  }
  .works-title-line thead tr td:first-of-type {
    width: 160px;
  }
  .works .list-view {
    grid-template-columns: 1fr;
  }
  .works .list-view table {
    padding: 18px 0;
  }
  .works .list-view table tr td {
    padding: 0 17px;
  }
  .works .list-view table thead tr td {
    padding: 14px 17px;
  }
  .works .list-view table tbody tr {
    width: 100%;
  }
  .works .list-view table tbody tr .work-year {
    width: 128px;
  }
  .works .list-view table tbody tr .work-live {
    width: auto;
    min-width: 70px;
    text-align: right;
  }
  .works .grid-view .works-grid .work {
    width: 50%;
    padding-bottom: 40px;
    font-size: 12px;
  }
  .works .grid-view .works-grid .work-content .work-right .work-name {
    font-size: 12px;
  }
  .works .grid-view .works-grid .work:hover .work-content {
    opacity: 0.5;
  }
  .work-img img {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .works-title-line thead tr td:first-of-type {
    width: 100px;
  }
  .works .list-view table thead tr {
    grid-template-columns: 100px 158px 1fr;
  }
  .works .list-view table thead tr .category-title {
    display: none;
  }
  .works .list-view table tbody tr {
    grid-template-columns: 100px 158px 1fr;
  }
  .works .list-view table tbody tr td {
    width: auto;
  }
  .works .list-view table tbody tr .work-year {
    width: 125px;
  }
  .works .list-view table tbody tr .work-category {
    display: none;
  }
  .works .list-view table tbody tr .work-img {
    display: none;
  }
  .works .grid-view .works-grid .work-content .work-right .work-name {
    font-size: 12px;
  }
  .works .grid-view .works-grid .work:hover .work-content {
    opacity: 0.5;
  }
}
.form-page-title {
  margin-top: 90px;
  border-bottom: 1px solid #000000;
}
.form-page-title h1,
.form-page-title h2 {
  font-size: 50px;
}
.form-page-title h1 {
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 1em;
}

.form-page-content .inner-container {
  padding-top: 73px;
  padding-bottom: 160px;
  width: 640px;
  margin: auto;
}
.form-page-content .inner-container .form-title-row {
  padding-bottom: 72px;
}
.form-page-content .inner-container .form-title-row h3 {
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 17px;
}
.form-page-content .inner-container .form-title-row p {
  font-size: 14px;
  line-height: 140%;
}

main form {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 17px;
}
main form > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
main form > div span {
  align-self: flex-start;
  color: rgba(0, 0, 0, 0.5019607843);
}
main form > div p {
  color: rgba(0, 0, 0, 0.5019607843);
  text-align: left;
  padding-bottom: 33px;
}
main form > div p a {
  color: #000000;
}
main form label,
main form .jet-form-builder__label {
  text-align: left;
}
main form select {
  accent-color: #000000;
}
main form input:-webkit-autofill,
main form input:-webkit-autofill:hover,
main form input:-webkit-autofill:focus,
main form textarea:-webkit-autofill,
main form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: inherit !important;
  transition: background-color 9999s ease-in-out 0s;
}
main form input,
main form select,
main form textarea {
  padding: 9px 13px;
  font-size: 16px;
  border: 1px solid #000000;
  border-radius: 4px;
  background-color: transparent;
  outline: none;
  color: #000000;
}
main form input:focus,
main form select:focus,
main form textarea:focus {
  outline-style: solid;
  outline-width: 1px;
  outline-color: #000000;
}
main form input[type=submit],
main form button,
main form .jet-form-builder__submit {
  display: block !important;
  text-align: center;
  text-transform: uppercase;
  background-color: #000000;
  height: 40px;
  width: 100%;
  color: #ffffff;
  font-size: 12px;
  padding: 13px;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
}
main form input[type=submit] .btn-inner,
main form button .btn-inner,
main form .jet-form-builder__submit .btn-inner {
  gap: 26px;
}
main form input[type=submit]:hover span,
main form button:hover span,
main form .jet-form-builder__submit:hover span {
  transform: translateY(-38px);
}
main form textarea {
  resize: vertical;
}

@media only screen and (max-width: 768px) {
  .form-page-content .inner-container {
    max-width: 100%;
  }
}
.admin-bar header {
  top: 30px;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #aaaaac;
}
header .upper-line,
header .lower-line {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000000;
  width: 100%;
  height: 44px;
}
header .upper-line img,
header .lower-line img {
  display: block;
}
header .upper-line {
  justify-content: space-between;
  padding: 9px;
}
header .upper-line > div {
  width: 33%;
  text-align: center;
  align-items: center;
  display: flex;
}
header .upper-line > div.logo-container {
  justify-content: center;
}
header .upper-line > div:last-of-type {
  justify-content: flex-end;
  gap: 6px;
}
header .upper-line > div:last-of-type .lang {
  display: flex;
  padding: 0 7px;
  align-items: center;
  text-decoration: none;
  color: #000000;
  border: 1px solid transparent;
  border-radius: 4px;
  height: 26px;
  line-height: 1;
  text-transform: uppercase;
}
header .upper-line > div:last-of-type .lang:hover {
  border: 1px solid #000000;
}
header .upper-line nav ul {
  display: flex;
  list-style-type: none;
  gap: 6px;
  margin: 0;
  padding: 0;
}
header .upper-line nav ul li {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}
header .upper-line nav ul li.current-menu-item a {
  border: 1px solid #000000;
}
header .upper-line nav ul li a {
  display: flex;
  align-items: center;
  padding: 0 8px;
  height: 26px;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
}
header .upper-line nav ul li a:hover {
  border: 1px solid #000000;
}
header .upper-line .new-project {
  background-color: transparent;
  color: #000000;
  text-decoration: none;
}
header.mobile {
  display: none;
}
header .lower-line {
  width: 100%;
  overflow: hidden;
  position: relative;
}
header .mobile-menu {
  display: none;
}
header .marquee div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 200%;
  height: 30px;
  position: absolute;
  overflow: hidden;
  animation: marquee 25s linear infinite;
}
header .marquee p {
  /* display: inline-block; */
  /* float: left;*/
  width: 50%;
  font-size: 12px;
  padding: 16px 0;
}

@media only screen and (max-width: 1280px) {
  header .upper-line {
    position: relative;
    background-color: #aaaaac;
    z-index: 2;
  }
  header .upper-line > div:nth-of-type(2) {
    justify-content: center;
  }
  header .upper-line .mobile-nav-btn {
    padding: 0;
    border: 0;
    background-color: transparent;
    padding: 9px;
    cursor: pointer;
  }
  header .mobile-header-right,
  header .mobile-logo {
    padding: 8px;
  }
  header .mobile-menu {
    width: 100%;
    display: block;
    position: absolute;
    top: 43px;
    z-index: 1;
    height: 80px;
    transform: translateY(-120%);
    transition-duration: 0.3s;
  }
  header .mobile-menu.opened {
    transform: translate(0);
  }
  header .mobile-menu nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #aaaaac;
    border-top: 1px solid #000000;
  }
  header .mobile-menu nav ul li {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #000000;
  }
  header .mobile-menu nav ul li a {
    color: #000000;
    display: block;
    padding: 15px;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  header .upper-line.mobile {
    display: flex !important;
    align-items: center;
    padding: 0;
  }
  header .upper-line.desktop {
    display: none !important;
  }
  header .desktop {
    display: none;
  }
  header .marquee div {
    width: 300%;
    animation: marqueeMobile 25s linear infinite;
  }
}
.hero-bottom-section {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
}
.hero-bottom-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.hero-bottom-section a {
  text-decoration: none;
}
.hero-bottom-section div a {
  color: #000000;
}
.hero-bottom-section > div {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.hero-bottom-section > div:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-bottom-section > div:first-of-type img {
  position: absolute;
}
.hero-bottom-section > div:last-of-type {
  border-right: 0;
}
.hero-bottom-section > div h4,
.hero-bottom-section > div h3 {
  text-transform: uppercase;
  font-size: 12px;
}
.hero-bottom-section .hero-footer-logo .spinner {
  animation-name: spin;
  animation-duration: 50000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform: translate(-50%, -50%);
}
.hero-bottom-section .social-container ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-bottom-section .social-container ul li a {
  text-decoration: underline;
}
.hero-bottom-section .contact-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alt-footer .copyright {
  border-top: 0;
}

.main-page-footer {
  position: relative;
  z-index: 4;
  height: 100svh;
  margin: 0;
}
.main-page-footer .footer-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}

@media only screen and (max-width: 1280px) {
  .hero-bottom-section {
    /* height: 247px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 2fr;
    padding: 0;
  }
  .hero-bottom-section > div {
    gap: 0;
  }
  .hero-bottom-section .hero-footer-logo {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .hero-bottom-section .hero-footer-logo img {
    height: 75px;
  }
  .hero-bottom-section .hero-footer-logo .spinner {
    height: 81px;
  }
  .hero-bottom-section .social-container {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    border-right: 1px solid #000000 !important;
  }
  .hero-bottom-section .social-container ul {
    flex-direction: row !important;
  }
  .hero-bottom-section .hero-footer-contact {
    gap: 17px !important;
    border-right: 0 !important;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 4;
  }
  .hero-bottom-section .hero-footer-legal {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
}
.hero {
  height: calc(100svh - 260px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero .spinning-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .spinning-logo canvas {
  position: fixed;
  z-index: 0;
  height: 70vh;
  width: 1700vw;
  max-width: 1700px;
  overflow: hidden;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  margin: auto;
  cursor: pointer;
}

.blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: transparent;
  transition-duration: 0.5s;
  position: relative;
  z-index: 3;
}

.about {
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.about .text-box {
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
}
.about .text-box img {
  height: 120px;
}
.about h2 {
  font-weight: 700;
}

.fullpage-img {
  margin-top: 17px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  border-top: 1px solid #000000;
}
.fullpage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 0;
  min-height: 0;
  flex-shrink: 0;
}

.people-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.services-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.services-container div {
  padding: 12px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
.services-container .focus {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-container .focus span {
  font-size: 50px;
  font-weight: 700;
}
.services-container .services-element {
  font-size: 12px;
}
.services-container .services-element:last-of-type {
  border-right: 0;
}
.services-container .services-element h3 {
  text-transform: uppercase;
  padding-bottom: 17px;
}
.services-container .services-element ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.accordions-element {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background-color: transparent;
  transition-duration: 0.3s;
}
.accordions-element.active {
  background-color: #ffffff;
}
.accordions-element.active .left-bar span {
  font-size: 50px;
}
.accordions-element.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.3s;
}
.accordions-element .left-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
.accordions-element .left-bar span {
  font-size: 22px;
  font-weight: 700;
}
.accordions-element .accordion-content {
  overflow: hidden;
  border-bottom: 1px solid #000000;
  height: 100%;
  max-height: 52px;
}
.accordions-element .accordion-content > div {
  width: 100%;
  padding: 15px 17px;
  border-bottom: 1px solid #000000;
}
.accordions-element .accordion-content .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.accordions-element .accordion-content-heading h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
}
.accordions-element .accordion-content-heading > div p {
  padding-bottom: 20px;
}
.accordions-element .accordion-content-heading > div .profile {
  display: flex;
  gap: 14px;
  align-items: center;
}
.accordions-element .accordion-content-heading > div .profile-img img {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #000000;
  object-fit: cover;
}
.accordions-element .accordion-content-heading > div .profile-content h4 {
  font-weight: 700;
  text-transform: uppercase;
}
.accordions-element .accordion-content .testimonial p {
  font-size: 50px;
  font-style: italic;
  text-align: center;
  text-transform: uppercase;
}
.accordions-element .accordion-content .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordions-element .accordion-content .list-item-content h4 {
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.accordions-element .accordion-content .button-container {
  display: flex;
  justify-content: center;
  padding: 37px 0;
  border-bottom: 0;
}
.accordions-element .accordion-content .button-container a {
  padding: 7px 8px;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #000000;
  text-decoration: none;
  color: #000000;
}

.partners .title-row {
  border-top: 0;
}
.partners-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.partners-content .partner-element {
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 55px 0;
}
.partners-content .partner-element:nth-of-type(6n) {
  border-right: 0;
}
.partners-content .partner-element img {
  height: auto;
}

.contact {
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  text-transform: uppercase;
}
.contact h2,
.contact p,
.contact a {
  font-size: 50px;
  padding-bottom: 1em;
}
.contact h2 {
  font-weight: 600;
}
.contact a {
  color: #000000;
  text-decoration: none;
}
.contact p {
  text-align: center;
  padding-bottom: 0;
}

@media only screen and (max-width: 2048px) {
  .people-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1366px) {
  .about .text-box {
    font-size: 40px;
  }
  .about .text-box img {
    height: 100px;
  }
  .contact h2,
  .contact p,
  .contact a {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1280px) {
  .hero .spinning-logo {
    flex-grow: 1;
  }
  .hero canvas {
    height: auto !important;
    max-width: 150vw !important;
  }
  .about .text-box {
    font-size: 32px;
  }
  .about .text-box img {
    height: 80px;
  }
  .people-list {
    grid-template-columns: 1fr 1fr;
  }
  .services .title-row {
    border-top: 1px solid #000000;
  }
  .services-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .services-container div {
    padding: 17px;
  }
  .services-container .focus {
    grid-column-start: 1;
    grid-column-end: 5;
    border-right: 0;
  }
  .services-container .focus span {
    font-size: 32px;
  }
  .services-container .services-element:last-of-type {
    border-right: 0;
  }
  .accordions-element {
    grid-template-columns: 1fr 1fr;
  }
  .accordions-element.active .left-bar span {
    font-size: 32px;
  }
  .accordions-element .left-bar span {
    font-size: 12px;
  }
  .accordions-element .accordion-content-heading h3 {
    font-size: 12px;
  }
  .accordions-element .accordion-content-heading > div p {
    letter-spacing: 0.02em;
  }
  .accordions-element .accordion-content-heading > div .profile {
    gap: 10px;
  }
  .accordions-element .accordion-content-heading > div .profile-img img {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
  .accordions-element .accordion-content-heading > div .profile-content h5 {
    letter-spacing: 0.02em;
  }
  .accordions-element .accordion-content .testimonial p {
    font-size: 22px;
  }
  .partners-content {
    grid-template-columns: repeat(4, 1fr);
  }
  .partners-content .partner-element {
    height: 149px;
    padding: 0;
  }
  .partners-content .partner-element:last-of-type, .partners-content .partner-element:nth-last-of-type(2) {
    border-bottom: 0;
  }
  .partners-content .partner-element:nth-of-type(6n) {
    border-right: 1px solid #000000;
  }
  .partners-content .partner-element:nth-of-type(4n) {
    border-right: 0;
  }
  .partners-content .partner-element img {
    max-width: 70%;
  }
  .contact {
    border-top: 1px solid #000000;
  }
  .contact h2,
  .contact p,
  .contact a {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .about .text-box {
    font-size: 22px;
  }
  .about .text-box img {
    height: 48px;
  }
  .fullpage-img {
    height: 666px;
  }
  .fullpage-img img {
    height: 100%;
  }
  .services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .services-container div {
    padding: 17px;
  }
  .services-container .focus {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .services-container .focus span {
    font-size: 22px;
  }
  .services-container .services-element:nth-of-type(2n + 1) {
    border-right: 0;
  }
  .accordions-element {
    grid-template-columns: 1fr;
  }
  .accordions-element.active .left-bar span {
    font-size: 22px;
  }
  .accordions-element.active .accordion-content {
    display: block;
  }
  .accordions-element .left-bar {
    border-right: 0;
    padding: 15px 0;
  }
  .accordions-element .left-bar span {
    font-size: 12px;
  }
  .accordions-element .accordion-content {
    display: none;
  }
  .accordions-element .accordion-content-heading > div p {
    display: none;
  }
  .accordions-element .accordion-content-heading > div .profile {
    display: none;
  }
  .accordions-element .accordion-content .list-item {
    grid-template-columns: 1fr 2fr;
  }
  .accordions-element .accordion-content .testimonial p {
    font-size: 22px;
  }
  .accordions-element .accordion-content .button-container {
    padding: 17px 0;
    border-bottom: 0;
  }
  .partners-content .partner-element {
    height: 72px;
  }
  .contact {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1281px) {
  .accordions-element:hover {
    background-color: #ffffff;
    cursor: pointer;
  }
}
.help-page > section {
  padding: 17px;
  text-align: center;
}

.help-container {
  padding-top: 100px !important;
  min-height: 100svh;
  background-color: #ffffff;
}
.help-container__upper-row {
  padding: 17px 0;
}
.help-container h1 {
  font-size: 20px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1366px) {
  .help-page .form-page-title h1,
  .help-page .form-page-title h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .help-page .form-page-title h1,
  .help-page .form-page-title h2 {
    font-size: 22px;
  }
}
.center {
  height: calc(100vh - 292px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 17px;
}
.center h1,
.center h2,
.center p {
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}
.center h1,
.center h2 {
  font-weight: 600;
}

@media only screen and (max-width: 1280px) {
  .center h1,
  .center h2,
  .center p {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .center h1,
  .center h2,
  .center p {
    font-size: 22px;
  }
}
.page-content {
  margin-top: 89px;
}
.page-content > div {
  padding: 17px;
}
.page-content > div p,
.page-content > div h2 {
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-bottom: 1em;
}
.page-content > div p strong,
.page-content > div h2 strong {
  font-weight: 600;
}
.page-content > div p.smaller-text,
.page-content > div h2.smaller-text {
  font-size: 22px;
}
.page-content > div a {
  color: #000000;
  text-decoration: none;
}

footer .hosting-provider p,
footer .hosting-provider h2 {
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-bottom: 1em;
}
footer .hosting-provider p strong,
footer .hosting-provider h2 strong {
  font-weight: 600;
}
footer .hosting-provider a {
  color: #000000;
  text-decoration: none;
}

@media only screen and (max-width: 1366px) {
  .page-content > div p,
  .page-content > div h2,
  footer > div p,
  footer > div h2 {
    font-size: 40px;
  }
  .page-content > div p.smaller-text,
  .page-content > div h2.smaller-text,
  footer > div p.smaller-text,
  footer > div h2.smaller-text {
    font-size: 12px;
  }
  footer .hosting-provider p,
  footer .hosting-provider h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .page-content > div p,
  .page-content > div h2,
  footer > div p,
  footer > div h2 {
    font-size: 22px;
  }
  footer .hosting-provider p,
  footer .hosting-provider h2 {
    font-size: 22px;
  }
}

/*# sourceMappingURL=style.css.map */
