:root {
  --dark-slate-gray: #272832;
  --pix-pink: #dc3c50;
  --dodger-blue: #249cff;
  --white-smoke: #ededed;
  --imagecorner: 10px;
  --dark-slate-gray-2: #272832;
  --topicheight: 350px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin: 10px 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
}

h2 {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
}

h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
}

h4 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

h5 {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin: 10px 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

img {
  object-fit: fill;
  max-width: 100%;
  display: inline-block;
}

.button {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  background-color: #000;
  border: 2px solid #000;
  margin-right: 14px;
  padding: 16px 26px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .25s, color .25s, border-color .25s;
  display: inline-block;
}

.button:hover {
  background-color: #0000;
  border-color: #fff;
}

.button.hollow {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
  border-radius: 20px;
}

.button.hollow:hover {
  color: #000;
  border-color: #000;
}

.button.hollow.black {
  color: #dc3c50;
  border-color: #dc3c50;
  margin-right: 0;
}

.button.hollow.black:hover {
  color: #ff177f;
  border-color: #ff177f;
}

.button.form {
  background-color: #d1d1d1;
  border-width: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  font-weight: 300;
}

.button.form:hover {
  background-color: #249cff;
}

.navbar {
  opacity: 1;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.logo {
  color: #272832;
  margin-top: 15px;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 33px;
  transition: color .3s;
}

.logo:hover {
  color: #249cff;
}

.hamburger-icon {
  font-size: 31px;
}

.section {
  color: #5c5c5c;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.section.header {
  color: #ffffffb8;
  background-color: #90e3fd;
  background-image: linear-gradient(135deg, #d9004fe0, #e34800d1), url('../images/nature.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding: 80px 10px;
}

.section.header._2 {
  background-color: #0000;
  background-image: linear-gradient(135deg, #9100d980, #00b6e380);
  border: 10px #000;
  border-radius: 0;
  min-width: auto;
  min-height: 250px;
  margin-top: 0;
  padding: 0;
  position: static;
}

.section.grey {
  border: 10px none var(--dark-slate-gray);
  opacity: 1;
  color: #696969;
  background-color: #0000;
  border-radius: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.section.footer {
  background-color: #fff;
  border: 1px solid #0000;
  padding: 35px 20px;
}

.section.projects {
  color: #4d4d4d;
  object-fit: fill;
  object-position: 50% 50%;
  border-top: 1px solid #ededed;
  max-width: none;
  height: auto;
  min-height: auto;
  max-height: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 0;
}

.section.white-section {
  border: 10px none var(--pix-pink);
  opacity: 1;
  color: #fff;
  background-color: #fff;
  border-radius: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.menu-button {
  color: #272832;
  background-color: #0000;
  transition: color .2s, background-color .2s;
}

.menu-button:hover {
  color: #272832;
  background-color: #f2f2f2;
}

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

.menu-button.w--open:hover {
  color: #ffffffd4;
  background-color: #1e1f26;
}

.nav-menu {
  background-color: #272832;
  padding-top: 18px;
  padding-bottom: 24px;
}

.nav-link {
  color: #fff;
  padding: 5px 20px 5px 0;
  font-size: 26px;
  font-weight: 300;
  line-height: 33px;
  transition: color .5s;
}

.nav-link:hover {
  color: #249cff;
}

.nav-link.w--current, .nav-link.w--current:hover {
  color: #ff177f;
}

.social-wrapper {
  text-align: left;
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px 20px 0;
  display: block;
}

.social-icon {
  width: 23px;
  margin-right: 15px;
}

.social-link {
  margin-right: 16px;
}

.social-link:hover {
  transform: translate(0, 5px);
}

.project-row {
  background-color: #272832;
  background-image: linear-gradient(to right, #ff0048, #f53d00);
}

.project-row.blue {
  background-image: linear-gradient(90deg, var(--dodger-blue), var(--white-smoke));
}

.project-row.teal {
  background-image: linear-gradient(to right, #00b7ff, #00f59b);
}

.project-link {
  float: left;
  color: #fff;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25%;
  height: 350px;
  text-decoration: none;
  transition: opacity .25s;
  display: block;
  position: relative;
}

.project-link:hover {
  opacity: .5;
}

.project-link.project-1 {
  background-image: url('../images/bob-van-aubel-ray-bans_1.avif');
  background-size: cover;
  background-attachment: scroll;
}

.project-link.project-2 {
  background-image: url('../images/PolygonalStriking_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.project-link.project-6 {
  background-image: url('../images/CODx2_1.avif');
  background-position: 50% 0;
  background-size: cover;
}

.project-link.project-7 {
  background-image: url('../images/Swiris_1.avif');
}

.project-link.project-9 {
  background-image: url('../images/BlackPantherA3.jpg');
  background-position: 50%;
  background-size: cover;
  width: 50%;
}

.project-link.project-10 {
  background-image: url('../images/4K_Rotor.jpg');
  background-position: 50%;
  background-size: cover;
  width: 50%;
}

.half-width {
  width: 50%;
}

.third-width {
  width: 33.333%;
}

.main-heading {
  opacity: 1;
  color: #fff;
  text-align: left;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #000000bf;
  background-clip: border-box;
  border: 2px #fff;
  border-left: 8px solid #dc3c50;
  border-radius: 0;
  width: 550px;
  margin-right: 0;
  padding: 10px 0 10px 10px;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-decoration: none;
  position: static;
}

.button-group {
  border-radius: 0;
  margin-top: 36px;
}

.project-wrapper {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  background-color: #00000080;
  background-clip: border-box;
  border-radius: 0;
  padding: 11px 19px 13px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tag {
  color: #ffffff7d;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 300;
  line-height: 10px;
}

.footer-logo {
  color: #c4c4c4;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.footer-icon {
  color: #fff;
  background-color: #fff;
  border: 0 #000;
  border-radius: 0;
}

.footer-social-link {
  opacity: .2;
  margin-left: 24px;
  transition: opacity .25s;
}

.footer-social-link:hover {
  opacity: .77;
}

.social-footer-wrap {
  text-align: right;
  background-color: #0000;
}

.field {
  color: #249cff;
  background-color: #fff;
  border: 0 solid #000;
  height: 58px;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 17px;
  font-weight: 300;
  transition: box-shadow .3s;
  box-shadow: inset 2px 0 #0000;
}

.field:focus {
  box-shadow: inset 2px 0 #249cff;
}

.field.textarea {
  height: 128px;
}

.field.grey {
  background-color: #f7f7f7;
}

.contact-text {
  color: #696969;
  font-weight: 300;
}

.slider {
  opacity: 1;
  background-color: #fff;
  border-radius: 0;
  height: auto;
}

.slide {
  opacity: 1;
  mix-blend-mode: normal;
  background-image: url('../images/Hell_Final_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 0;
  padding-top: 170px;
  padding-bottom: 240px;
}

.slide._2 {
  background-image: url('../images/BlackPanther_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 240px;
}

.slide._3 {
  background-image: url('../images/Structures_ao_1.avif');
  border-radius: 0;
}

.slider-nav {
  opacity: 1;
  outline-offset: 0px;
  mix-blend-mode: normal;
  object-fit: fill;
  border: 1px #fff;
  border-radius: 0;
  outline: 3px #333;
  width: 250px;
  height: 50px;
  min-height: 0;
  padding-top: 10px;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  line-height: 0;
  inset: auto 0% 0%;
}

.skill {
  opacity: 1;
  color: var(--white-smoke);
  text-transform: uppercase;
  background-color: #dc3c50;
  border: 1px #000;
  border-left: 5px solid #fff;
  border-radius: 0 10px 10px 0;
  width: 95%;
  padding: 12px 16px;
}

.skill:hover {
  background-color: #cfcfcf;
}

.skill._70 {
  width: 75%;
}

.skill._40 {
  width: 95%;
}

.skill._90 {
  width: 85%;
}

.skill-background {
  opacity: 1;
  background-color: #f7f7f7;
  border: 5px #000;
  border-radius: 0;
  width: 100%;
  margin-top: 18px;
  padding-left: 0;
  padding-right: 0;
}

.success-message {
  color: #7d7d7d;
  text-align: center;
  background-color: #ccc;
  padding: 83px 32px;
}

.thank-you-title {
  margin-bottom: 14px;
  margin-left: 14px;
  margin-right: 14px;
}

.no-padd-section.border {
  background-color: #0000;
  border: 5px #fff;
  border-radius: 0;
}

.work-type {
  color: #ff8000;
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
}

.process-row {
  margin-bottom: 17px;
}

.skill-group {
  border: 1px #000;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 2px;
}

.center-content {
  text-align: center;
}

.mobile-padding-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.more-icon {
  float: left;
  margin-top: 2px;
  margin-right: 9px;
  padding-left: 10px;
}

.back-link {
  opacity: 1;
  color: #fff;
  text-transform: capitalize;
  background-color: #000000bf;
  width: 200px;
  min-width: 200px;
  margin-left: 0;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  text-decoration: none;
  transition: opacity .3s;
  display: block;
}

.back-link:hover {
  opacity: 1;
}

.previous-column {
  text-align: right;
  border-right: 1px solid #ededed;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 40px;
}

.next-column {
  border: 1px #000;
  border-radius: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 40px;
}

.next-prev-link {
  color: #bdbdbd;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
}

.next-prev-link:hover {
  color: #404040;
}

.container-3 {
  position: static;
}

.banner-anim-bg {
  opacity: 1;
  mix-blend-mode: normal;
  border-radius: 0;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  min-height: 350px;
  max-height: none;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.image-rounded-corners {
  box-sizing: border-box;
  aspect-ratio: auto;
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: 50% 50%;
  border: 8px solid #0000;
  border-radius: 13px;
  width: 100%;
  min-width: auto;
  max-width: none;
  height: auto;
  min-height: auto;
  max-height: 100%;
  margin: auto;
  display: block;
  position: relative;
  overflow: hidden;
}

.home-topic-text {
  color: #696969;
  object-fit: cover;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: auto;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  display: block;
}

.topic-heading {
  color: #696969;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  min-width: 100%;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  display: block;
}

.column-pix {
  z-index: auto;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: relative;
  overflow: visible;
}

.video-full-width-pix {
  opacity: 1;
  object-fit: cover;
  object-position: 50% 50%;
  border-style: none;
  border-width: 20px 10px 5px 20px;
  width: 100%;
  height: 500px;
  min-height: auto;
  margin-right: 0;
  padding-bottom: 0;
}

.slider-3 {
  background-color: #fff;
  min-height: 800px;
}

.slide-7 {
  background-image: url('../images/Harrier_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-8 {
  background-image: url('../images/JerseyDress_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-9 {
  background-image: url('../images/BP_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-2 {
  background-color: #dc3c50;
  border: 1px #000;
  border-radius: 0;
}

.icon-3 {
  background-color: #dc3c50;
}

.slide-nav {
  background-color: #dc3c5080;
  min-height: 0;
  font-size: 18px;
}

.intro-text-pix {
  max-width: 100%;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.rive {
  width: 100%;
  min-width: auto;
  height: 100%;
  min-height: auto;
  overflow: clip;
}

.slide-10 {
  background-image: url('../images/Gromit_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-11 {
  background-image: url('../images/Whale_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.paragraph-4 {
  color: #696969;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.slide-12 {
  background-image: url('../images/EjectionSeat_MODO_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-13 {
  background-image: url('../images/HOTAS_ModelRender_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.sub-heading {
  opacity: 1;
  color: #fff;
  text-align: left;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #000000bf;
  background-clip: border-box;
  border: 2px #fff;
  border-left: 8px solid #dc3c50;
  border-radius: 0;
  width: 550px;
  margin-right: 500px;
  padding: 10px 0 10px 10px;
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;
  text-decoration: none;
  position: static;
}

.slide-15 {
  background-image: url('../images/DangerMouse_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-16 {
  background-image: url('../images/HOTAS_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.columns-3 {
  max-width: 100%;
  margin-left: 30px;
  margin-right: 30px;
}

.slide-1 {
  background-image: url('../images/AviCardy_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.body-2 {
  object-fit: cover;
  background-color: #000;
  padding-top: 0;
}

.columns-4 {
  opacity: 1;
  border: 0 #000;
  border-radius: 0;
}

.full-width-pix {
  aspect-ratio: auto;
  outline-offset: 0px;
  object-fit: contain;
  object-position: 50% 50%;
  border: 10px #0000;
  border-top-width: 0;
  border-bottom: 5px solid #0000;
  border-radius: 0;
  outline: 3px #333;
  width: 100%;
  margin: 0 0 5px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: visible;
}

.slide-1-2 {
  background-image: url('../images/TommyShoe_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.side-by-side-section-pix {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 10px;
  overflow: clip;
}

.video-rounded-corners {
  box-sizing: border-box;
  clear: none;
  aspect-ratio: 1;
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: 50% 50%;
  border: 8px solid #0000;
  border-radius: 13px;
  width: 100%;
  min-width: auto;
  max-width: none;
  height: auto;
  min-height: auto;
  max-height: 100%;
  margin: auto;
  padding-top: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.divider-pix {
  height: 10px;
}

.cad-bg {
  max-width: 100%;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: static;
  overflow: visible;
}

.cad-ignitec-bg {
  background-image: url('../images/Ignitec_NFC_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 10px #0000;
  width: 100%;
  max-width: none;
  height: 500px;
  min-height: auto;
  max-height: none;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: static;
  overflow: visible;
}

.block-quote {
  color: #696969;
  border-left-width: 10px;
  border-left-color: #dc3c50;
  margin-top: 10px;
  margin-left: 100px;
  margin-right: 100px;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.topic-text {
  z-index: auto;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  color: #696969;
  object-fit: contain;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  display: block;
  position: relative;
  overflow: hidden;
}

.container-pix {
  border: 10px #000;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  overflow: visible;
}

.topic-banner-pix {
  min-height: 250px;
}

.section-11 {
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
}

.columns-5 {
  margin-top: 10px;
  margin-bottom: 0;
}

.columns-6 {
  margin-top: 20px;
}

.column-4 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.full-image-bottom-view-pix {
  object-fit: cover;
  object-position: 50% 75%;
  border-radius: 0;
  width: 100%;
  height: auto;
  min-height: auto;
  max-height: 500px;
  margin-top: 0;
  margin-bottom: 20px;
}

.break-up-pix {
  margin-top: 0;
}

.topic-heading-title-pix {
  margin-top: 0;
  padding-top: 0;
  position: absolute;
  top: 175px;
  left: 150px;
}

.light-theme {
  background-color: #f2f2f2;
}

.full-image-mid-view-pix {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 0;
  width: 100%;
  height: auto;
  min-height: auto;
  max-height: 500px;
}

.dark-theme {
  background-color: #000;
}

.section-13, .section-14 {
  margin-top: 0;
}

.image-rounded-corners-square {
  box-sizing: border-box;
  aspect-ratio: auto;
  border-radius: var(--imagecorner);
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: 50% 50%;
  border: 10px #000;
  width: 100%;
  min-width: auto;
  max-width: none;
  height: 600px;
  min-height: auto;
  max-height: 100%;
  margin: auto;
  display: block;
  position: relative;
  overflow: hidden;
}

.heading-2 {
  margin-bottom: 20px;
}

.columns-16 {
  margin-top: 10px;
}

.columns-17 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.column-6 {
  aspect-ratio: auto;
  object-fit: contain;
  height: 800px;
  overflow: hidden;
}

.code-embed {
  width: 100%;
  height: 100%;
  position: static;
  overflow: clip;
}

.column-7 {
  height: 700px;
  overflow: hidden;
}

.column-8 {
  height: 400px;
  min-height: auto;
}

.button-2 {
  box-sizing: border-box;
  float: none;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  text-align: center;
  vertical-align: middle;
  object-fit: contain;
  background-color: #dc3c50;
  border: 1px #000;
  border-radius: 10px;
  outline: 3px #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
  position: static;
  overflow: hidden;
}

.column-9, .container-4 {
  height: 700px;
}

.code-embed-2 {
  height: 100%;
}

.container-5 {
  max-width: 80%;
}

@media screen and (min-width: 1920px) {
  .image-rounded-corners, .image-rounded-corners-square {
    min-width: auto;
    min-height: auto;
  }
}

@media screen and (max-width: 991px) {
  .section.projects {
    min-height: 500px;
  }

  .social-wrapper {
    width: 725px;
  }

  .main-heading {
    min-width: 500px;
    font-size: 43px;
  }

  .slide {
    background-image: linear-gradient(90deg, #de003f80, #eb4a0080), url('../images/Hell_Final_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    padding-top: 170px;
    padding-bottom: 240px;
  }

  .slide._2 {
    background-image: linear-gradient(135deg, #9400decc, #00b0ebcc), url('../images/BlackPanther_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    padding-top: 170px;
    padding-bottom: 240px;
  }

  .slide._3 {
    background-image: linear-gradient(135deg, #00de60cc, #00bcebcc), url('../images/Structures_ao_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    padding-top: 170px;
    padding-bottom: 240px;
  }

  .slider-nav {
    margin-left: auto;
    margin-right: auto;
    inset: auto 0% 0%;
  }

  .skill {
    perspective: none;
    transform-origin: 0%;
    transition: opacity .2s;
    transform: none;
  }

  .more-icon {
    padding-left: 10px;
  }

  .back-link {
    opacity: 1;
    background-color: #000000bf;
    border: 5px #000;
    border-radius: 0;
    width: 200px;
    min-width: 200px;
    margin-left: 0;
    margin-right: -112px;
    padding-top: 5px;
  }

  .banner-anim-bg {
    background-color: #0000;
    min-width: auto;
    max-width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: visible;
  }

  .image-rounded-corners {
    object-fit: cover;
    border-width: 10px;
    border-radius: 20px;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: 300px;
    min-height: auto;
    overflow: hidden;
  }

  .column-pix {
    object-fit: contain;
    height: 100%;
  }

  .video-full-width-pix {
    border-radius: 0;
    height: 350px;
    margin-top: auto;
    margin-bottom: 20px;
  }

  .slider-3 {
    background-color: #fff;
    min-height: 500px;
  }

  .slide-7 {
    background-position: 50%;
    background-size: contain;
  }

  .slide-8 {
    background-size: contain;
  }

  .slide-9 {
    background-size: contain;
    min-height: 0;
  }

  .slide-nav {
    background-color: #dc3c5080;
  }

  .rive {
    width: 250px;
    height: 250px;
    margin-left: -20px;
    padding-left: 0;
  }

  .slide-10 {
    background-size: contain;
  }

  .slide-11 {
    background-image: url('../images/Whale_1.avif');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .sub-heading {
    font-size: 43px;
  }

  .full-width-pix {
    border-width: 10px;
    border-radius: 0;
    margin-top: 0;
  }

  .video-rounded-corners {
    object-fit: contain;
    border-width: 10px;
    border-radius: 20px;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: 100%;
    margin: auto;
    overflow: hidden;
  }

  .divider-pix {
    height: 10px;
  }

  .block-quote {
    border-left-width: 5px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
    line-height: 20px;
  }

  .topic-text {
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 0;
  }

  .topic-banner-pix {
    min-height: 350px;
  }

  .columns-5 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .columns-6 {
    margin-top: 20px;
  }

  .full-image-bottom-view-pix {
    border-radius: 0;
    height: 49%;
  }

  .break-up-pix {
    margin-top: 0;
    padding-top: 0;
  }

  .topic-heading-title-pix {
    padding-left: 0;
    left: 100px;
  }

  .full-image-mid-view-pix {
    border-radius: 0;
  }

  .section-14 {
    margin-bottom: 0;
  }

  .image-rounded-corners-square {
    object-fit: cover;
    object-position: 50% 50%;
    border-width: 1px;
    border-radius: 5px;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: 100%;
    min-height: auto;
    margin: auto auto 20px;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 12px;
  }

  .button.hollow {
    padding: 11px 18px;
  }

  .navbar {
    padding-left: 10px;
  }

  .logo {
    margin-top: 9px;
    font-size: 22px;
  }

  .section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section.header {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section.header._2 {
    min-height: 270px;
  }

  .section.grey {
    padding-top: 0;
  }

  .menu-button {
    padding: 10px;
  }

  .nav-menu {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 22px;
  }

  .social-wrapper {
    width: 100%;
    margin-bottom: 9px;
    padding: 12px;
  }

  .project-link {
    width: 50%;
    height: 280px;
  }

  .project-link.project-9, .half-width, .third-width {
    width: 100%;
  }

  .main-heading {
    opacity: 100;
    mix-blend-mode: normal;
    background-color: #000000bf;
    border-style: none none none solid;
    border-left-width: 5px;
    border-radius: 0;
    font-size: 28px;
    line-height: 34px;
    position: relative;
  }

  .button-group {
    margin-top: 26px;
  }

  .slider {
    height: 315px;
  }

  .slide {
    padding: 50px 10px 64px;
  }

  .slider-nav {
    height: 40px;
    font-size: 15px;
  }

  .brand-link {
    text-align: left;
    padding-left: 0;
  }

  .form-wrapper {
    margin-top: 11px;
  }

  .process-row {
    margin-bottom: 0;
  }

  .mobile-padding-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }

  .back-link {
    width: auto;
    min-width: 175px;
    margin-right: auto;
  }

  .previous-column {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 20px;
  }

  .next-column {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
  }

  .container, .container-2 {
    margin-top: -140px;
  }

  .image-rounded-corners {
    object-fit: contain;
    border-width: 10px;
    border-radius: 15px;
    height: auto;
    margin-bottom: 0;
    padding-top: 0;
  }

  .home-topic-text {
    height: auto;
    min-height: auto;
  }

  .topic-heading {
    padding-left: 0;
  }

  .column-pix {
    height: auto;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    overflow: clip;
  }

  .video-full-width-pix {
    margin-top: 0;
    margin-bottom: 0;
  }

  .intro-text-pix {
    margin-top: 20px;
  }

  .rive {
    object-fit: contain;
    margin-left: 0;
  }

  .sub-heading {
    opacity: 100;
    mix-blend-mode: normal;
    border-style: none none none solid;
    border-left-width: 5px;
    border-radius: 0;
    font-size: 28px;
    line-height: 34px;
    position: relative;
  }

  .full-width-pix {
    object-fit: contain;
  }

  .side-by-side-section-pix {
    margin-top: 0;
    position: static;
    overflow: clip;
  }

  .video-rounded-corners {
    padding-top: 10px;
  }

  .divider-pix {
    height: 10px;
  }

  .topic-text {
    padding-top: 0;
    padding-bottom: 0;
  }

  .columns-6 {
    margin-top: 20px;
  }

  .image-rounded-corners-square {
    height: auto;
    padding-top: 0;
  }

  .column-5 {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.header._2 {
    min-height: 150px;
  }

  .section.grey {
    margin-top: 0;
    padding-top: 20px;
  }

  .section.projects {
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
    overflow: visible;
  }

  .section.white-section {
    margin-top: 0;
    padding-top: 0;
  }

  .project-link.project-9, .project-link.project-10 {
    width: 100%;
  }

  .main-heading {
    background-color: #000000bf;
    border-left-width: 5px;
    width: 350px;
    min-width: auto;
    font-size: 20px;
    line-height: 24px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 8px;
  }

  .footer-social-link {
    margin-left: 7px;
    margin-right: 7px;
  }

  .social-footer-wrap {
    text-align: center;
  }

  .slide, .slide._2, .slide._3 {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .skill-group {
    margin-top: 0;
    padding-top: 0;
  }

  .center-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .back-link {
    width: auto;
    min-width: 175px;
    margin-right: auto;
  }

  .previous-column {
    text-align: left;
    border-bottom: 1px solid #ededed;
    border-right-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .next-column {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container, .container-2, .container-3 {
    margin-top: 0;
  }

  .banner-anim-bg {
    min-height: 250px;
    overflow: visible;
  }

  .image-rounded-corners {
    object-fit: cover;
    object-position: 50% 50%;
    border: 10px solid #0000;
    border-radius: 15px;
    width: 100%;
    height: 250px;
    min-height: auto;
    padding-top: 0;
    overflow: auto;
  }

  .home-topic-text {
    color: #696969;
    height: auto;
    min-height: auto;
    font-size: 16px;
    line-height: 20px;
    overflow: visible;
  }

  .topic-heading {
    color: #696969;
    margin-top: 0;
    margin-left: 0;
    font-size: 24px;
  }

  .column-pix {
    height: 250px;
    min-height: auto;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .video-full-width-pix {
    object-fit: contain;
    border-radius: 0;
    min-width: auto;
    height: 250px;
    min-height: auto;
    margin: 0 auto;
    overflow: hidden;
  }

  .slider-3 {
    min-height: 250px;
  }

  .slide-7 {
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-8 {
    background-repeat: no-repeat;
    background-size: contain;
  }

  .slide-9 {
    background-repeat: no-repeat;
  }

  .slide-nav {
    background-color: #dc3c5080;
  }

  .intro-text-pix {
    min-height: auto;
    padding-left: 20px;
    overflow: visible;
  }

  .rive {
    object-fit: scale-down;
    justify-content: center;
    align-items: center;
    width: 250px;
    max-width: none;
    height: 250px;
    min-height: auto;
    max-height: none;
    display: block;
  }

  .sub-heading {
    border-left-width: 5px;
    width: 350px;
  }

  .columns-3 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .body-2 {
    padding-top: 0;
  }

  .full-width-pix {
    border-radius: 10px;
    height: 100%;
    min-height: auto;
    padding-top: 0;
    overflow: visible;
  }

  .side-by-side-section-pix {
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .video-rounded-corners {
    object-fit: cover;
    width: 350px;
    height: 350px;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .divider-pix {
    height: 5px;
    display: block;
    overflow: visible;
  }

  .cad-bg {
    min-height: 150px;
  }

  .cad-ignitec-bg {
    max-width: 100%;
    height: 250px;
  }

  .block-quote {
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
  }

  .topic-text {
    object-fit: contain;
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .container-pix {
    max-width: none;
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    overflow: hidden;
  }

  .topic-banner-pix {
    min-height: 200px;
    padding-right: 0;
  }

  .columns-6 {
    margin-top: 0;
  }

  .column-4 {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .full-image-bottom-view-pix {
    border-radius: 0;
    max-width: none;
    height: 200px;
    max-height: none;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .break-up-pix {
    border-radius: var(--imagecorner);
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .topic-heading-title-pix {
    padding-top: 70px;
    top: 40px;
    left: 25px;
  }

  .light-theme {
    padding-top: 0;
  }

  .full-image-mid-view-pix {
    border-radius: 0;
    max-width: none;
    height: 200px;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
  }

  .dark-theme, .section-14 {
    padding-top: 0;
  }

  .image-rounded-corners-square {
    border-radius: var(--imagecorner);
    object-fit: cover;
    width: 100%;
    height: 250px;
    min-height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 0;
    overflow: auto;
  }

  .code-embed-2 {
    overflow: clip;
  }
}


