@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap");
.sidebar {
  background-color: #67ccda;
  min-height: 100vh;
  width: 50vw;
  font-family: "Titillium Web", sans-serif;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  -webkit-transform: translate(200%);
          transform: translate(200%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.sidebar img {
  height: 30px;
  position: absolute;
  top: 30px;
  right: 20px;
}

.sidebar .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
  min-height: 70vh;
  width: 100%;
}

.sidebar .links li {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.sidebar .links li a {
  color: #fff;
  text-decoration: none;
}

.sidebar ul {
  list-style-type: none;
}

.sidebar ul li {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

.toggle {
  display: none;
  position: absolute;
  top: 45px;
  right: 40px;
  z-index: 102;
  opacity: 0;
  -webkit-animation: fade-in 3s forwards 2s;
          animation: fade-in 3s forwards 2s;
}

.toggle div {
  position: relative;
  width: 35px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle div::before {
  content: "";
  height: 3px;
  width: 28px;
  background-color: #fff;
  position: absolute;
  top: 9px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle div::after {
  content: "";
  height: 3px;
  width: 20px;
  background-color: #fff;
  position: absolute;
  bottom: 9px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle div.open {
  background: transparent;
}

.toggle div.open::before {
  -webkit-transform: rotate(45deg) translate(-12px, -13px);
          transform: rotate(45deg) translate(-12px, -13px);
}

.toggle div.open::after {
  width: 28px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.open {
  -webkit-transform: translate(0%);
          transform: translate(0%);
}

.fix {
  overflow-y: hidden;
}

@media screen and (max-width: 768px) {
  .toggle {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .sidebar {
    min-width: 100vw;
  }
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 50px;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-animation: fade-in 3s forwards 2s;
          animation: fade-in 3s forwards 2s;
  font-family: "Titillium Web", sans-serif;
}

nav img {
  height: 70px;
}

nav ul {
  list-style-type: none;
  color: #fff;
}

nav .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .links li {
  padding: 0 30px;
  font-size: 1.5rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

nav .links li a {
  color: #fff;
  text-decoration: none;
}

nav .links li:hover {
  opacity: 0.6;
}

header {
  min-height: 100vh;
  background: #0a0b08;
  background-size: 30%;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  overflow-x: hidden;
}

header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80vh;
}

header > div > div {
  text-align: center;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

header > div > div h1 {
  font-size: 6rem;
  font-weight: 500;
  -webkit-animation: headerOne 3s ease;
          animation: headerOne 3s ease;
}

header > div > div h2 {
  font-weight: 500;
  font-size: 2.5rem;
  -webkit-animation: headerTwo 2.5s ease;
          animation: headerTwo 2.5s ease;
  max-width: 500px;
  margin: 0 auto 3rem;
}

header > div img {
  height: 550px;
  -webkit-animation: img 3s ease;
          animation: img 3s ease;
}

@-webkit-keyframes img {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes img {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes headerOne {
  from {
    -webkit-transform: translateY(-600%);
            transform: translateY(-600%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes headerOne {
  from {
    -webkit-transform: translateY(-600%);
            transform: translateY(-600%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes headerTwo {
  from {
    -webkit-transform: translateY(-600%);
            transform: translateY(-600%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes headerTwo {
  from {
    -webkit-transform: translateY(-600%);
            transform: translateY(-600%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.large {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(17, 32, 0, 0.3))), url("../images/large.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(17, 32, 0, 0.3)), url("../images/large.jpg") center/cover no-repeat;
  color: #fff;
  min-height: 100vh;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Titillium Web", sans-serif;
  text-align: center;
}

.large h1 {
  font-size: 5rem;
  font-weight: 600;
}

.large h3 {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 500;
}

.large a {
  display: inline-block;
  background-color: #67ccda;
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  padding: 15px 50px;
  border-radius: 20px;
}

.large a:hover {
  color: #800080;
}

.shirt {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(17, 32, 0, 0))), #fef8ea;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(17, 32, 0, 0)), #fef8ea;
  font-family: "Titillium Web", sans-serif;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shirt div {
  padding-left: 10px;
  text-align: center;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.shirt div h1 {
  font-size: 5rem;
  font-weight: 600;
}

.shirt div h3 {
  font-size: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 600;
}

.shirt div a {
  display: inline-block;
  background-color: #67ccda;
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  padding: 15px 50px;
  border-radius: 20px;
}

.shirt div a:hover {
  color: #800080;
}

.shirt img {
  height: 700px;
}

.other {
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.7))), url("../images/other.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../images/other.jpg") center/cover no-repeat;
  color: #fff;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Titillium Web", sans-serif;
  text-align: center;
}

.other h1 {
  font-size: 5rem;
  font-weight: 600;
}

.other h3 {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 500;
}

.other a {
  display: inline-block;
  background-color: #67ccda;
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  padding: 15px 50px;
  border-radius: 20px;
}

.other a:hover {
  color: #800080;
}

footer {
  background-color: #102a42;
  min-height: 25vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Titillium Web", sans-serif;
  padding: 0 50px;
}

footer img {
  height: 70px;
}

footer ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer ul li {
  padding: 0 30px;
  font-size: 1.5rem;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
}

footer ul li:hover {
  opacity: 0.6;
}

.serviceBody {
  background-color: #000;
  font-family: "Titillium Web", sans-serif;
  overflow-x: hidden;
}

.serviceBody .toggle {
  -webkit-animation: fade-in 2s forwards;
          animation: fade-in 2s forwards;
  top: 45px;
}

.serviceBody .toggle div::before {
  height: 3.5px;
}

.serviceBody nav {
  -webkit-animation: fade-in 2s forwards;
          animation: fade-in 2s forwards;
  width: 100%;
  height: 100px;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
}

.serviceBody .large,
.serviceBody .other {
  display: none;
}

.service {
  height: 30vh;
}

.service h1 {
  font-size: 3.5rem;
  color: #fff;
}

.service .digital {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  background: url("../images/card.jpg") center/cover no-repeat;
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 0, 0 100%, 0 100%, 0% 60%, 0 0);
          clip-path: polygon(50% 0%, 100% 0, 100% 0, 0 100%, 0 100%, 0% 60%, 0 0);
  -webkit-animation: right 1.5s ease-out;
          animation: right 1.5s ease-out;
}

.service .digital h1 {
  margin-left: 2rem;
}

.service .otherService {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  background: url("../images/otherService.jpg") center/cover no-repeat;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  -webkit-animation: left 1.5s ease-out;
          animation: left 1.5s ease-out;
}

.service .otherService h1 {
  margin-right: 2rem;
}

@-webkit-keyframes right {
  from {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  to {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}

@keyframes right {
  from {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  to {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}

@-webkit-keyframes left {
  from {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  to {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}

@keyframes left {
  from {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  to {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}

.contactBody {
  font-family: "Titillium Web", sans-serif;
}

.contactBody .toggle {
  -webkit-animation: fade-in 2s forwards 1s;
          animation: fade-in 2s forwards 1s;
}

.contactBody .toggle div::before {
  height: 3.5px;
}

.contactBody header {
  min-height: 100vh;
  background: url("../images/contact.jpg") center/cover no-repeat;
  -webkit-animation: fade-in 2s forwards;
          animation: fade-in 2s forwards;
}

.contactBody header nav {
  -webkit-animation: fade-in 2s forwards 1s;
          animation: fade-in 2s forwards 1s;
}

.contactBody header #scroll {
  height: 100px;
  position: absolute;
  right: 0;
  bottom: 2rem;
}

.contactBody section {
  text-align: center;
}

.contactBody .fp-tooltip {
  color: #000 !important;
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 600 !important;
}

.contactBody .s1 {
  background: url("../images/contactt.png") center/cover no-repeat;
}

.contactBody .s1 h1 {
  font-size: 4.5rem;
  padding: 0 10px;
  margin-right: -35rem;
}

.contactBody .s1 ul {
  margin: 3rem 0;
  margin-right: -35rem;
}

.contactBody .s1 ul li {
  font-size: 3rem;
}

.contactBody .s1 ul li:first-of-type {
  font-weight: 700;
}

.contactBody .s2 {
  background: #67ccda;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #67ccda), to(white));
  background: linear-gradient(180deg, #67ccda 60%, white 100%);
}

.contactBody .s2 h1 {
  font-size: 2rem;
  padding: 0 10px;
}

.contactBody .s2 iframe {
  height: 530px;
  margin-top: 3rem;
}

.contactBody .s3 {
  background: #fff;
}

.contactBody .s3 h1 {
  font-size: 4rem;
  padding: 0 20px;
}

.contactBody .s3 h2 {
  font-size: 2.5rem;
  padding: 0 20px;
}

.digitalBody {
  font-family: "Titillium Web", sans-serif;
  -webkit-animation: fade-in 1.5s forwards;
          animation: fade-in 1.5s forwards;
  background: #67ccda;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #67ccda), to(white));
  background: linear-gradient(180deg, #67ccda 80%, white 100%);
}

.digitalBody nav,
.digitalBody .toggle {
  -webkit-animation: fade-in 2s forwards 500ms;
          animation: fade-in 2s forwards 500ms;
}

.digitalBody h1 {
  font-size: 4rem;
  text-align: center;
  margin: 2rem 0 1rem 0;
  color: #fff;
  padding: 0 20px;
}

.digitalBody .otherContainer img {
  height: 300px !important;
}

.digitalBody .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1800px;
  padding-top: 6rem;
  margin: 2rem 0;
  overflow: auto;
}

.digitalBody .container > div {
  border: 1px solid #ccc;
  border-radius: 20px 20px 0px 0px;
  background: #f2f2f2;
  width: 450px;
  margin: 2rem 0.5rem;
}

.digitalBody .container > div img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0px 0px;
}

.digitalBody .container > div .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  font-size: 1.5rem;
  margin: 20px 15px;
  text-align: center;
}

.digitalBody .container > div a {
  color: #000;
  text-decoration: none;
}

.allDigitalBody {
  background: #67ccda;
  font-family: "Titillium Web", sans-serif;
  -webkit-animation: fade-in 2s forwards;
          animation: fade-in 2s forwards;
  color: #fff;
  text-align: center;
}

.allDigitalBody .toggle {
  -webkit-animation: fade-in 2s forwards 1s;
          animation: fade-in 2s forwards 1s;
  text-align: start;
}

.allDigitalBody nav {
  -webkit-animation: fade-in 2s forwards 1s;
          animation: fade-in 2s forwards 1s;
}

.allDigitalBody h1 {
  font-size: 3rem;
  margin: 2rem 0 3rem 0;
  padding: 0 20px;
}

.allDigitalBody p {
  max-width: 1100px;
  margin: 1.5rem auto;
  font-size: 1.5rem;
  padding: 0 20px;
}

.allDigitalBody ul li {
  font-size: 1.5rem;
}

.allDigitalBody .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1800px;
  padding-top: 2rem;
  margin: 2rem 0;
  overflow: auto;
}

.allDigitalBody .gallery img {
  border-radius: 20px;
  height: 350px;
  margin: 2rem 1rem;
}

@media (max-width: 1200px) {
  header > div > div h1 {
    font-size: 5rem;
    padding: 0 20px;
  }
  header > div > div h2 {
    font-size: 2rem;
    max-width: 500px;
    padding: 0 20px;
  }
  .shirt div h1 {
    font-size: 4rem;
  }
  .shirt img {
    height: auto;
    width: 30%;
  }
  .contactBody .s1 h1 {
    font-size: 3rem;
    margin-right: -20rem;
  }
  .contactBody .s1 ul {
    margin-right: -20rem;
  }
  .contactBody .s2 iframe {
    height: 430px;
    width: 60%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 992px) {
  header > div img {
    width: 40%;
    height: auto;
  }
  header > div > div h1 {
    font-size: 3.5rem;
  }
  header > div > div h2 {
    font-size: 2rem;
  }
  .shirt div h1 {
    font-size: 3rem;
  }
  .shirt div h3 {
    font-size: 1.5rem;
    max-width: 400px;
  }
  .shirt div a {
    font-size: 1.5rem;
    padding: 15px 30px;
  }
  .shirt img {
    width: 35%;
  }
  .service .digital h1 {
    position: absolute;
    top: 11rem;
    left: 0;
  }
  .service .otherService h1 {
    position: absolute;
    bottom: 11rem;
    right: 0;
  }
  .contactBody .s1 h1 {
    margin-right: -20rem;
  }
  .contactBody .s1 ul {
    margin-right: -20rem;
  }
  .contactBody .s2 h1 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  nav ul,
  nav .links {
    display: none;
  }
  header > div > div h1 {
    font-size: 3rem;
  }
  header > div > div h2 {
    font-size: 1.5rem;
  }
  .shirt div h1 {
    font-size: 2rem;
  }
  .shirt div h3 {
    font-size: 1rem;
    max-width: 300px;
    margin: 1rem auto 2rem auto;
  }
  footer {
    padding: 0 30px;
  }
  .service .digital h1 {
    top: 11rem;
    max-width: 50px;
  }
  .service .otherService h1 {
    bottom: 11rem;
    max-width: 150px;
  }
  .gallery {
    padding: 0 20px;
  }
  .gallery img {
    width: 85%;
    height: auto;
  }
  .contactBody header {
    background: url("../images/envelope.jpg") center/cover no-repeat;
  }
  .contactBody header #scroll {
    bottom: 1rem;
  }
  .contactBody .s1 {
    background: #102a42;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactBody .s1 h1 {
    max-width: 100%;
    margin-top: 2rem;
  }
  .contactBody .s1 ul {
    max-width: 100%;
  }
  .contactBody .s2 h1 {
    padding: 0 20px;
  }
  .contactBody .s2 iframe {
    width: 90%;
  }
  .contactBody .footer {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  header {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.7))), url("../images/toner.jpg") center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../images/toner.jpg") center/cover no-repeat;
  }
  header > div img {
    display: none;
  }
  header > div > div h1 {
    font-size: 4rem;
  }
  header > div > div h2 {
    font-size: 2rem;
  }
  .large h1,
  .other h1 {
    font-size: 3rem;
  }
  .large h3,
  .other h3 {
    font-size: 1.5rem;
  }
  .shirt div h1 {
    font-size: 1.5rem;
  }
  .shirt div a {
    padding: 10px 20px;
  }
  .shirt img {
    width: 40%;
  }
  footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer img {
    margin: 2rem 0 2rem;
  }
  footer ul {
    margin-bottom: 3rem;
  }
  .contactBody .s3 h1 {
    font-size: 3rem;
  }
  .contactBody .s3 h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  nav {
    padding: 15px 20px;
  }
  nav img {
    height: 50px;
  }
  .toggle {
    top: 40px;
    right: 20px;
  }
  header > div > div h1 {
    font-size: 3rem;
    margin: 2rem 0;
  }
  header > div > div h2 {
    font-size: 1.5rem;
    padding: 0 15px;
    margin: 0 auto 5rem;
  }
  .large,
  .other {
    padding: 0 20px;
  }
  .large h1,
  .other h1 {
    font-size: 2.5rem;
  }
  .large h3,
  .other h3 {
    margin: 2rem auto 3rem auto;
  }
  .large a,
  .other a {
    font-size: 1.5rem;
    padding: 15px 30px;
  }
  .other h1 {
    font-size: 3rem;
  }
  .shirt {
    padding: 30px 30px 50px;
  }
  .shirt div {
    padding: 0;
  }
  .shirt div h1 {
    font-size: 2.5rem;
  }
  .shirt div h3 {
    font-size: 1.5rem;
    max-width: 500px;
  }
  .shirt div a {
    padding: 15px 30px;
  }
  .shirt img {
    display: none;
  }
  footer ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer ul li {
    padding: 10px 30px;
  }
  .service {
    display: none;
  }
  .serviceBody nav {
    position: static;
  }
  .serviceBody .large,
  .serviceBody .other {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .serviceBody .large h1,
  .serviceBody .other h1 {
    font-size: 4.5rem;
    margin-bottom: 3rem;
    line-height: 75px;
  }
  .digitalBody .container {
    padding-top: 0;
  }
  .digitalBody .container > div {
    width: 300px;
  }
  .digitalBody .container > div .desc {
    height: auto;
  }
  .allDigitalBody h1 {
    font-size: 2rem;
  }
  .allDigitalBody p {
    font-size: 1.2rem;
  }
  .contactBody .s1 h1 {
    font-size: 3rem;
  }
  .contactBody .s1 ul li {
    font-size: 2rem;
  }
  .contactBody .s2 h1 {
    font-size: 1.5rem;
  }
  .contactBody .s2 iframe {
    height: 350px;
    width: 80%;
  }
  .contactBody .s3 h1 {
    font-size: 3rem;
  }
  .contactBody .s3 h2 {
    font-size: 1.5rem;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=main.css.map */