.cs-wrapper {
  margin: 50px auto;
  max-width: 900px;
  display: flex;
  gap: 30px;
}

.cs-section {
  border-radius: 6px;
  overflow: hidden;
  background-color: #f2f2f2;
  cursor: pointer;
  margin-bottom: 30px;
  animation: slide-down 600ms;
}
.cs-section .project-details {
  padding: 20px;
  margin: 0;
}

.cs-section-title {
  color: #444;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0 0 0;
  border-top: 1px solid #ddd;
  text-decoration: none !important;
  margin: 0 20px;
}
.cs-section-title:hover .cs-section-image > img {
  transition: all 200ms;
}

.project-goal-text {
  display: block;
  color: #333;
  font-weight: normal;
  line-height: 36px;
}

.cs-section-image {
  max-height: 400px;
  overflow: hidden;
}

.cs-hero-image {
  background: url(images/workload-hero.png) left top no-repeat;
  height: 400px;
  background-size: cover;
}

.cs-process {
  padding: 0 20px;
  overflow-y: auto;
}
.cs-process h1 {
  margin-bottom: 50px;
  font-size: 40px;
  transition: all 300ms;
}
.cs-process h2 {
  margin-bottom: 10px;
}
.cs-process h2::before {
  content: "";
  margin-right: 10px;
  border-left: 3px solid red;
}
.cs-process h2.no-border::before {
  content: "";
  margin-right: 0px;
  border-left: none;
}
.cs-process h2 a {
  color: #222;
}
.cs-process h3 {
  margin-bottom: 10px;
}
.cs-process p {
  margin-bottom: 20px;
}

.aspect-ratio img {
  max-width: 800px;
  width: 100%;
  transition: all 300ms;
  display: block;
}
.aspect-ratio a {
  display: flex;
  background: #fff;
}

.tabular-data table {
  width: 100%;
}
.tabular-data table td {
  width: 50%;
  padding: 20px 20px 20px 0;
  vertical-align: top;
}
.tabular-data table th {
  text-align: left;
}

.project-details {
  display: flex;
  gap: 20px;
  width: 100%;
}
.project-details .pd-block {
  border-left: 1px solid #ddd;
  padding-left: 10px;
}
.project-details .pd-block:first-child {
  border-left: none;
  padding-left: 0;
}
.project-details .pd-block-heading {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
}
.project-details .pd-block-value {
  font-size: 14px;
  color: #555;
}
.project-details .pd-block-value > a {
  display: flex;
  align-items: center;
}
.project-details .pd-block-value i {
  color: #888;
  display: inline-block;
  padding-left: 6px;
}
.project-details .pd-block-value:hover i {
  color: #222;
}

.cs-process-content {
  max-width: 800px;
  margin: 0 auto 30px;
}
.cs-process-content:last-child {
  border: none;
}
.cs-process-content h1 {
  margin-bottom: 30px;
  line-height: 1.1;
}
.cs-process-content.home-page {
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  margin-top: 5px;
}
.cs-process-content.home-page:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.content-block {
  margin-bottom: 50px;
  animation: slide-down 1200ms;
}
.content-block ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
.content-block ul li {
  margin-bottom: 10px;
}

.semi-block {
  margin-bottom: 40px;
}
.semi-block h4 {
  margin-bottom: 20px;
  margin-top: 40px;
}

.figure-wrap-height {
  max-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ddd;
  animation: slide-down 600ms;
  display: block;
  background-color: #fff;
}
.figure-wrap-height.full-height {
  max-height: max-content;
}
.figure-wrap-height.no-border {
  border: none;
}

.figure-wrap-width {
  max-width: 800px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  animation: slide-down 600ms;
  display: block;
  background-color: #fff;
}

figure {
  cursor: pointer;
  transition: all 300ms;
}
figure:hover {
  transform: scale(1.01);
}
figure.not-clickable {
  cursor: default;
}
figure.not-clickable:hover {
  transform: scale(1);
}

.fig-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cs-hero-block {
  background-color: #333;
  color: #fff;
  text-align: left;
}
.cs-hero-block h1 {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

.project-hero-block {
  margin-bottom: 50px;
  margin-top: 10px;
}
.project-hero-block .project-details {
  margin-top: 20px;
}

.artworks-landing {
  display: flex;
  flex-direction: row;
  transition: all 300ms;
  flex-wrap: wrap;
  margin: 50px auto;
  gap: 20px;
}
.artworks-landing .art-work {
  background-color: #fff;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: all 300ms;
  border: 10px solid transparent;
}
.artworks-landing .art-work:hover {
  transform: scale(1.02);
  cursor: pointer;
  border: 10px solid #f3f3f3;
}
.artworks-landing .art-work img {
  max-width: 220px;
  animation: art-work-animate-1 750ms;
}

.page-content-wrap {
  overflow: auto;
  padding: 0 20px;
  margin-top: 5px;
}
.page-content-wrap.page-content {
  background-color: #f3f3f3;
  padding: 20px;
}

.project-hero-block a {
  color: #000;
}

.ui-design-wrapper {
  overflow: auto;
}
.ui-design-wrapper h2 {
  margin-bottom: 20px;
}

.ui-design-content {
  margin: 0 auto;
}

.ui-design-work-item {
  margin-bottom: 20px;
  text-align: center;
  max-height: 600px;
}

.ui-design-thumbnail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 50px auto;
  max-width: 800px;
}

.ui-design-thumbnail {
  max-width: 395px;
}

.ui-design-thumbnail-aspect-ratio {
  max-height: 250px;
  overflow: hidden;
  border-radius: 6px;
  border: 6px solid #f2f2f2;
  animation: slide-down 600ms;
}
.ui-design-thumbnail-aspect-ratio img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  transition: all 300ms;
  overflow: hidden;
}
.ui-design-thumbnail-aspect-ratio img:hover {
  transform: scale(1.04);
}

.about-page-wrapper {
  overflow-x: auto;
  overflow-y: auto;
  margin-bottom: 20px;
}

.about-page {
  max-width: 800px;
  padding-bottom: 2px;
  margin: 0 auto;
}
.about-page h1 {
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-page h1 p {
  font-weight: normal;
  margin: 20px 0;
}
.about-page p {
  margin-bottom: 20px;
}
.about-page .about-pic {
  text-align: center;
  animation: slide-down 600ms;
  margin: 30px auto;
}
.about-page .about-pic img {
  border-radius: 100%;
  width: 100px;
  height: 100px;
}
.about-page .contact-details-wrap {
  font-size: 14px;
  margin: 5px 20px 30px 20px;
  display: flex;
  justify-content: space-between;
}
.about-page .contact-details {
  display: flex;
  gap: 20px;
}

.resume-page {
  min-width: 80vw;
  height: 90vh;
}

.active-job-seeker {
  font-style: italic;
  color: #666;
  font-size: 20px;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 40px;
}
.active-job-seeker .contact-details-wrap {
  gap: 20px;
  margin: 0;
}

.btn-link {
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 13px;
  display: inline-block;
  cursor: pointer;
  margin-top: 5px;
}
.btn-link:hover {
  background-color: #000;
}

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