.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.body {
  background-color: #000;
  font-family: Sen, sans-serif;
}

.wrapper {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

.wrapper.grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.wrapper.grid-3_col {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.wrapper.projects-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.wrapper.sticky-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.wrapper.footer-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 0.85fr 0.4fr;
  grid-template-columns: 0.85fr 0.4fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.nav-bar {
  padding-right: 72px;
  padding-left: 72px;
  background-color: transparent;
}

.nav-link {
  padding: 32px 24px;
  -webkit-transition: color 350ms cubic-bezier(.165, .84, .44, 1);
  transition: color 350ms cubic-bezier(.165, .84, .44, 1);
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 20px;
  line-height: 150%;
}

.nav-link:hover {
  color: #0ff;
}

.nav-link.button {
  background-color: #5221e6;
  -webkit-transition: background-color 350ms cubic-bezier(.165, .84, .44, 1), color 350ms cubic-bezier(.165, .84, .44, 1);
  transition: background-color 350ms cubic-bezier(.165, .84, .44, 1), color 350ms cubic-bezier(.165, .84, .44, 1);
  color: #fff;
  font-weight: 700;
}

.nav-link.button:hover {
  background-color: #2a0b85;
}

.brand {
  margin-top: 32px;
  padding-left: 0px;
}

.hero-section {
  position: static;
  height: 110vh;
}

.hero-image-box {
  height: 100%;
  background-image: url('../images/flapping_owl_1024.jpg');
  background-position: 50% 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 1;
}

.paragraph_18px {
  padding-top: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 150%;
}

.paragraph_18px.dark-grey {
  padding-top: 0px;
  color: #5b6876;
  font-size: 18px;
}

.paragraph_18px.light-grey {
  color: #8491a0;
}

.paragraph_18px.light-grey._40px-bottom_m {
  margin-bottom: 40px;
}

.paragraph_18px.light-grey._64px-bottom_m {
  margin-bottom: 64px;
}

.hero-bg {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: -1;
  width: 65vw;
  height: 110vh;
  max-height: 1350px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#181823), to(#181823));
  background-image: linear-gradient(180deg, #181823, #181823);
}

.experience-section {
  padding: 100px 72px;
  color: #a5a4a4;
}

.overline_16px {
  display: none;
  margin-bottom: 8px;
  color: #8491a0;
  font-size: 16px;
  line-height: 150%;
  font-weight: 700;
  text-transform: uppercase;
}

.overline_16px.top_overline {
  display: inline-block;
  color: #fff3e4;
  font-weight: 400;
  text-transform: capitalize;
}

.heading_55px {
  display: inline-block;
  width: 100%;
  max-width: 780px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 30px;
  line-height: 110%;
}

.heading_55px.black {
  color: #181823;
}

.heading_55px.black._24px-bottom {
  margin-bottom: 24px;
  font-size: 30px;
}

.heading_55px._24px-bottom {
  margin-bottom: 24px;
  font-size: 24px;
}

.heading_55px._24px-bottom.hnss {
  font-size: 3em;
}

.heading_55px.cd_heading {
  color: #000;
}

.flex-vertical_left_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.experience-grid {
  margin-top: 40px;
  grid-column-gap: 24px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.experience-grid._3col {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.heading_24px {
  margin-top: 0px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
}

.heading_24px._64px-bottom_m {
  margin-bottom: 64px;
  font-size: 16px;
  font-weight: 400;
}

.experience-block {
  padding-right: 20px;
}

.paragraph_16px {
  margin-bottom: 0px;
  padding-top: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
}

.paragraph_16px.light-grey {
  color: #8491a0;
}

.paragraph_16px.cyan {
  -webkit-transition: color 350ms ease;
  transition: color 350ms ease;
  color: #0ff;
}

.paragraph_16px.cyan:hover {
  color: rgba(0, 255, 255, 0.85);
}

.paragraph_16px.top_pgraph {
  padding-top: 20px;
}

.mid-section {
  display: block;
}

.mid_left-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 72px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #fff3e4;
}

.mid_left-block.instagram {
  padding-bottom: 10px;
  background-color: #fbe4ff;
}

.mid_left-block.colour_2_block {
  background-color: #d5e3ff;
}

.animated-link-button {
  display: none;
  border-bottom: 1px solid #5b6876;
  -webkit-transition: color 350ms cubic-bezier(.165, .84, .44, 1), padding 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1);
  transition: color 350ms cubic-bezier(.165, .84, .44, 1), padding 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1);
  color: #181823;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
}

.animated-link-button:hover {
  padding-right: 16px;
  padding-left: 16px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5221e6), to(#5221e6));
  background-image: linear-gradient(180deg, #5221e6, #5221e6);
  color: #fff;
}

.animated-link-button.white {
  color: #fff;
}

.normal-wrapper._48px-right_p {
  padding-right: 48px;
}

.normal-wrapper._48px-right_p._80px-bottom_m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.normal-wrapper._120px-bottom_m {
  margin-bottom: 120px;
}

.normal-wrapper.flex-vertical_left_space-betwen {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.normal-wrapper.flex-horizontal_left_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.mid_image {
  background-image: url('../images/crystal_ball_1280.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.mid_image.instagram {
  background-image: url('../images/cd_on_bench_2k_80q.jpg');
  background-position: 50% 0%;
}

.mid_image.sunset {
  background-image: url('../images/sunset_xl_80q.jpg');
  background-position: 50% 50%;
}

.mid_image.yvie_flipped {
  background-image: url('../images/yvie_01_flipped_80q.jpg');
  background-position: 50% 20%;
}

.mid_image.bottom_pic {
  background-image: url('../images/Instagram.jpg');
  background-position: 0% 0%;
}

.mid_image.desk_invis {
  display: none;
}

.skills-section {
  margin-top: 0px;
  padding: 120px 72px 40px;
}

.skill-icon {
  margin-bottom: 24px;
  padding-top: 2px;
}

.skill-icon.camera_icon {
  padding-top: 10px;
  padding-bottom: 0px;
}

.skill-icon.lotus_icon {
  padding-top: 10px;
  padding-bottom: 0px;
}

.skill-icon.hands_icon {
  padding-top: 10px;
  padding-bottom: 0px;
}

.logo-bar-section {
  display: none;
  overflow: hidden;
}

.logo-grid {
  grid-column-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24vw;
  height: 140px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #181823;
}

.projects-section {
  padding: 120px 72px;
  background-color: #fbe4ff;
}

.project-image {
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-description {
  position: relative;
  padding: 40px 32px 60px;
  background-color: #181823;
}

.button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-top: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  justify-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.cta {
  padding: 24px 32px;
  border: 1px solid #5221e6;
  background-color: rgba(56, 152, 236, 0);
  -webkit-transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), transform 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.cta:hover {
  background-color: #5221e6;
  box-shadow: 0 20px 60px 0 rgba(82, 33, 230, 0.3);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.cta.email_button {
  width: 300px;
  background-color: #3299f3;
  -webkit-transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), transform 350ms cubic-bezier(.165, .84, .44, 1);
  transition: box-shadow 350ms cubic-bezier(.165, .84, .44, 1), background-color 350ms cubic-bezier(.165, .84, .44, 1), transform 350ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
  color: #fff;
  text-align: center;
}

.project-wrapper {
  text-decoration: none;
}

.project-wrapper {
  overflow: hidden;
}

.dribbble-section {
  display: none;
  padding-top: 120px;
  padding-bottom: 120px;
}

.wrapper-v2 {
  width: 100%;
  height: 100%;
  max-width: 1076px;
  margin-right: auto;
  margin-left: auto;
}

.wrapper-v2.forms-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.brower-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 37px;
  padding-left: 16px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #181823;
}

.dots {
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 100px;
  background-color: #8491a0;
}

.dribbble-image {
  height: 640px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-image: url('../images/Dribbble.jpg');
  background-position: 50% 50%;
  background-size: 1024px;
  background-repeat: repeat;
  background-attachment: fixed;
}

.testimonial-section {
  display: block;
  margin-top: 100px;
  padding: 0px 72px;
}

.testimonial-block._120px-bottom_m {
  margin-bottom: 40px;
}

.testimonial-block._120px-bottom_m.invis_testimonial {
  display: none;
}

.testimonial-image {
  height: 360px;
  border: 1px solid #5b6876;
  border-radius: 1px;
  background-image: url('../images/oha_christmas_house_2k_80q.jpg');
  background-position: 50% 50%;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-text {
  padding: 30px;
  border: 1px solid #5b6876;
}

.heading_18px {
  margin-top: 0px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
  line-height: 120%;
  font-weight: 700;
}

.heading_18px.light-grey {
  color: #8491a0;
}

.heading_18px.light-grey._4px-bottom_m {
  margin-bottom: 4px;
}

.testimonial-sticky-block {
  position: -webkit-sticky;
  position: sticky;
  top: 64px;
  padding-bottom: 40px;
}

.tabs-section {
  display: none;
  padding: 120px 72px;
}

.tab {
  margin-right: 24px;
  padding: 12px 16px;
  border: 1px solid #5221e6;
  background-color: hsla(0, 0%, 86.7%, 0);
  -webkit-transition: background-color 350ms cubic-bezier(.165, .84, .44, 1);
  transition: background-color 350ms cubic-bezier(.165, .84, .44, 1);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.tab:hover {
  background-color: rgba(82, 33, 230, 0.2);
}

.tab.w--current {
  background-color: #5221e6;
}

.tab-menu {
  margin-bottom: 40px;
}

.tab-grid {
  display: -ms-grid;
  display: grid;
  height: 32vw;
  max-height: 630px;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.tab-image {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.forms-section {
  margin-top: 0px;
  padding: 120px 72px;
}

.footer {
  padding: 80px 72px 40px;
  background-color: #181823;
}

.footer-logo {
  margin-bottom: 32px;
}

.social-icons {
  margin-right: 16px;
  padding-bottom: 10px;
}

.footer-link-block {
  width: 100%;
  border: 1px none #000;
  text-decoration: none;
}

.footer-link {
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-transition: color 350ms cubic-bezier(.165, .84, .44, 1);
  transition: color 350ms cubic-bezier(.165, .84, .44, 1);
  color: #fff;
  font-size: 16px;
}

.footer-link:hover {
  color: #0ff;
}

.skills-wrapper._48px-right_p {
  padding-right: 48px;
}

.progress-bar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 100;
  width: 100%;
  height: 5px;
  background-color: #5221e6;
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}

.arrow-div {
  position: absolute;
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #5221e6;
}

.text-block-2 {
  display: block;
  padding-top: 3px;
  font-family: Sen, sans-serif;
  color: #fff;
  font-size: 2em;
  letter-spacing: -1px;
  text-decoration: none;
}

.text-span-3 {
  color: #5c26ff;
}

.text-span-4 {
  color: #5c26ff;
}

.text-span-5 {
  color: #fff3e4;
}

.text-span-6 {
  color: #5c26ff;
}

.bold-text {
  color: #8491a0;
}

.project_wrapper_div {
  margin-bottom: 24px;
}

.link-block {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  display: none;
  width: 120px;
  height: 48px;
  background-color: #5221e6;
}

.text-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-3.buy_album_text {
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

.text-span-8 {
  color: #fff;
  text-decoration: underline;
}

.div-block-2 {
  height: 400px;
  background-image: url('../images/yvie_2_q80.jpg');
  background-position: 50% 20%;
  background-size: cover;
}

.div-block-2.yvie_cd_1 {
  background-image: url('../images/yvie_4_q80.jpg');
}

.div-block-2.yvie_cd_2 {
  background-image: url('../images/yvie_1_q80.jpg');
}

.div-block-3 {
  width: 50%;
  margin-right: 20px;
}

.heading {
  position: absolute;
  left: 0%;
  top: 100%;
  right: 0%;
  bottom: 0%;
  margin-top: 0px;
  padding-right: 100px;
  color: #fff;
  text-align: right;
}

.image {
  margin-top: 40px;
}

.bold-text-2 {
  color: #fff3e4;
}

.bold-text-3 {
  color: #fff3e4;
}

.bold-text-4 {
  color: #fff3e4;
}

.text-block-4 {
  margin-top: 60px;
  color: #fff;
  font-size: 11px;
  line-height: 100%;
}

.text-block-4.disclaimer {
  color: #8491a0;
}

.div-block-4 {
  width: 100%;
  height: 110px;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 12px;
  padding-right: 24px;
  padding-left: 24px;
  border-style: solid;
  border-width: 2px;
  border-color: #2a0e80;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.div-block-4.listen_button {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  padding-left: 0px;
  border-radius: 6px;
  background-color: #000;
}

.html-embed {
  height: 30%;
  max-width: 50%;
  margin-right: auto;
  margin-left: auto;
}

.html-embed.services_pp {
  width: 100px;
  height: 30px;
  margin-right: 0px;
  margin-left: 0px;
}

.html-embed.cd_pp {
  overflow: hidden;
  width: 200px;
  height: 40px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.text-block-5 {
  padding-bottom: 10px;
}

.html-embed-2 {
  height: 40px;
}

.text-block-6 {
  display: inline-block;
  font-size: 20px;
}

.body-2 {
  background-color: #000;
  font-family: Sen, sans-serif;
}

.heading-2 {
  color: #fff;
}

.terms_section {
  margin-bottom: 100px;
  margin-left: 70px;
}

.terms_text {
  color: #fff;
}

.link {
  display: block;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.link.top_footer_link {
  padding-top: 0px;
}

.text-span-9 {
  color: #fff;
}

.text-block-7 {
  color: #fbe4ff;
  font-size: 16px;
}

.logoslot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
}

.logoimage {
  min-width: 100%;
  margin-right: 20px;
}

.logoholder {
  width: 60%;
  min-width: 120px;
  margin-right: 20px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 991px) {
  .wrapper.grid-3_col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .wrapper.projects-grid {
    grid-row-gap: 48px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 24px;
  }

  .wrapper.footer-grid {
    grid-column-gap: 25px;
    -ms-grid-columns: 2.5fr 1fr;
    grid-template-columns: 2.5fr 1fr;
  }

  .nav-bar {
    padding-right: 32px;
    padding-left: 32px;
  }

  .experience-section {
    padding: 150px 40px 80px;
  }

  .overline_16px {
    display: inline-block;
    color: #fff;
  }

  .overline_16px.top_overline {
    display: none;
  }

  .heading_55px._24px-bottom {
    font-size: 3em;
  }

  .experience-block {
    padding-right: 16px;
  }

  .mid_left-block {
    padding: 80px 40px;
  }

  .normal-wrapper.flex-horizontal_left_top {
    margin-left: 0px;
  }

  .skills-section {
    padding: 80px 40px;
  }

  .logo-grid {
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .logo-box {
    width: auto;
  }

  .projects-section {
    padding: 80px 40px;
  }

  .button-wrapper {
    height: 240px;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .dribbble-section {
    padding: 80px 40px;
  }

  .dribbble-image {
    height: 480px;
    background-size: cover;
  }

  .testimonial-section {
    padding-top: 80px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .testimonial-block._120px-bottom_m {
    margin-bottom: 64px;
  }

  .testimonial-text {
    padding: 32px;
  }

  .testimonial-sticky-block {
    padding-bottom: 30px;
  }

  .tabs-section {
    display: none;
    padding: 80px 40px;
  }

  .tab-grid {
    height: 840px;
    max-height: none;
    grid-row-gap: 24px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .forms-section {
    padding: 80px 40px;
  }

  .footer {
    height: 500px;
    padding: 20px 40px;
  }

  .social-icons {
    display: inline-block;
    padding-bottom: 9px;
  }

  .div-block-3 {
    width: 100%;
    margin-right: 0px;
  }

  .heading {
    position: relative;
    left: 0%;
    top: 85%;
    right: 0%;
    bottom: 0%;
    padding-right: 20px;
  }

  .text-block-4 {
    margin-top: 20px;
    font-size: 100%;
    line-height: 100%;
  }

  .div-block-4 {
    margin-top: 10px;
    margin-right: 0px;
  }

  .text-block-6 {
    display: inline-block;
    padding-top: 0px;
    color: #fff;
    font-size: 20px;
  }

  .logoslot {
    width: 100%;
    margin-right: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .logoimage {
    max-width: 100px;
  }

  .logoholder {
    width: 0%;
    margin-right: 0px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper.grid {
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .wrapper.grid-3_col {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .wrapper.footer-grid {
    -ms-grid-columns: 2.75fr;
    grid-template-columns: 2.75fr;
  }

  .nav-bar {
    padding-right: 0px;
    padding-left: 20px;
  }

  .nav-link {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.12);
  }

  .brand {
    margin-top: 24px;
  }

  .menu-button {
    padding: 24px 20px;
  }

  .menu-button.w--open {
    background-color: #000;
  }

  .nav-menu {
    background-color: #181823;
  }

  .hero-section {
    height: auto;
  }

  .hero-image-box {
    height: 45vh;
    background-position: 50% 33%;
  }

  .hero-bg {
    display: none;
  }

  .experience-section {
    padding: 64px 20px;
  }

  .heading_55px {
    font-size: 32px;
  }

  .heading_55px._24px-bottom {
    font-size: 2.5em;
  }

  .heading_55px._24px-bottom.hnss {
    font-size: 2.5em;
  }

  .experience-grid {
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .experience-block {
    padding-right: 0px;
  }

  .mid-section {
    display: block;
    height: auto;
  }

  .mid_left-block {
    padding: 48px 20px;
  }

  .normal-wrapper._48px-right_p {
    padding-right: 0px;
  }

  .normal-wrapper._120px-bottom_m {
    margin-bottom: 64px;
  }

  .mid_image {
    height: 450px;
  }

  .mid_image.sunset.desk_invis {
    display: none;
  }

  .mid_image.yvie_flipped.mob_invis {
    display: none;
  }

  .mid_image.desk_invis {
    display: block;
  }

  .mid_image.mob_invos {
    display: none;
  }

  .skills-section {
    padding: 64px 20px;
  }

  .projects-section {
    padding: 64px 20px;
  }

  .project-image {
    background-image: url('../images/Yvie-no-4-standing-to-side-of-piano-with-headwear-on.---20201202_132020-1.jpg');
    background-position: 50% 50%;
    background-size: auto;
  }

  .dribbble-section {
    padding: 64px 20px;
  }

  .wrapper-v2.forms-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .dribbble-image {
    background-size: cover;
  }

  .testimonial-section {
    padding: 64px 20px;
  }

  .testimonial-sticky-block {
    position: static;
  }

  .tabs-section {
    padding: 64px 20px;
  }

  .tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 4px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .tab-menu {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .tab-grid {
    height: auto;
  }

  .tab-image {
    height: 360px;
  }

  .forms-section {
    padding: 64px 20px;
  }

  .footer {
    height: auto;
  }

  .skills-wrapper._48px-right_p {
    padding-right: 0px;
  }

  .heading {
    position: relative;
    font-size: 150%;
    line-height: 100%;
  }

  .div-block-4 {
    max-width: 530px;
  }

  .logoholder {
    min-width: 110px;
  }
}

@media screen and (max-width: 479px) {
  .heading_55px._24px-bottom {
    font-size: 1.8em;
  }

  .heading_55px._24px-bottom.hnss {
    font-size: 1.7em;
  }

  .experience-grid._3col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .mid_left-block {
    height: 100%;
  }

  .button-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .testimonial-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .testimonial-text {
    padding: 24px;
  }

  .tab-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .heading {
    padding-right: 0px;
    font-size: 140%;
  }

  .div-block-4 {
    margin-right: 0px;
  }

  .logoimage {
    max-width: 80px;
    min-width: 25%;
    margin-right: 0px;
  }

  .logoholder {
    width: 100%;
    min-width: 50px;
  }
}

#w-node-b55d29de-927c-8931-8221-3d75ea05275d-2fc62284 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-2fc62284 {
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_2a9716ca-4096-3850-2d15-28cc733fbdd4-1e7d8e5d {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-2fc62284 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-_87374798-8c9b-3db8-5ba3-2ce8dff4c8d5-2fc62284 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4a8f1cb8-b5cc-dca3-1f15-df569cc0e59e-2fc62284 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2a9716ca-4096-3850-2d15-28cc733fbdd4-1e7d8e5d {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

