@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Bold.otf') format("opentype"), url('../fonts/Poppins-ExtraBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBoldItalic.otf') format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ExtraBoldItalic.otf') format("opentype"), url('../fonts/Poppins-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ExtraLightItalic.otf') format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ExtraLight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Thin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ThinItalic.otf') format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: auto;
}

:root {
  --royal-blue: #0a6bf8;
  --steel-blue: #1986d6;
  --orange-red: #f04a25;
  --dark-slate-blue: #0343a5;
  --gainsboro: #e2e2e2;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Uni sans__;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 26px;
  font-weight: 500;
  line-height: 33px;
}

h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}

h5, h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 22px;
}

a {
  color: #2196f3;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #3333338f;
  text-align: center;
  margin-top: 7px;
  font-size: 14px;
  line-height: 20px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.body {
  color: #620707;
  background-color: #fff;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: visible;
}

.amigologowhitetext {
  flex: none;
  align-self: center;
  margin-left: 7vw;
  padding-top: auto;
  padding-bottom: auto;
  display: block;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: visible;
}

.image-13 {
  margin-left: auto;
}

.hero-section {
  z-index: 0;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 110vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.services-section {
  background-color: #fff;
  border-top: 1px solid #fff;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  padding-top: 30vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.contact-section {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 5vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-section {
  background-color: var(--royal-blue);
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: auto;
  padding: 5vh 10vw;
  display: flex;
  overflow: hidden;
}

.footer-section.mobile {
  z-index: 5;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-section.mobile.cellphone {
  display: none;
}

.navbar {
  background-color: var(--royal-blue);
  border-radius: 0;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-left: 4vw;
  padding-right: 2vw;
  display: flex;
  position: fixed;
  top: 0;
  overflow: hidden;
}

.navbar._404 {
  position: relative;
}

.blogbutton {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.imagine-text {
  color: #fff;
  text-align: center;
  letter-spacing: normal;
  margin-bottom: 5vh;
  font-family: Poppins, sans-serif;
  font-size: 4em;
  font-weight: 700;
  line-height: 110%;
  position: relative;
}

.hero-divblock {
  flex-direction: column;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: 10vw;
  display: flex;
  position: absolute;
}

.bodytext {
  color: #000;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 200%;
}

.bodytext.services-text {
  color: #000;
  transform-style: preserve-3d;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 300;
  transform: translate3d(0, 0, -1px);
}

.bodytext.footer-text {
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 200;
  line-height: 2.25em;
}

.bodytext.footer-text:hover {
  text-decoration: underline;
}

.bodytext.footer-text.cradle {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding-right: 0;
  font-weight: 200;
  display: flex;
}

.bodytext.footer-text.cradle:hover {
  text-decoration: none;
}

.bodytext.contact-addresstext {
  color: #000;
  text-align: left;
  height: 30%;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  line-height: 120%;
}

.bodytext.welcome {
  margin-bottom: 0;
}

.bodytext.welcome._404 {
  color: #2e84c6;
  margin-bottom: 16px;
}

.hero-social {
  background-color: #2f313400;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  margin-bottom: 0;
  padding: 0 3vw;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
}

.socmedicon {
  z-index: 1;
  align-items: center;
  display: flex;
  position: relative;
  top: 0;
}

.hero-socmedicon {
  height: 20px;
  padding-left: 1vw;
}

.hero-socmedicon.email {
  height: 16px;
}

.about-section1 {
  z-index: 2;
  clear: right;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-bottom: 5px solid #fff;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-bottom: 20vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.heading {
  color: #fff;
  padding: 10vh 10vw 3vh;
}

.heading.services-heading {
  color: #000;
  letter-spacing: 0;
  margin-top: 5vh;
  margin-bottom: 5vh;
  padding: 0 0;
  font-family: Poppins, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1em;
}

.services-card {
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 35vw;
  height: auto;
  margin-right: 21px;
  transition: all .5s;
  display: flex;
}

.image-75 {
  z-index: 10;
  object-fit: contain;
  width: 35vw;
  max-width: 300px;
  position: relative;
}

.work-divgrid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 33.33vw 33.33vw;
  grid-template-columns: 33.33vw 33.33vw 33.33vw;
  grid-auto-columns: 1fr;
  display: grid;
}

.work-divitem {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-image {
  width: auto;
  max-width: none;
  height: 100%;
}

.sectionheading-2 {
  color: var(--steel-blue);
  text-align: center;
  letter-spacing: 0;
  border-bottom: 3px #e9e9e9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 3vh;
  font-family: Poppins, sans-serif;
  font-size: 1.75em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  display: flex;
}

.work-slider-2 {
  background-color: #0000;
  width: 100vw;
  height: 66.67vw;
}

.work-section-2 {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: auto;
  display: flex;
  overflow: visible;
}

.div-sectionheading {
  z-index: 20;
  border: 1px #000;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.div-sectionheading.brandswork {
  margin-top: 20vh;
}

.slide-nav-3 {
  height: 32px;
  margin-top: 5vh;
  font-size: .8em;
  line-height: .8em;
  position: absolute;
  inset: -72px 0% auto;
}

.dash {
  z-index: -1000;
  border: 1px solid #0000;
  width: 40px;
  margin-bottom: 5vh;
  position: relative;
}

.projects-section-2 {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  padding-bottom: 5vh;
  display: flex;
  overflow: hidden;
}

.projects-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / 1fr 1fr 1fr 1fr 1fr;
  place-content: center;
  width: 70%;
}

.projects-image {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 11vw;
  transition: all .5s;
  display: flex;
}

.projects-image:hover {
  transform: scale(1.2);
}

.footer-divmain {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer-divmain.brands {
  object-fit: fill;
  align-items: center;
  margin-top: 5vh;
}

.footer-divtext {
  flex-direction: column;
  width: auto;
  height: 100%;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  line-height: 1em;
  display: flex;
}

.footer-socmedlink {
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
  display: flex;
}

.footer-socmedicon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 1vh;
  padding: 8px;
  display: flex;
}

.contact-divaddress {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  height: auto;
  display: flex;
  position: relative;
}

.contact-divtext1 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: auto;
  margin-bottom: 15%;
  margin-left: 22px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block-137 {
  object-fit: fill;
  height: 30px;
  overflow: visible;
}

.image-76 {
  object-fit: fill;
  max-width: none;
  height: 100%;
  position: relative;
}

.blog-button {
  background-color: var(--orange-red);
  border: 1px #fff;
  border-radius: 19px;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  transition: all .1s ease-in-out;
  display: flex;
}

.blog-button:hover {
  color: #fff;
  background-color: #fff3;
  border-color: #fff;
  transform: scale(.9);
}

.blog-button:active {
  background-color: #ffffff4d;
  border-width: 1px;
  font-weight: 400;
}

.blog-button.mobile {
  display: none;
}

.div-block-138 {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.button-2 {
  letter-spacing: 0;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-left: 1vw;
  margin-right: 1vw;
  padding-left: 24px;
  padding-right: 24px;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  line-height: 1em;
  transition: all .1s ease-in-out;
  display: flex;
}

.button-2:hover {
  color: #fff;
  background-color: #0a6bf899;
  transform: scale(1.2);
}

.button-2:active {
  color: #fff;
  background-color: #0a6bf866;
}

.button-2.button-2-contact {
  background-color: var(--orange-red);
  letter-spacing: 0;
  border: 1px #fff;
}

.button-2.button-2-contact:hover {
  background-color: #fff3;
}

.button-2.button-2-contact:active {
  background-color: #ffffff40;
}

.location-link {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: .9em;
  line-height: 1em;
}

.text-block-22 {
  color: #fff;
}

.div-block-140 {
  position: relative;
}

.services-divimage {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 50%;
  display: flex;
}

.service-divtext {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-143 {
  z-index: 1;
  opacity: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-143:hover {
  opacity: 1;
  background-color: #212121b8;
}

.text-block-23 {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  font-family: Poppins, sans-serif;
  font-size: .8em;
  font-weight: 700;
}

.div-block-144 {
  background-color: var(--royal-blue);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 12px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.text-block-24 {
  color: #fff;
  text-align: left;
  margin-top: 8px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: Poppins, sans-serif;
  font-size: .8em;
  font-weight: 400;
  line-height: 161.8%;
}

.bold-text {
  font-family: Poppins, sans-serif;
}

.contact-form {
  flex: 1;
  width: 100%;
  min-height: 50px;
  margin-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.brand-image {
  order: -1;
  align-self: flex-start;
  height: 100%;
  display: block;
}

.brand {
  height: 40%;
  transition: all .2s ease-in-out;
}

.brand:hover {
  transform: scale(1.05);
}

.brand:active {
  transform: scale(1.1);
}

.brand.w--current {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 40%;
  max-height: none;
  font-family: Poppins, sans-serif;
  display: flex;
  position: relative;
}

.div-block-148 {
  z-index: 2;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 42vw;
  height: auto;
  margin-top: 0;
  padding: 10vh 5%;
  display: flex;
  position: absolute;
  top: -5vh;
  bottom: auto;
  box-shadow: 1px 1px 3px #0003;
}

.main-heading {
  color: #2e84c6;
  text-align: center;
  margin-bottom: 3vh;
  font-family: Poppins, sans-serif;
  font-size: 1.75em;
  font-weight: 600;
  line-height: 120%;
}

.main-heading.left {
  text-align: center;
}

.main-heading.services {
  text-transform: capitalize;
  text-decoration: underline;
}

.main-heading._404 {
  margin-bottom: 0;
  font-weight: 700;
}

.grid-37 {
  object-fit: fill;
  grid-template-rows: auto;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  width: 100vw;
  height: 100%;
  position: absolute;
}

.image-81 {
  max-width: 40%;
}

.image-82 {
  max-width: 40%;
  position: relative;
}

.asset-block.left {
  padding-top: 4vh;
}

.asset-block.right {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.asset-block.advertising {
  position: relative;
  top: -18vw;
}

.grid-38 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 54.63vw 23vw auto auto;
  width: 100%;
  height: auto;
}

.service-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-item.digitalmarketing {
  align-items: flex-end;
}

.service-item.advertising {
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  top: -7.66vw;
}

.service-item.designmedia {
  align-items: flex-end;
}

.service-item.branding {
  align-items: flex-start;
  position: relative;
  top: -5.42vw;
}

.image-83 {
  max-width: 44vw;
  position: relative;
}

.div-block-150 {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.image-85 {
  max-width: 35vw;
}

.div-block-151 {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.image-86 {
  max-width: 35vw;
  position: relative;
}

.image-87 {
  max-width: 32vw;
}

.div-block-152 {
  position: relative;
  top: -5.68vw;
}

.subheading {
  color: #000;
  text-align: center;
  margin-bottom: 3vh;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5em;
}

.grid-39 {
  z-index: 1;
  grid-template-rows: auto;
  width: 100%;
  display: none;
  position: absolute;
}

.image-88 {
  max-width: 23.73vw;
  position: absolute;
  right: 0;
}

.div-block-153 {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}

.image-89 {
  max-width: 21.54vw;
}

.div-block-154 {
  z-index: 1;
  background-color: #fff;
  border: 1px #00000026;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 41.64vw;
  margin-top: 5vh;
  margin-bottom: 5vh;
  padding: 5vh 3vw;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 3px #0000004d;
}

.div-block-155 {
  z-index: 0;
  margin-top: 7.44vw;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.text-block-26 {
  color: #fff;
  margin-bottom: 5vh;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 500;
}

.map-section {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 5vh;
  display: flex;
}

.link-common-span {
  color: #fff;
  letter-spacing: 0;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 200;
}

.link-common {
  color: #fff;
  letter-spacing: 0;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 2.25em;
}

.image-90 {
  flex: none;
  margin-bottom: 3vh;
}

.bold-text-3, .bold-text-4 {
  font-weight: 500;
}

.image-93, .image-94, .image-95, .image-96, .image-97, .image-98, .image-99, .image-100 {
  display: none;
}

.image-101 {
  width: 101%;
  max-width: none;
  position: relative;
  left: -2px;
}

.grid-40 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image-103 {
  width: 40px;
  max-width: none;
  display: block;
  position: relative;
}

.down-arrow {
  z-index: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 40px;
  display: flex;
  position: relative;
  inset: auto auto 0;
}

.link-cta {
  margin-top: 24px;
}

.brand-hero {
  background-color: #e0e0e0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: flex;
  position: relative;
  overflow: visible;
}

.logo-div {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.logo-div.mobile, .logo-div.tablet {
  display: none;
}

.banner-logo {
  width: 100%;
  min-width: auto;
  max-width: none;
  height: auto;
  min-height: auto;
  max-height: none;
}

.content {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  padding-bottom: 5vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-41 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 40vw 50vw;
  grid-auto-columns: 1fr;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
}

.worksbody-text {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0 0 96px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.list {
  color: var(--steel-blue);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 54px;
  margin-bottom: 56px;
  font-size: .9em;
  display: flex;
}

.scope-listitem {
  text-transform: uppercase;
  margin-left: 8px;
  margin-right: 8px;
  font-family: Poppins, sans-serif;
  font-size: .9em;
  font-weight: 500;
}

.grid-42 {
  z-index: 0;
  grid-column-gap: 0px;
  grid-row-gap: 20.43vw;
  width: 100%;
  margin-top: 27.07vw;
  position: absolute;
  inset: 0% 0% auto;
}

.image-105 {
  width: 12.1vw;
}

.image-106 {
  z-index: 5;
  width: 13vw;
  position: relative;
  top: 6.16vw;
}

.image-107 {
  width: 23.79vw;
}

.div-block-163, .div-block-164 {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.div-block-165 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.addtlpic-grid1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 300px 300px;
  grid-template-columns: 300px 616px;
  grid-auto-columns: 1fr;
  width: auto;
  height: auto;
  margin-top: 16px;
  display: grid;
  position: relative;
}

.addtlpic-grid1.right {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: 20vw 20vw;
  grid-template-columns: 20vw 42vw;
  margin-top: 2vw;
}

.addtlpic-grid1.left {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: 20vw 20vw;
  grid-template-columns: 42vw 20vw;
  margin-top: 2vw;
}

.grid-43 {
  grid-template-rows: auto;
  margin-top: 5vh;
}

.div-block-167 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navigation {
  font-family: Poppins, sans-serif;
}

.section-3 {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  min-height: auto;
  margin-top: 80px;
  padding-top: 15vh;
  padding-bottom: 15vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.div-block-168 {
  z-index: 10;
  flex-direction: column;
  align-items: center;
  width: 40vw;
  display: flex;
  position: relative;
}

.career-form {
  width: 50%;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 300;
}

.grid-44 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  place-content: start center;
  align-self: flex-start;
  width: 100vw;
  max-width: 100vw;
  margin-top: 15vh;
  position: absolute;
  inset: 0% 0% auto;
}

.image-108 {
  width: 19.73vw;
  position: relative;
}

.image-109 {
  width: 17.7vw;
  margin-top: 0;
  position: relative;
}

.div-block-170 {
  flex-direction: column;
  align-items: flex-end;
  width: 50vw;
  display: flex;
}

.div-block-171 {
  width: 50vw;
  position: relative;
}

.div-block-172 {
  background-color: #bfbfbf00;
  border-radius: 50px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
}

.banner-bgcolor {
  z-index: -1;
  background-color: #fcb415;
  position: absolute;
  inset: 0%;
}

.paragraph {
  color: #000;
  text-align: center;
  width: 800px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 160%;
  position: relative;
}

.worksphoto-div {
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: visible;
}

.worksphoto-div.egi {
  border: 1px #9b9b9b;
  align-items: flex-end;
  width: auto;
  max-width: 100%;
  position: relative;
  box-shadow: 1px 1px 3px 1px #0000001a;
}

.worksphoto-div.technokids {
  box-shadow: 1px 1px 3px #00000026;
}

.worksphoto-div.innovation {
  overflow: hidden;
}

._1 {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
}

.addtlpics {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 64vw;
  margin-bottom: 0;
  display: flex;
  position: relative;
  bottom: 2vw;
}

.addtlpics.egi {
  padding: 0 0 0 0;
}

.addtlpics.innovation {
  flex-direction: column-reverse;
}

.addtlpic-2x1 {
  grid-column-gap: 2vw;
  grid-template-rows: 31vw;
  grid-template-columns: 31vw 31vw;
  justify-items: center;
  width: 100%;
  margin-top: 2vw;
  position: relative;
  overflow: visible;
}

._2, ._3, ._4 {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
}

._5 {
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

._5.egi {
  width: auto;
  min-width: auto;
  max-width: 31vw;
  height: auto;
  min-height: auto;
  overflow: visible;
}

._6 {
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}

._7, ._8 {
  min-width: 100%;
  min-height: 100%;
}

._9 {
  width: auto;
  min-width: 100%;
  min-height: 100%;
  display: block;
}

._10 {
  min-width: 100%;
  min-height: 100%;
  display: block;
}

.link-block {
  align-items: center;
  display: flex;
}

.div-block-174 {
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  display: flex;
}

.left-arrow {
  opacity: 1;
  background-color: #0003;
  width: 60px;
  height: 60px;
  transition: all .3s ease-in-out;
}

.right-arrow {
  opacity: 1;
  color: #fff;
  background-color: #0003;
  width: 60px;
  height: 60px;
  transition: all .3s ease-in-out;
}

.icon, .icon-2 {
  color: #fff;
  font-size: 26px;
}

.video {
  width: 100%;
  height: 100%;
}

.div-block-176 {
  width: 100%;
  margin-bottom: 0;
  padding-top: 24px;
}

.services-grid {
  z-index: 1;
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: 20vw;
  grid-template-columns: 20vw 20vw 20vw;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.services-block {
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 20vw;
  display: flex;
}

.services-img {
  object-fit: cover;
  width: 100%;
  max-width: none;
  min-height: 100%;
}

.services-heading-div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3vh;
  display: flex;
}

.works-hero {
  background-color: var(--royal-blue);
  width: 100vw;
  height: auto;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.workslink-maindiv {
  z-index: 2;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 54px;
  padding-bottom: 54px;
  display: flex;
  position: relative;
  box-shadow: 0 -4px 3px #00000008;
}

.works-link {
  background-color: var(--steel-blue);
  border-radius: 20px;
  margin: 8px;
  padding: 8px 16px;
  transition: all .1s ease-in-out;
}

.works-link:hover {
  background-color: #1570b3;
  transform: scale(1.05);
}

.works-link.logo {
  border-radius: 20px;
  margin: 8px;
  padding: 8px 16px;
  position: relative;
}

.workslink-text {
  color: #fff;
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  font-size: .8em;
  font-weight: 500;
  position: relative;
}

.partner-image {
  align-self: center;
  width: 100%;
}

.partner-image.ccci {
  max-width: 70%;
}

.partner-image.ateneo {
  max-width: 60%;
}

.partner-image.ramen-dojo {
  max-width: 100%;
}

.partner-image.amigo {
  max-width: 80%;
}

.partner-image.cuna {
  max-width: 90%;
}

.section._404 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  display: flex;
}

.div-block-177 {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

._404-image {
  width: auto;
  max-width: none;
  height: 160px;
}

.button {
  background-color: var(--orange-red);
  color: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 300;
  transition: all .1s ease-in-out;
}

.button:hover {
  transform: scale(.9);
}

.join-the-pack-image {
  max-width: none;
  height: 160px;
  margin-bottom: 16px;
  position: relative;
  left: 16px;
}

.poweredby-div {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: auto;
  height: auto;
  margin-left: 0;
  display: flex;
  position: relative;
  bottom: 0%;
  left: auto;
  right: 0%;
  transform: rotate(0);
}

.link-block-3 {
  width: 100%;
  height: 100%;
}

.image-111 {
  padding-top: 48px;
}

.nav-menu-2 {
  height: 100%;
  margin-left: 60px;
  display: flex;
}

.nav-link-2 {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  font-family: Poppins, sans-serif;
  transition: all .1s ease-in-out;
  display: flex;
}

.nav-link-2:hover {
  perspective: none;
  background-color: #fff0;
  background-image: linear-gradient(#ffffff0d, #fff0);
  border-bottom: 1px solid #fff;
}

.nav-link-2:active {
  background-color: #fff0;
  background-image: linear-gradient(#ffffff1a, #fff0);
}

.nav-link-2.w--current {
  color: #fff;
}

.navbar-main {
  background-color: var(--royal-blue);
  justify-content: center;
  width: 100vw;
  height: 80px;
  padding-left: 0;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.container-3 {
  display: none;
}

.navbar-container {
  background-color: var(--royal-blue);
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
}

.div-block-180 {
  align-items: center;
  height: 100%;
  display: flex;
}

.menu-button-2 {
  color: #0000;
}

.nav-menu-3 {
  align-items: center;
  height: 100%;
  margin-left: 60px;
  display: flex;
}

.blog-button-2 {
  background-color: #f04a25;
  border: 1px #fff;
  border-radius: 19px;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  transition: all .1s ease-in-out;
  display: flex;
}

.blog-button-2:hover {
  background-color: var(--orange-red);
  color: #fff;
  border-color: #fff;
  transform: scale(.9);
}

.blog-button-2:active {
  background-color: #ffffff4d;
  border-width: 1px;
  font-weight: 400;
}

.blog-button-2.mobile {
  display: none;
}

.link-block-4 {
  height: 30px;
  display: flex;
}

.link-block-5 {
  height: 30px;
}

.navbar-8 {
  background-color: var(--steel-blue);
  justify-content: center;
  width: 100vw;
  height: 80px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: fixed;
}

.navbar-8.special {
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
}

.div-block-181 {
  background-color: var(--royal-blue);
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.white-line {
  border-bottom: 1px solid #fff;
  border-right: 1px #fff;
  flex: none;
  width: 30vh;
  height: 0;
  margin-right: 40px;
  padding-right: 0;
  position: relative;
}

.div-block-182 {
  z-index: 0;
  direction: ltr;
  white-space: nowrap;
  flex-flow: wrap;
  flex: none;
  place-content: center;
  align-self: center;
  align-items: center;
  width: 70vh;
  height: 32px;
  display: flex;
  position: absolute;
  inset: auto -32vh auto auto;
  transform: rotate(-90deg);
}

.text-block-27 {
  color: #fff;
  letter-spacing: 0;
  flex: none;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 300;
  display: flex;
}

.website-visual {
  z-index: -1;
  background-image: url('../images/website-visual.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  height: 100vh;
  position: fixed;
}

.text-block-28 {
  color: #fff;
}

.text-block-28.tablet, .text-block-28.landscape, .text-block-28.mobile, .div-block-183 {
  display: none;
}

.body-2 {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.grid-45 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-self: flex-end;
  width: 100%;
  position: absolute;
  inset: auto 0% 10vh;
}

.back-to-top {
  z-index: 1111;
  position: fixed;
  inset: auto auto 24px 24px;
}

.back-to-top-image-holder {
  z-index: 20;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: fixed;
  inset: 96px 5% auto auto;
}

.back-to-top-image-holder.w--current {
  right: 24px;
}

.image-115 {
  color: #d53434;
  white-space: normal;
  border: 1px #6f3030;
  display: none;
}

.paragraphascaption {
  color: #000;
  text-align: center;
  width: 800px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 160%;
  position: relative;
}

.brandlink {
  font-family: Poppins, sans-serif;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads-2"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

html.w-mod-js [data-ix="appear-fade"] {
  opacity: 0;
}

@media screen and (min-width: 1440px) {
  .hero-social {
    margin-bottom: 0;
    bottom: 0;
  }

  .works-hero {
    background-color: var(--royal-blue);
  }

  .grid-45 {
    bottom: 10vh;
  }
}

@media screen and (min-width: 1920px) {
  .hero-section {
    height: 110vh;
  }

  .services-section {
    border: 1px solid #fff;
  }

  .imagine-text {
    line-height: 130%;
  }

  .bodytext.footer-text:hover {
    text-decoration: none;
  }

  .bodytext.footer-text.join:hover, .bodytext.footer-text.call:hover {
    text-decoration: underline;
  }

  .hero-social {
    align-items: center;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    bottom: 0;
  }

  .socmedicon {
    top: 0;
  }

  .about-section1 {
    border: 1px #fff;
    justify-content: flex-start;
    height: auto;
  }

  .heading.services-heading {
    margin-bottom: 2vh;
  }

  .services-card {
    width: 500px;
  }

  .image-75 {
    width: 100%;
  }

  .footer-socmedlink:hover {
    text-decoration: underline;
  }

  .blog-button {
    border-radius: 50px;
  }

  .blog-button:hover {
    background-color: var(--orange-red);
  }

  .blog-button:active {
    background-color: #ffffff1a;
  }

  .button-2 {
    border-radius: 100px;
  }

  .brand {
    height: 50%;
  }

  .div-block-148 {
    width: 40vw;
    padding: 7vh;
    top: -5vh;
  }

  .main-heading.services {
    text-decoration: underline;
  }

  .grid-37 {
    grid-column-gap: 0px;
    height: auto;
  }

  .asset-block.left {
    padding-top: 2vh;
    position: relative;
  }

  .image-83 {
    max-width: 35.2vw;
    top: 128px;
  }

  .image-85, .image-86 {
    max-width: 28vw;
  }

  .div-block-155 {
    margin-top: 0;
  }

  .map-section {
    padding-top: 240px;
  }

  .link-common-span:hover {
    text-decoration: underline;
  }

  .down-arrow {
    bottom: 0;
  }

  .content {
    margin-top: 0;
    padding-top: 5vh;
    padding-bottom: 5vh;
    position: relative;
  }

  .worksbody-text {
    background-color: #fff;
    position: relative;
  }

  .addtlpic-grid1.right, .addtlpic-grid1.left {
    margin-top: 2vw;
  }

  .addtlpics {
    position: relative;
  }

  .services-grid {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-template-rows: 20vw 20vw;
    grid-template-columns: 20vw 20vw 20vw;
    grid-auto-columns: 1fr;
    width: 64vw;
    display: grid;
  }

  .services-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .services-img {
    width: 100%;
  }

  .services-heading-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .works-hero {
    background-color: var(--royal-blue);
  }

  .workslink-maindiv {
    background-color: #fff;
  }

  .section._404 {
    height: 100%;
    margin-top: 80px;
  }

  ._404-image {
    height: 160px;
  }

  .join-the-pack-image {
    height: 240px;
  }

  .nav-menu-2 {
    margin-left: 102px;
  }

  .nav-link-2 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-link-2:hover {
    border-bottom-width: 3px;
  }

  .navbar-main {
    height: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-button-2 {
    border-radius: 50px;
  }

  .link-block-4 {
    transition: all .1s ease-in-out;
  }

  .link-block-4:hover {
    transform: scale(1.05);
  }

  .link-block-5 {
    transition: all .1s ease-in-out;
  }

  .link-block-5:hover, .link-block-5:active {
    transform: scale(1.05);
  }

  .navbar-8.special {
    background-color: var(--royal-blue);
    height: 120px;
    position: relative;
  }

  .div-block-181 {
    background-color: var(--royal-blue);
  }

  .body-2 {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .body {
    background-image: url('../images/square.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
    overflow: scroll;
  }

  .amigologowhitetext {
    padding: 0 24px;
  }

  .hero-section {
    align-items: center;
    max-width: 100vw;
    height: 90vh;
    padding-bottom: 15vh;
    overflow: hidden;
  }

  .services-section {
    z-index: 0;
    border: 1px solid #fff;
    padding-top: 5vh;
    overflow: visible;
  }

  .contact-section {
    overflow: hidden;
  }

  .footer-section {
    display: flex;
  }

  .footer-section.mobile {
    padding: 40px 100px;
    display: none;
    overflow: hidden;
  }

  .footer-section.mobile.cellphone {
    display: flex;
  }

  .navbar {
    height: 80px;
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .blogbutton {
    display: none;
  }

  .imagine-text {
    text-shadow: none;
    margin-bottom: 16px;
    font-size: 3em;
    line-height: 120%;
  }

  .hero-divblock {
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    inset: auto auto 5vh 0%;
  }

  .bodytext.footer-text {
    flex-direction: column;
    display: flex;
  }

  .bodytext.footer-text.cradle {
    justify-content: space-between;
    margin-right: 0;
  }

  .hero-social {
    align-items: center;
    margin-bottom: 0;
    padding-left: 32px;
    padding-right: 32px;
    left: auto;
  }

  .hero-socmedicon {
    padding-right: 1vw;
  }

  .about-section1 {
    z-index: 1;
    background-color: #fff;
    border: 1px solid #fff;
    height: auto;
    padding-bottom: 5vh;
  }

  .heading.services-heading {
    margin-top: 5vh;
    margin-bottom: 5vh;
    position: relative;
  }

  .services-card {
    width: auto;
    position: relative;
  }

  .image-75 {
    width: 33.22vw;
  }

  .work-divgrid {
    grid-template-rows: 50vw 50vw;
    grid-template-columns: 50vw 50vw;
    justify-content: center;
  }

  .work-divitem {
    height: 50vw;
  }

  .work-image {
    display: inline-block;
    position: relative;
  }

  .sectionheading-2 {
    font-size: 1.75em;
  }

  .work-slider-2 {
    height: 150vw;
  }

  .work-section-2 {
    overflow: hidden;
  }

  .div-sectionheading.brandswork {
    margin-top: 15vw;
  }

  .slide-nav-3 {
    z-index: 100;
  }

  .projects-section-2 {
    overflow: hidden;
  }

  .projects-grid {
    grid-column-gap: 4.66vw;
    grid-row-gap: 4.66vw;
  }

  .projects-image {
    width: 11vw;
  }

  .footer-divmain.brands {
    color: #fff;
    flex-direction: column;
    margin-top: 3vh;
    font-family: Poppins, sans-serif;
  }

  .footer-divtext {
    height: auto;
  }

  .footer-socmedicon {
    padding: 8px;
  }

  .contact-divaddress {
    width: 72.45%;
  }

  .contact-divtext1 {
    margin-bottom: 0%;
    margin-left: 0;
  }

  .div-block-137, .blog-button {
    display: none;
  }

  .blog-button.mobile {
    border-radius: 25px;
    justify-content: center;
    height: 50px;
    margin-top: 12px;
    margin-left: 32px;
    margin-right: 32px;
    display: flex;
  }

  .blog-button.mobile:hover {
    background-color: var(--orange-red);
  }

  .div-block-138 {
    flex-direction: column-reverse;
    justify-content: space-around;
    align-items: flex-end;
    width: auto;
    height: 120px;
  }

  .button-2 {
    border-radius: 25px;
    width: 250px;
    height: 50px;
    font-size: 1em;
  }

  .service-divtext {
    position: relative;
  }

  .brand-image {
    object-fit: fill;
    width: auto;
    max-width: none;
    height: 100%;
    overflow: visible;
  }

  .brand {
    height: 40%;
  }

  .brand.w--current {
    object-fit: fill;
    justify-content: center;
    width: auto;
    max-width: 200px;
    max-height: 40px;
  }

  .div-block-148 {
    z-index: 1;
    width: 85vw;
    height: auto;
    margin-top: 0;
    padding-top: 5vh;
    padding-bottom: 5vh;
    position: relative;
    top: -5vh;
    bottom: auto;
    overflow: visible;
  }

  .main-heading {
    font-size: 1.75em;
  }

  .grid-37 {
    z-index: 0;
    display: none;
  }

  .image-81 {
    display: none;
  }

  .image-82 {
    display: block;
  }

  .asset-block.left {
    padding-top: 0;
  }

  .asset-block.advertising {
    z-index: -1;
    top: 10.28vw;
  }

  .grid-38 {
    z-index: -1;
    grid-template-rows: 50.73vw 77.44vw auto auto;
    position: relative;
  }

  .service-item.digitalmarketing {
    z-index: -20;
    justify-content: flex-start;
    padding-left: 5vw;
    position: relative;
  }

  .service-item.advertising {
    padding-right: 5vw;
    top: 10.28vw;
  }

  .service-item.designmedia {
    justify-content: flex-start;
    padding-top: 8.73vw;
    padding-left: 5vw;
  }

  .service-item.branding {
    padding-right: 5vw;
    top: 0;
  }

  .image-83 {
    display: none;
  }

  .div-block-150 {
    z-index: -1;
    width: 40vw;
    position: relative;
  }

  .div-block-150.tablet {
    align-items: flex-end;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .image-85, .image-86, .image-87 {
    display: none;
  }

  .div-block-152 {
    top: -3.24vw;
  }

  .image-88, .image-89 {
    display: none;
  }

  .div-block-154 {
    width: 86.6vw;
    height: auto;
  }

  .div-block-155 {
    width: 100vw;
  }

  .text-block-26 {
    text-align: center;
  }

  .map-section {
    overflow: hidden;
  }

  .link-common-span {
    font-weight: 200;
  }

  .link-common-span.cradleph {
    margin-left: 0;
  }

  .image-91 {
    width: 32px;
  }

  .image-93 {
    z-index: -1;
    max-width: 32.95vw;
    display: none;
    position: absolute;
    top: -59.55vw;
  }

  .image-93.tablet {
    display: block;
    inset: 22% 0% 0% auto;
  }

  .image-94 {
    width: 41.04vw;
    display: block;
  }

  .image-95 {
    width: 44.61vw;
    max-width: none;
    display: block;
  }

  .image-96 {
    width: 43.58vw;
    max-width: none;
    display: block;
  }

  .image-97 {
    z-index: 20;
    width: 34.04vw;
    max-width: none;
    position: absolute;
    inset: 17.76% 0% 0% auto;
  }

  .image-98 {
    width: 22.72vw;
    display: block;
  }

  .image-99 {
    width: 16.66vw;
    max-width: none;
    display: block;
  }

  .image-100 {
    width: 100vw;
    display: block;
  }

  .image-101 {
    display: none;
  }

  .grid-40 {
    grid-column-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 40% 60%;
    width: 100%;
    margin-bottom: 8vh;
  }

  .div-block-157 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-158 {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .image-102 {
    width: 14.42vw;
    max-width: none;
  }

  .image-103 {
    display: block;
  }

  .down-arrow {
    z-index: 20;
    justify-content: center;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 24px 48px;
    display: flex;
    position: relative;
    inset: auto auto 0;
  }

  .logo-div.desktop {
    display: none;
  }

  .logo-div.tablet {
    display: flex;
  }

  .content {
    align-items: center;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-41, .worksbody-text {
    position: relative;
  }

  .addtlpic-grid1.right {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-template-rows: 20vw 20vw;
    grid-template-columns: 20vw 42vw;
    width: auto;
  }

  .addtlpic-grid1.left {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-template-rows: 20vw 20vw;
    grid-template-columns: 42vw 20vw;
  }

  .grid-43 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    position: relative;
    left: 8px;
  }

  .paragraph {
    text-align: center;
    width: 72vw;
  }

  .addtlpics {
    justify-content: center;
    align-items: center;
    width: 64vw;
  }

  .addtlpic-2x1 {
    grid-template-rows: 31vw;
    grid-template-columns: 31vw 31vw;
    max-width: 100%;
  }

  .link-block {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .services-grid {
    grid-template-rows: 20vw;
  }

  .works-hero {
    flex-direction: column;
    height: auto;
    display: flex;
  }

  .workslink-maindiv {
    flex-wrap: wrap;
    padding-left: 25vw;
    padding-right: 25vw;
  }

  .works-link.logo {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .div-block-177 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .link-block-3 {
    align-self: center;
  }

  .nav-menu-2 {
    background-color: #fff;
    padding-top: 48px;
    box-shadow: -1px 1px 20px 17px #0000001a;
  }

  .nav-link-2 {
    color: var(--dark-slate-blue);
    border-radius: 0;
    width: 100%;
    height: auto;
  }

  .nav-link-2:hover {
    border-bottom-style: none;
  }

  .nav-link-2:active {
    background-color: #1986d60d;
    background-image: none;
    border-bottom-style: none;
    border-radius: 0;
    width: 100%;
    font-size: 18px;
  }

  .nav-link-2:focus {
    background-color: #0a6bf80d;
    border-radius: 0;
    width: 100%;
  }

  .nav-link-2.w--current {
    color: var(--royal-blue);
  }

  .navbar-main {
    padding-left: 0;
  }

  .container-3 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-container {
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 24px;
  }

  .menu-button-2 {
    color: #0000;
    background-color: #0000;
  }

  .menu-button-2.w--open {
    background-color: #0000;
  }

  .nav-menu-3 {
    background-color: #f04a25;
    padding-top: 48px;
  }

  .blog-button-2 {
    display: none;
  }

  .blog-button-2.mobile {
    display: flex;
  }

  .div-block-181 {
    padding-left: 40px;
  }

  .website-visual {
    background-image: url('../images/square.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }

  .text-block-28.desktop {
    display: none;
  }

  .text-block-28.tablet {
    display: inline;
  }

  .div-block-183 {
    display: none;
  }

  .grid-45 {
    bottom: 80px;
  }

  .paragraphascaption {
    text-align: center;
    width: 72vw;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    background-image: none;
    height: auto;
    padding-top: 30vh;
    padding-bottom: 30vh;
  }

  .services-section {
    padding-bottom: 5vh;
  }

  .footer-section.mobile {
    padding-left: 80px;
    padding-right: 80px;
  }

  .footer-section.mobile.cellphone {
    align-items: center;
  }

  .imagine-text {
    margin-bottom: 40px;
    font-size: 2.75em;
  }

  .hero-divblock {
    flex-direction: column;
    align-self: center;
    width: auto;
    margin-left: auto;
    padding-left: 4vw;
    padding-right: 4vw;
    inset: 0% auto;
  }

  .bodytext.footer-text.cradle {
    margin-right: 0;
    position: relative;
  }

  .hero-social {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .about-section1 {
    padding-bottom: 5vh;
  }

  .heading.services-heading {
    text-align: center;
    margin-top: 3vh;
    margin-bottom: 2vh;
  }

  .services-card {
    width: auto;
  }

  .projects-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ".";
  }

  .projects-image {
    width: 20vw;
  }

  .div-block-138 {
    align-items: flex-end;
  }

  .div-block-140 {
    align-items: center;
    display: flex;
  }

  .div-block-148 {
    padding-left: 8%;
    padding-right: 8%;
  }

  .asset-block.advertising {
    align-items: flex-end;
    display: flex;
    top: 6.4vw;
  }

  .grid-38 {
    grid-template-rows: 75vw 95vw 90vw auto;
  }

  .service-item.digitalmarketing {
    right: -2vw;
  }

  .service-item.advertising {
    left: -2vw;
  }

  .service-item.designmedia {
    position: relative;
    right: -2vw;
  }

  .service-item.branding {
    left: -2vw;
  }

  .subheading {
    line-height: 200%;
  }

  .div-block-154 {
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .div-block-155 {
    margin-top: 12.44vw;
  }

  .text-block-26 {
    line-height: 200%;
  }

  .link-common-span {
    font-weight: 200;
  }

  .image-93 {
    max-width: 38vw;
    top: -47.55vw;
  }

  .image-100 {
    width: auto;
    max-width: 200vw;
    height: 72vh;
  }

  .down-arrow {
    margin-bottom: 0;
  }

  .div-block-168 {
    width: 60vw;
  }

  .career-form {
    width: 70%;
  }

  .addtlpic-2x1 {
    justify-content: center;
  }

  .services-grid {
    grid-template-rows: auto;
    grid-template-columns: auto auto auto;
  }

  .services-block {
    width: 30vw;
    height: 30vw;
  }

  .workslink-maindiv {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 7vw;
    padding-right: 7vw;
    display: flex;
  }

  .nav-link-2:active {
    background-color: #0a6bf81a;
    width: 100%;
  }

  .navbar-8.special {
    height: 72px;
  }

  .div-block-181 {
    padding-left: 24px;
  }

  .div-block-182 {
    flex: 1;
    right: -30vh;
  }

  .website-visual {
    inset: 0%;
  }

  .text-block-28.tablet {
    display: none;
  }

  .text-block-28.landscape {
    display: inline;
  }

  .div-block-183 {
    display: none;
  }

  .grid-45 {
    align-content: center;
    align-self: center;
    align-items: center;
    bottom: 80px;
  }

  .back-to-top-image-holder.w--current {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    object-fit: fill;
    background-color: #fff;
    background-image: url('../images/square.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 0;
    overflow: visible;
  }

  .amigologowhitetext {
    margin-bottom: 12px;
    margin-left: -19px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-section {
    justify-content: flex-end;
    align-self: center;
    align-items: center;
    height: 100vh;
    padding-bottom: 0;
    overflow: hidden;
  }

  .contact-section {
    padding-bottom: 5vh;
  }

  .footer-section.mobile {
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
    display: none;
  }

  .footer-section.mobile.cellphone {
    background-color: var(--royal-blue);
    margin-top: 0;
    padding-bottom: 0;
    display: flex;
    position: relative;
  }

  .imagine-text {
    margin-bottom: 5vh;
    font-size: 2.5em;
  }

  .hero-divblock {
    flex-direction: column;
    align-self: center;
    width: 100%;
    margin-top: 64px;
    margin-bottom: 40px;
    margin-left: 0;
    position: absolute;
    inset: 0%;
  }

  .bodytext.footer-text {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 200;
    line-height: 200%;
    display: flex;
  }

  .bodytext.footer-text.cradle {
    flex-direction: column;
    width: 100%;
    font-size: 1em;
    font-weight: 200;
  }

  .bodytext.contact-addresstext {
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    line-height: 161%;
    display: flex;
  }

  .bodytext.welcome {
    font-size: .9em;
  }

  .hero-social {
    z-index: 0;
    align-self: flex-start;
    margin-bottom: 0;
    position: relative;
    inset: 0% auto 0% 0%;
  }

  .socmedicon {
    flex: 1;
  }

  .hero-socmedicon {
    width: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-socmedicon.email {
    padding-right: 0;
  }

  .about-section1 {
    height: auto;
  }

  .projects-image {
    width: 25vw;
  }

  .footer-divmain.brands {
    justify-content: flex-start;
  }

  .footer-divmain.brands.poweredby {
    margin-top: 0;
  }

  .footer-divtext {
    align-items: center;
    width: 100%;
    margin-bottom: 5vh;
    position: relative;
  }

  .footer-divtext.poweredby {
    margin-bottom: 0;
  }

  .footer-socmedlink {
    width: auto;
  }

  .footer-socmedicon {
    margin-right: 8px;
  }

  .contact-divaddress {
    align-items: center;
    width: 90%;
  }

  .contact-divtext1 {
    position: relative;
  }

  .div-block-138 {
    justify-content: space-between;
  }

  .hero-socmediconblock {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-right: 16px;
    display: flex;
  }

  .location-link {
    line-height: 161.8%;
  }

  .brand-image {
    width: auto;
    max-width: 100%;
  }

  .brand {
    width: 60%;
    height: 60%;
    padding-left: 0;
  }

  .brand.w--current {
    justify-content: flex-start;
    width: 200px;
    padding-left: 0;
  }

  .div-block-148 {
    height: auto;
    padding-top: 5vh;
    position: relative;
  }

  .main-heading, .main-heading.left {
    font-size: 1.5em;
  }

  .div-block-154 {
    margin-bottom: 0;
  }

  .map-section {
    padding-top: 48px;
  }

  .link-common-span {
    font-weight: 200;
  }

  .link-common {
    width: auto;
    font-weight: 400;
    line-height: 2em;
  }

  .bold-text-4 {
    line-height: 1.5em;
  }

  .grid-40 {
    flex-direction: column;
    grid-template-columns: auto 60%;
    display: flex;
  }

  .div-block-157 {
    flex-direction: column;
    grid-template-columns: auto;
    display: flex;
  }

  .div-block-158 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .image-102 {
    width: 100%;
  }

  .down-arrow {
    margin-bottom: 0;
    bottom: 0;
  }

  .down-arrow.w--current {
    margin-bottom: 10vh;
  }

  .div-block-159 {
    align-items: flex-start;
    width: 100px;
    margin-bottom: 5vh;
    display: flex;
    position: relative;
  }

  .div-block-159.w--current {
    margin-bottom: 5vh;
  }

  .brand-hero {
    height: auto;
  }

  .logo-div {
    object-fit: contain;
    overflow: hidden;
  }

  .logo-div.mobile {
    display: flex;
  }

  .logo-div.desktop, .logo-div.tablet {
    display: none;
  }

  .banner-logo {
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
  }

  .content {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .worksbody-text {
    padding: 32px 10vw 48px;
  }

  .addtlpic-grid1.right {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-template-rows: 30vw 30vw;
    grid-template-columns: 30vw 62vw;
  }

  .addtlpic-grid1.left {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-template-rows: 30vw 30vw;
    grid-template-columns: 62vw 30vw;
    margin-top: 2vw;
  }

  .grid-43 {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .section-3 {
    padding-top: 5vh;
  }

  .div-block-168 {
    width: 80vw;
  }

  .career-form {
    width: 80%;
  }

  .grid-44 {
    margin-top: 0;
  }

  .paragraph {
    text-align: center;
    width: auto;
    font-size: .8em;
  }

  .addtlpics {
    width: 100%;
  }

  .addtlpic-2x1 {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-template-rows: 46vw;
    grid-template-columns: 46vw 46vw;
    width: 94vw;
    margin-top: 2vw;
  }

  .workslink-maindiv {
    padding: 16px 0;
  }

  .workslink-text {
    font-size: .7em;
  }

  .poweredby-div {
    height: 100%;
    bottom: 0%;
  }

  .nav-menu-2 {
    box-shadow: -1px 0 20px 17px #0000001a;
  }

  .nav-link-2:active {
    background-color: #1986d60d;
    border-radius: 0;
    width: 100%;
  }

  .nav-link-2:focus {
    background-color: #1986d61a;
    border-radius: 0;
    width: 100%;
  }

  .navbar-main {
    background-color: var(--royal-blue);
    padding-left: 0;
  }

  .navbar-container {
    background-color: var(--royal-blue);
    padding-right: 16px;
  }

  .div-block-182 {
    flex-flow: row;
    flex: 1;
    align-content: center;
    align-items: center;
    top: 45vh;
    right: -32vh;
  }

  .text-block-27 {
    flex: none;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .image-112 {
    max-width: 16px;
  }

  .image-113 {
    align-self: center;
    max-width: 16px;
  }

  .image-114 {
    max-width: 16px;
  }

  .text-block-28 {
    color: #fff;
  }

  .text-block-28.landscape {
    display: none;
  }

  .text-block-28.mobile {
    width: 200px;
    height: 200px;
    display: inline;
    position: absolute;
    inset: auto;
  }

  .div-block-183 {
    display: none;
  }

  .grid-45 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 33.33% 33.33% 1fr;
    margin-bottom: 64px;
    position: relative;
    bottom: 0;
  }

  .back-to-top-image-holder.w--current {
    right: 16px;
  }

  .paragraphascaption {
    text-align: center;
    width: auto;
    font-size: .8em;
  }
}

#w-node-c76ef47b-5f33-a307-cbe3-b60b462a120c-ad8d9e37, #w-node-fc5c8258-865d-49e5-2689-b6654595e8eb-ad8d9e37, #w-node-ce6bc00b-e98b-90e3-8a23-f2274ef28193-ad8d9e37, #w-node-_9d6f1643-1204-aaa5-f621-8052d848d970-ad8d9e37, #w-node-f7719da0-5a15-6ca7-1ca0-f264a5798e6e-ad8d9e37, #w-node-_51faf8cb-4d84-4ac4-ffe5-598a0b2cb674-ad8d9e37, #w-node-d206da25-2c3e-c622-69dc-d1008bf8d304-ad8d9e37, #w-node-aac087db-0c8d-151a-e398-0a73d4d15b54-ad8d9e37, #w-node-e6c7fde6-b2b1-e559-f769-b42706aec360-ad8d9e37, #w-node-cdb93e09-16b8-b0c1-8ff4-5eb6ddc206ee-ad8d9e37, #w-node-_6f5968ae-be9a-0227-09ce-992b35c390c9-ad8d9e37, #w-node-cc7886ed-e013-cdae-2c32-66c8cf207167-ad8d9e37, #w-node-_2e1134bf-7c0a-061f-31c1-a59091867191-ad8d9e37, #w-node-_00b43cac-fb55-924d-0936-34ba023a77dc-ad8d9e37, #w-node-e75a56f0-e7f0-bf78-78b8-ee4eb1a186e8-ad8d9e37, #w-node-_4dd7b277-9431-0a34-8383-e22b4f72a586-ad8d9e37, #w-node-_0c588ff0-c014-cdcd-66ee-79935463ea1b-ad8d9e37, #w-node-a2589b23-9ca5-e219-cced-a151d40fd0e8-ad8d9e37, #w-node-_9467b361-4744-7fd8-4f79-e0f3d3435cd4-ad8d9e37, #w-node-_4593f35b-3b20-58e2-8bb9-4391ccb61de3-ad8d9e37, #w-node-_9bcc1b43-0be4-40b1-6896-038bdb04f413-ad8d9e37, #w-node-fa5ebecf-01fd-0f8f-b43a-0974dd5abc9b-ad8d9e37, #w-node-_9269368e-15eb-495b-ec78-6d36c23338c0-ad8d9e37, #w-node-_0ee4f28d-10a5-d1c0-6746-5ade86838e70-ad8d9e37, #w-node-_2b30dc68-881d-7a42-1068-ba13b697a334-ad8d9e37, #w-node-c7575432-3bf3-e0f4-08a2-ee860ba40a8d-ad8d9e37, #w-node-b10ef4a7-073c-8458-64a6-5b22f2d230d5-ad8d9e37, #w-node-_43ec678d-cae4-f7c1-40c1-780a00353ae8-ad8d9e37, #w-node-_52a1e39d-916d-b391-c807-624cb458bfe1-ad8d9e37, #w-node-_2c363ba4-9df1-2dfe-9022-358e9d676075-ad8d9e37 {
  place-self: center;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-b84489d6 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-b84489d6 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f104-b84489d6 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f106-b84489d6 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f108-b84489d6, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-b84489d6 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-1ad3a77b {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-1ad3a77b {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-1ad3a77b {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-cf843933 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-cf843933 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-cf843933 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-7bd3cf8a {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-7bd3cf8a {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-7bd3cf8a {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-64ed48a7 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-64ed48a7 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-64ed48a7 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-a3c4d25b {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-a3c4d25b {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-a3c4d25b {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f3-3af82dde {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f5-3af82dde {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623fd-3af82dde {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623ff-3af82dde {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e862401-3af82dde, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-3af82dde {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f3-2829678e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f5-2829678e {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-2829678e {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f3-6ed40163 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f5-6ed40163 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-6ed40163 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f3-75b42427 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f5-75b42427 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-75b42427 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f3-57b42a3e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_25ac1daa-536c-7403-2a7e-97368e8623f5-57b42a3e {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-57b42a3e {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-982a8c7f {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-982a8c7f {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f104-982a8c7f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f106-982a8c7f {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f108-982a8c7f, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-982a8c7f {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-4dc5df56 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-4dc5df56 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f104-4dc5df56 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f106-4dc5df56 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f108-4dc5df56, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-4dc5df56 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-9427d367 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-9427d367 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f104-9427d367 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f106-9427d367 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f108-9427d367, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-9427d367 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-3e2a9732 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-3e2a9732 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-3e2a9732 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-7d1432eb {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-7d1432eb {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-7d1432eb {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-42b92823 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-42b92823 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f104-42b92823 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f106-42b92823 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f108-42b92823, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-42b92823 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fa-cab51e4c {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f0fc-cab51e4c {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f104-cab51e4c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f106-cab51e4c {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f108-cab51e4c, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-cab51e4c, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-a8a654d2, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-943d1b25, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-4b905f95, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-35246fe6, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-ed6ab2e8, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-f3ff260e, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-e62bc75c, #w-node-f1c75aa1-e5da-fe68-3a74-e5ae88c2f11b-3424eeb9 {
  grid-area: 2 / 2 / 3 / 3;
}

@media screen and (max-width: 767px) {
  #w-node-_9717d47f-aeae-8177-21e3-87e77a9a630d-ad8d9e37 {
    place-self: center start;
  }
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.otf') format('opentype'), url('../fonts/Poppins-ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBoldItalic.otf') format('opentype'), url('../fonts/Poppins-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: auto;
}