@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
@-webkit-keyframes redline {
  50% {
    stroke-dashoffset: 0;
  }
}
@keyframes redline {
  50% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes shining {
  50% {
    opacity: 0;
  }
}
@keyframes shining {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes wobble {
  0%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-15px) rotate(-6deg);
            transform: translateX(-15px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(7.5px) rotate(6deg);
            transform: translateX(7.5px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-7.5px) rotate(-3.6deg);
            transform: translateX(-7.5px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(4.5px) rotate(2.4deg);
            transform: translateX(4.5px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-3px) rotate(-1.2deg);
            transform: translateX(-3px) rotate(-1.2deg);
  }
}
@keyframes wobble {
  0%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-15px) rotate(-6deg);
            transform: translateX(-15px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(7.5px) rotate(6deg);
            transform: translateX(7.5px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-7.5px) rotate(-3.6deg);
            transform: translateX(-7.5px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(4.5px) rotate(2.4deg);
            transform: translateX(4.5px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-3px) rotate(-1.2deg);
            transform: translateX(-3px) rotate(-1.2deg);
  }
}
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "cwTeXYen", sans-serif;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 1.5em;
  background: rgba(243, 229, 245, 0.5);
  font-size: 18px;
  color: #5B3256;
}
body img {
  width: 100%;
  height: auto;
}
body section {
  width: 100%;
  height: auto;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body .container {
  width: 80%;
  height: auto;
  margin: auto;
  padding: 5% 0;
  text-align: center;
}
body ::-moz-selection {
  background: white;
}
body ::selection {
  background: white;
}
body *:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
body p {
  margin: 0;
}
body a {
  display: block;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
body h1, body h2, body h3, body h4, body h5 {
  padding: 5px 0;
  margin: 0;
  text-align: center;
  line-height: 1.5em;
}
body h2 {
  font-size: 80px;
}
body h3 {
  font-size: 56px;
}
body h4 {
  font-size: 32px;
}
body h5 {
  font-size: 28px;
}
body p {
  font-size: 22px;
}
body ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
body nav {
  width: 100%;
  height: auto;
  margin: auto;
}
body nav ul {
  width: 60%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 25px;
  text-align: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
body nav ul li {
  width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 25px;
  overflow: hidden;
}
body .nav {
  position: fixed;
  top: 2%;
  z-index: 999;
}
body .nav ul {
  background: #8E83BC;
}
body .nav ul li a {
  color: white;
  padding: 10px 0;
  font-weight: 400;
}
body .nav ul li a:hover {
  background: #7f72b3;
}
body .nav ul .active {
  background: #7f72b3;
}
body .section-1 .container{
    padding-top: 8%;
}
body .section-1 .container h2 span {
  color: red;
}
body .section-1 .container #redline svg {
  width: 60%;
  height: auto;
}
body .section-1 .container #redline svg .cls-1, body .section-1 .container #redline svg .cls-2, body .section-1 .container #redline svg .cls-3 {
  stroke-width: 0px;
}
body .section-1 .container #redline svg .cls-1 {
  fill: #e0e0e0;
}
body .section-1 .container #redline svg .cls-2 {
  fill: none;
}
body .section-1 .container #redline svg .cls-3 {
  fill: none;
  stroke: red;
  stroke-width: 1px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-animation: redline 3s linear infinite alternate;
          animation: redline 3s linear infinite alternate;
}
body .section-2 {
  overflow: hidden;
}
body .section-2 .container .blobs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}
body .section-2 .container .blobs .blob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body .section-2 .container .blobs .blob:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse column-reverse;
          flex-direction: row-reverse column-reverse;
}
body .section-2 .container .blobs .blob:nth-child(odd) p {
  background: rgba(142, 131, 188, 0.5);
}
body .section-2 .container .blobs .blob:nth-child(1) {
  grid-area: 2/2/1/5;
}
body .section-2 .container .blobs .blob:nth-child(2) {
  grid-area: 2/3/2/5;
}
body .section-2 .container .blobs .blob:nth-child(3) {
  grid-area: 3/2/3/5;
}
body .section-2 .container .blobs .blob:nth-child(4) {
  grid-area: 4/3/4/5;
}
body .section-2 .container .blobs .blob p {
  background: rgba(253, 219, 100, 0.5);
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: 500;
  font-family: setofont;
}
body .section-2 .container .blobs .blob img {
  width: auto;
  height: auto;
}
body .section-2 .container .chill {
  width: 100%;
  height: auto;
  position: relative;
}
body .section-2 .container .chill img {
  width: 80%;
  height: auto;
}
body .section-2 .container .chill .chat {
  display: inline-block;
  position: absolute;
  top: 20%;
  left: 40%;
}
body .section-2 .container .chill .chat p {
  text-align: left;
  background: #5B3256;
  padding: 30px 30px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  position: relative;
}
body .section-2 .container .chill .chat p::after {
  width: 0;
  height: 0;
  border-color: #5B3256 #5B3256 transparent transparent;
  border-style: solid solid solid solid;
  border-width: 13px 15px;
  content: "";
  position: absolute;
  bottom: -5%;
  right: 15%;
  z-index: -1;
}
body .section-3 .container p {
  color: #606060;
  padding: 15px 0;
}
body .section-3 .container h4 {
  color: #5B3256;
}
body .section-3 .container h5 {
  color: #FDDB64;
  background: #8E83BC;
  display: inline-block;
  padding: 0 15px;
}
body .service {
  width: 80%;
  height: auto;
  margin: auto;
}
body .service .container .service-box {
  background: -webkit-gradient(linear, left top, left bottom, from(#8E83BC), to(#443a6c));
  background: linear-gradient(#8E83BC, #443a6c);
  border-radius: 10rem;
  position: relative;
}
body .service .container .service-box::before {
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 0 100px 50px 100px;
  border-color: transparent transparent #8E83BC transparent;
  position: absolute;
  left: 50%;
  top: -50px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
body .service .container .service-box .title h3 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  padding: 5% 0;
}
body .service .container .service-box .title h3::after, body .service .container .service-box .title h3::before {
  width: 35px;
  height: 45px;
  position: absolute;
  content: "";
  background: url(../images/shining.svg) no-repeat;
  background-size: contain;
  -webkit-animation: shining 0.5s infinite;
          animation: shining 0.5s infinite;
}
body .service .container .service-box .title h3::after {
  right: -40px;
}
body .service .container .service-box .title h3::before {
  left: -40px;
}
body .service .container .service-box .service-groups {
  width: auto;
  height: auto;
  padding: 0 10% 10% 10%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
}
body .service .container .service-box .service-groups .service-item {
  position: relative;
}
body .service .container .service-box .service-groups .service-item::after, body .service .container .service-box .service-groups .service-item::before {
  content: "";
  position: absolute;
  z-index: 1;
}
body .service .container .service-box .service-groups .service-item:not(:nth-child(3n+1))::before {
  inline-size: 1px;
  block-size: 100%;
  inset-block-start: 0;
  inset-inline-start: -1em;
  background: repeating-linear-gradient(#FDDB64, #FDDB64 10px, transparent 10px, transparent 15px);
}
body .service .container .service-box .service-groups .service-item:not(:nth-child(-n+3))::after {
  inline-size: 100%;
  block-size: 1px;
  inset-inline-start: 0;
  inset-block-start: -1em;
  background: repeating-linear-gradient(to right, #FDDB64, #FDDB64 10px, transparent 10px, transparent 15px);
}
body .service .container .service-box .service-groups .service-item img {
  width: 100px;
  height: 100px;
  padding: 15px;
}
body .service .container .service-box .service-groups h5 {
  color: #FDDB64;
}
body .service .container .service-box .service-groups p {
  color: white;
}
body .price {
  width: 80%;
  height: auto;
  margin: auto;
  text-align: center;
}
body .price .container .icon {
  margin: auto;
  padding: 15px 0;
}
body .price .container .icon p {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body .price .container .icon-q p {
  background: #8E83BC;
  color: #FDDB64;
}
body .price .container .icon-a p {
  background: #606060;
  color: white;
}
body .price .container h3 {
  position: relative;
  display: inline-block;
}
body .price .container h3::before, body .price .container h3::after {
  width: 80px;
  height: 80px;
  content: "";
  position: absolute;
  top: -30px;
  -webkit-animation: shining 0.5s infinite;
          animation: shining 0.5s infinite;
}
body .price .container h3::before {
  background: url(../images/q1.svg) no-repeat;
  background-size: contain;
  left: -40px;
}
body .price .container h3::after {
  background: url(../images/q2.svg) no-repeat;
  background-size: contain;
  right: -40px;
}
body .price .container .price-description {
  width: 60%;
  height: auto;
  margin: auto;
}
body .price .container .price-description p {
  color: #606060;
}
body .price .container .price-description * {
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
body .price .container .price-groups {
  background: #8E83BC;
  padding: 5%;
  border-radius: 2rem;
}
body .price .container .price-groups .click {
  width: 100%;
  height: auto;
  background: #FDDB64;
  border-radius: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body .price .container .price-groups .click h5 {
  color: #5B3256;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
body .price .container .price-groups .click h5::after {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  right: -50px;
  background: url(../images/hand.svg) no-repeat;
}
body .price .container .price-groups .click:hover {
  background: #fcc918;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body .price .container .price-groups .click:hover h5::after {
  background: url(../images/hand-spock.svg) no-repeat;
}
body .price .container .price-groups .price-nav ul li {
  padding: 10px;
  margin: auto 10px;
  background: #5B3256;
  border-radius: 25px;
  color: white;
  cursor: pointer;
}
body .price .container .price-groups .price-nav ul li:hover {
  background: #FDDB64;
  color: #5B3256;
  font-weight: bold;
}
body .price .container .price-groups .price-nav ul .active {
  background: #FDDB64;
  color: #5B3256;
  font-weight: bold;
}
body .price .container .price-groups .price-items {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
body .price .container .price-groups .price-items .price-container {
  width: 100%;
  height: auto;
  position: relative;
}
body .price .container .price-groups .price-items .price-container .price-item {
  display: none;
  margin: 5%;
  color: white;
}
body .price .container .price-groups .price-items .price-container .price-item .items {
  padding: 15px 0;
  border-bottom: 1px solid rgba(243, 229, 245, 0.5);
  font-size: 1.5rem;
}
body .price .container .price-groups .price-items .price-container .price-item h4 {
  text-align: left;
  padding-top: 2rem;
  font-family: setofont;
  font-weight: normal;
  color: #FDDB64;
}
body .price .container .price-groups .price-items .price-container .item-1 .items {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
body .price .container .price-groups .price-items .price-container .item-1 .items .great {
  font-size: 1rem;
  color: #FDDB64;
  -webkit-animation: wobble 2s both infinite;
          animation: wobble 2s both infinite;
  display: inline-block;
  padding: 0 15px;
}
body .price .container .price-groups .price-items .price-container .item-1 .items .item {
  text-align: left;
  padding: 5px 0;
}
body .price .container .price-groups .price-items .price-container .item-1 .items .item:nth-child(2) {
  text-align: right;
}
body .price .container .price-groups .price-items .price-container .item-1 .items .item:last-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
body .price .container .price-groups .price-items .price-container .item-1 .items .item p {
  font-size: 1.2rem;
}
body .price .container .price-groups .price-items .price-container .item-1 .items .item p span {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
body .price .container .price-groups .price-items .price-container .item-1 .items .item p span::before {
  width: 100%;
  height: 6px;
  content: "";
  background: #5B3256;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
body .price .container .price-groups .price-items .price-container .item-1 .items .item .highline {
  color: #FDDB64;
}
body .price .container .price-groups .price-items .price-container .item-2 .items, body .price .container .price-groups .price-items .price-container .item-3 .items {
  width: 100%;
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.5rem;
}
body .price .container .price-groups .price-items .price-container .active {
  display: block;
}
body .faq {
  width: 80%;
  height: auto;
  margin: auto;
}
body .faq .container .faq-groups {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
body .faq .container .faq-groups .left-block {
  text-align: right;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
body .faq .container .faq-groups .left-block h3 {
  text-align: right;
}
body .faq .container .faq-groups .left-block .faq-nav ul {
  width: 100%;
  height: auto;
  margin: 15px auto;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
body .faq .container .faq-groups .left-block .faq-nav ul li {
  background: #5B3256;
  color: white;
  cursor: pointer;
}
body .faq .container .faq-groups .left-block .faq-nav ul .active {
  background: #FDDB64;
  color: #5B3256;
  font-weight: bold;
}
body .faq .container .faq-groups .right-block {
  text-align: left;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
body .faq .container .faq-groups .right-block .accordion {
  display: none;
}
body .faq .container .faq-groups .right-block .accordion .accordion-container {
  position: relative;
  margin: 10px 10px;
}
body .faq .container .faq-groups .right-block .accordion .accordion-container .label {
  position: relative;
  cursor: pointer;
  margin-left: 15px;
  font-weight: bold;
}
body .faq .container .faq-groups .right-block .accordion .accordion-container .label::before {
  content: "+";
  color: #FDDB64;
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
body .faq .container .faq-groups .right-block .accordion .accordion-container .content {
  width: calc(100% - 15px);
  height: 0;
  max-height: 0;
  position: relative;
  text-align: justify;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  margin-left: 15px;
  color: #606060;
}
body .faq .container .faq-groups .right-block .accordion .accordion-container .content a {
  display: inline-block;
  color: #5B3256;
  border-bottom: 1px dotted #5B3256;
  font-size: 1rem;
}
body .faq .container .faq-groups .right-block .accordion .active .content {
  width: calc(100% - 15px);
  height: auto;
  max-height: 200px;
}
body .faq .container .faq-groups .right-block .accordion .active .label::before {
  content: "-";
}
body .faq .container .faq-groups .right-block .active {
  display: inline-block;
}
body .about {
  width: 80%;
  height: auto;
  margin: auto;
}
body .about .container .myWorks {
  width: 100%;
  height: auto;
  padding: 2% 0;
}
body .about .container .myWorks h4 {
  text-align: center;
}
body .about .container .myWorks h5 {
  font-size: 1.2rem;
  color: #5B3256;
}
body .about .container .myWorks .works-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
body .about .container .myWorks .works-wrapper .work-item img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(96, 96, 96, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body .about .container .myWorks .works-wrapper .work-item:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  border: 1px solid #5B3256;
}
body .about .logo {
  max-width: 200px;
}
body .about .go {
  width: 100%;
  height: auto;
  padding: 2% 0;
}
body .about .go a {
  display: inline-block;
  background: #8E83BC;
  padding: 0 5%;
  font-size: 1.4rem;
  color: white;
  border-radius: 2rem;
  position: relative;
}
body .about .go a::after {
  width: 30px;
  height: 30px;
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/arrow.svg) no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body .about .go a:hover {
  background: #5B3256;
}
body .about .go a:hover::after {
  right: 5px;
}
body .about .contain {
  width: 80%;
  height: auto;
  margin: auto;
}
body .about .contain p {
  padding-top: 5px;
  padding-bottom: 15px;
}
body .about .contain a {
  display: inline-block;
  color: #5B3256;
  border-bottom: 1px dotted #5B3256;
}
body .contact .container .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .contact .container .title h5 {
  color: #FDDB64;
  background: #8E83BC;
  display: inline-block;
  padding: 0 15px;
  font-size: 1.2rem;
  font-weight: normal;
}
body .contact .container .title h3 {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  padding: 2% 0;
}
body .contact .container .title #holding {
  width: 40px;
  height: 40px;
  display: inline-block;
  fill: #8E83BC;
}
body .contact .container .title #holding .cls-2 {
  fill: red;
  -webkit-animation: shining 0.5s infinite;
          animation: shining 0.5s infinite;
}
body .contact .container .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
body .contact .container .social ul li img {
  width: 45px;
  height: 45px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
body .contact .container .social ul li:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
body footer {
  margin: auto;
  background: #8E83BC;
}
body footer p {
  text-align: center;
  color: white;
  font-size: 1rem;
}
body footer p a {
  display: inline-block;
  color: white;
  color: #FDDB64;
}

@media all and (max-width: 1600px) {
  body .container {
    width: 100%;
    height: auto;
  }
}
@media all and (max-width: 1024px) {
  body .section-2 .container .chill .chat {
    top: 5%;
    left: 35%;
  }
  body .service {
    width: 90%;
    height: auto;
  }
  body .service .container .service-box {
    border-radius: 2rem;
  }
  body .service .container .service-box::before {
    top: -45px;
  }
  body .service .container .service-box .service-groups {
    padding: 0 15px 15px 15px;
  }
  body .price .container .price-description {
    width: 100%;
    height: auto;
  }
  body .faq {
    width: 95%;
    height: auto;
  }
  body .faq .container .faq-groups {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body .faq .container .faq-groups .left-block, body .faq .container .faq-groups .left-block h3 {
    text-align: center;
  }
  body .faq .container .faq-groups .left-block .faq-nav ul li, body .faq .container .faq-groups .left-block h3 .faq-nav ul li {
    padding: 10px 0;
  }
  body .faq .container .faq-groups .right-block .accordion .active .content {
    max-height: 500px;
  }
  body .about {
    width: 95%;
    height: auto;
  }
  body .about .container .go a {
    padding: 0 15%;
  }
  body .about .container .contain {
    width: 95%;
    height: auto;
  }
  body .about .container .myWorks h5 {
    font-size: 1.5rem;
  }
  body .about .container .myWorks h4 {
    font-size: 2rem;
  }
  body .about .container .myWorks .works-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  body .about .container .myWorks .works-wrapper .work-item img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}
@media all and (max-width: 576px) {
  body {
    position: relative;
  }
  body h2 {
    font-size: 36px;
  }
  body h3 {
    font-size: 26px;
  }
  body h4 {
    font-size: 18px;
  }
  body h5 {
    font-size: 28px;
  }
  body p {
    font-size: 18px;
  }
  body nav {
    width: 100%;
    height: auto;
  }
  body nav ul {
    width: 100%;
    height: auto;
  }
  body .container {
    width: 100%;
    height: auto;
  }
  body .section-1 {
    padding-top: 15%;
  }
  body .section-1 .container #redline svg {
    width: 80%;
    height: auto;
  }
  body .section-2 .container .blobs {
    grid-template-columns: repeat(6, 1fr);
  }
  body .section-2 .container .blobs .blob:nth-child(1) {
    grid-area: 1/1/1/6;
  }
  body .section-2 .container .blobs .blob:nth-child(2) {
    grid-area: 2/2/2/7;
  }
  body .section-2 .container .blobs .blob:nth-child(3) {
    grid-area: 3/1/3/6;
  }
  body .section-2 .container .blobs .blob:nth-child(4) {
    grid-area: 4/2/4/7;
  }
  body .section-2 .container .chill .chat {
    top: 5%;
    left: 30%;
  }
  body .section-2 .container .chill .chat p {
    padding: 5px 15px;
    border-radius: 2rem;
  }
  body .section-2 .container .chill .chat p::after {
    border-width: 10px 13px;
    bottom: -10%;
  }
  body .section-2 .container .chill img {
    width: 100%;
    height: auto;
  }
  body .section-3 .container p {
    padding-top: 5px;
    padding-bottom: 10px;
  }
  body .section-3 .container h5 {
    font-size: 1.2rem;
  }
  body .service {
    width: 95%;
    height: auto;
  }
  body .service .container {
    width: 100%;
    height: auto;
  }
  body .service .container .service-box {
    border-radius: 2rem;
  }
  body .service .container .service-box::before {
    border-width: 0 25px 12.5px 25px;
    top: -10px;
  }
  body .service .container .service-box .service-groups {
    grid-template-columns: repeat(2, 1fr);
  }
  body .service .container .service-box .service-groups .service-item {
    text-align: justfy;
  }
  body .service .container .service-box .service-groups .service-item::after, body .service .container .service-box .service-groups .service-item::before {
    content: none;
  }
  body .service .container .service-box .service-groups .service-item h5 {
    font-size: 1.2rem;
  }
  body .price {
    width: 95%;
    height: auto;
  }
  body .price .container .price-description {
    width: 100%;
    height: auto;
  }
  body .price .container .price-groups .price-items .price-container .price-item {
    margin: 5% auto;
  }
  body .price .container .price-groups .price-items .price-container .price-item .items {
    font-size: 1.2rem;
  }
  body .price .container .price-groups .price-items .price-container .price-item .items .item:first-child {
    text-align: left;
  }
  body .price .container .price-groups .price-items .price-container .item-1 h4 {
    font-size: 2rem;
  }
  body .price .container .price-groups .price-items .price-container .item-1 .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.5rem;
  }
  body .price .container .price-groups .price-items .price-container .item-1 .items .item:first-child {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  body .price .container .price-groups .price-items .price-container .item-1 .items .item:nth-child(2) {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    text-align: right;
  }
  body .about .container .go a {
    padding: 5% 15%;
  }
  body .about .container .myWorks h5 {
    font-size: 1rem;
  }
  body .about .container .myWorks h4 {
    font-size: 1.4rem;
  }
}