:root {
  --font-basic: "Roboto", sans-serif;
	--font-fancy: "Rajdhani", serif;
  --transition: ease-in-out .3s;
  --padding-side: 20px;
  --padding-top: 80px;
      
	/* Generated Color Variables - import code for CVG: #16697a,blue-dark|#489FB5,blue|#82C0CC,blue-light|#EDE7E3,cream|#FFA62B,orange|#b61b60,magenta */

	--blue-dark-hex: #16697a;
	--blue-dark-rgb: rgb(22, 105, 122);
	--blue-dark-rgbv: 22, 105, 122;
	--blue-dark-hsl: hsl(190, 69%, 28%);
	--blue-dark-hslv: 190, 69%, 28%;
	--blue-dark-hslvh: 190;
	--blue-dark-hslvs: 69%;
	--blue-dark-hslvl: 28%;
	--blue-dark-hslwl: 190, 69%;

	--blue-hex: #489FB5;
	--blue-rgb: rgb(72, 159, 181);
	--blue-rgbv: 72, 159, 181;
	--blue-hsl: hsl(192, 43%, 50%);
	--blue-hslv: 192, 43%, 50%;
	--blue-hslvh: 192;
	--blue-hslvs: 43%;
	--blue-hslvl: 50%;
	--blue-hslwl: 192, 43%;

	--blue-light-hex: #82C0CC;
	--blue-light-rgb: rgb(130, 192, 204);
	--blue-light-rgbv: 130, 192, 204;
	--blue-light-hsl: hsl(190, 42%, 65%);
	--blue-light-hslv: 190, 42%, 65%;
	--blue-light-hslvh: 190;
	--blue-light-hslvs: 42%;
	--blue-light-hslvl: 65%;
	--blue-light-hslwl: 190, 42%;

	--cream-hex: #EDE7E3;
	--cream-rgb: rgb(237, 231, 227);
	--cream-rgbv: 237, 231, 227;
	--cream-hsl: hsl(24, 22%, 91%);
	--cream-hslv: 24, 22%, 91%;
	--cream-hslvh: 24;
	--cream-hslvs: 22%;
	--cream-hslvl: 91%;
	--cream-hslwl: 24, 22%;

	--orange-hex: #FFA62B;
	--orange-rgb: rgb(255, 166, 43);
	--orange-rgbv: 255, 166, 43;
	--orange-hsl: hsl(35, 100%, 58%);
	--orange-hslv: 35, 100%, 58%;
	--orange-hslvh: 35;
	--orange-hslvs: 100%;
	--orange-hslvl: 58%;
	--orange-hslwl: 35, 100%;

	--magenta-hex: #b61b60;
	--magenta-rgb: rgb(182, 27, 96);
	--magenta-rgbv: 182, 27, 96;
	--magenta-hsl: hsl(333, 74%, 41%);
	--magenta-hslv: 333, 74%, 41%;
	--magenta-hslvh: 333;
	--magenta-hslvs: 74%;
	--magenta-hslvl: 41%;
	--magenta-hslwl: 333, 74%;

/* Generated Color Variables - END */

  --shadow: 1px 1px 60px 0px rgb(0 0 0 / 20%);
  --shadow-light: 1px 1px 40px 0px rgb(0 0 0 / 20%);
}
  
  * {
    box-sizing: border-box;
  }
  
  html {
    font-size: 18px;
    scroll-behavior: smooth;
  }
  
body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-size: var(--font-basic);
  background: #fff;
  font-family: var(--font-basic);
  padding-top: 80px;
  background: linear-gradient(136deg,rgba(249, 245, 255, 1) 0%, rgba(237, 244, 255, 1) 100%);
}
  
.container {
  max-width: 1440px;
  margin: 0 auto;
}

.def-section {
  padding: var(--padding-top) var(--padding-side);
}

.def-section:not(.w-bg) + .def-section:not(.w-bg) {
  padding-top: 40px;
}
  
img {
  height: auto;
  max-width: 100%;
  display: block;
  font-size: 0;
  color: rgba(0, 0, 0, 0);
}
  
*:first-child {
  margin-top: 0;
}
  
*:last-child {
  margin-bottom: 0;
}
  
a {
  color: #000;
}
  
h1, h2, h3, h4, h5 {
  font-family: var(--font-fancy);
  font-weight: 700;
  line-height: 1.05;
}
  
h1 {
  font-size: 2.85rem;
}
  
.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
  
.col-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
  
.col-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.btn {
  color: #fff;
  transition: var(--transition);
  background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 100%);
  padding: 13px 20px;
  display: flex;
  min-width: 160px;
  line-height: 1;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-fancy);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.btn:not(.clear) {
  background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 50%);
  background-size: 200% 100%;
  background-position: 0 50%;
}

.btn:not(.clear):hover {
  background-position: 100% 50%;
}

header {
  box-shadow: var(--shadow-light);
  padding: 0 var(--padding-side);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 666;
}

.header-inner-wrap {
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
}

.logo-wrap {
  display: flex;
  gap: 10px;
  text-decoration: none;
  align-items: center;
  line-height: 1.15;
}

.logo-wrap .img-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 100%);
  border-radius: 6px;
}

.logo-wrap .img-wrap img {
  filter: invert(1);
}

.site-name-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-name-wrap .name {
  background-clip: text;
  background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 100%);
  color: rgba(0, 0, 0, 0);
  font-weight: 700;
  letter-spacing: .25px;
  font-size: 1.2rem;
}

.site-name-wrap .site-desc {
  color: #777;
  font-size: .8rem;
}

.header-right-side {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
}

.menu-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu.main-menu {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu.main-menu .level-1 {
  display: none;
}

.menu.main-menu a {
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-fancy);
  line-height: 1.2;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
}

.menu.main-menu a:hover,
.menu.main-menu .active > a {
  color: #6c44ea;
}

.mobile-menu-btn {
  display: none;
}

.fancy-header {
  position: relative;
  padding-left: 1.3em;
  background-size: 1em auto;
  background-repeat: no-repeat;
  background-position: 0 50%;
  margin: 0;
  text-transform: uppercase;
  font-size: 2.5rem;
}

.fancy-header::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  content: " ";
  background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px;
}

.fancy-header::after {
  display: inline-block;
  width: 1em;
  height: 1em;
  content: " ";
  background-image: url('../images/qr-code.svg');
  position: absolute;
  background-size: 70% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  left: 0;
  top: 0;
  filter: invert(1);
}

.fancy-header.center {
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.fancy-header + .services-list {
  margin-top: 50px;
}

.services-list {
  gap: 20px;
}

.services-list .item {
  border-radius: 20px;
  padding: 20px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  gap: 30px;
  box-shadow: var(--shadow-light);
  background-color: #fff;
}

.services-list .item:hover {
  box-shadow: var(--shadow);
  border-color: var(--orange-hex);
}

.services-list .item .icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-list .item:hover .icon-wrap {
  background-color: #fff;
}

.services-list .item .btn,
.btn.clear {
  width: fit-content;
  justify-content: center;
  padding: 2px;
  height: 44px;
}

.btn.clear span.btn-inner {
  padding: 11px 18px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  transition: var(--transition);
  width: 100%;
  height: 100%;
}

.btn.clear:hover span.btn-inner,
.list.list-articles .post:hover .btn span.btn-inner,
.services-list .item:hover .btn span.btn-inner {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}

.services-list .item .link-more {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.services-list .item .btn-wrap {
  display: flex;
  justify-content: flex-end;
}

.list.list-articles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 50px;
}

.list.list-articles .post {
  padding: 30px 25px;
  background-color: #fff;
  transition: var(--transition);
  border-radius: 20px;
  position: relative;
  border: 1px solid #e0e0e0;
  transition: var(--transition);
  padding-bottom: 120px;
  overflow: clip;
}

.list.list-articles .post .img-wrap {
  display: flex;
  overflow: clip;
  width: calc(100% + 50px);
  margin: -30px -25px;
  margin-bottom: 0;
}

.list.list-articles .post .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list.list-articles .post h3 {
  min-height: 2.5em;
  line-height: 1.25;
  font-size: 1.5rem;
}

.list.list-articles .post .link-wrap {
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  position: absolute;
  bottom: 30px;
  width: calc(100% - 60px);
  left: 30px;
  align-items: center;
}

.list.list-articles .post .link-more {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.generator-outer-wrap {
  box-shadow: var(--shadow-light);
  padding: 30px 0;
  position: relative;
  border-radius: 20px;
  border-top-left-radius: 0;
}

.perex-wrap + .generator-outer-wrap {
  margin-top: 90px;
}

.services-tabs-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 2px;
  left: 0;
  bottom: 100%;
  position: absolute;
}

.services-tabs-wrap::after {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  height: 30px;
  background-color: #fff;
  pointer-events: none;
  content: " ";
}

.services-tabs-wrap .service-tab {
  font-weight: 600;
  padding: 10px 25px;
  line-height: 1;
  background-color: #fff;
  transition: var(--transition);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  cursor: pointer;
  background-color: var(--cream-hex);
}

.services-tabs-wrap .service-tab:hover {
  padding-top: 15px;
}

.services-tabs-wrap .service-tab.active {
  box-shadow: var(--shadow-light);
  padding-top: 20px;
  background-color: #fff;
  position: relative;
}

.generator-cont .fancy-header {
  margin-bottom: 20px;
  margin-top: 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.generator-inner-wrap {
  display: grid;
  gap: 50px;
  grid-template-columns: auto 460px;
  padding: 0 40px;
}

.settings-inner-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  column-gap: 60px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 25px;
}

.form-wrap.checkbox,
.form-wrap.color {
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.form-wrap label {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
}

.form-wrap .input-wrap input,
.form-wrap .input-wrap textarea,
.form-wrap .input-wrap select {
  padding: 10px;
  line-height: 1;
  border: 1px solid #e0e0e0;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  resize: none;
  background-color: #fff;
  transition: var(--transition);
  border-radius: 8px;
}

.form-wrap .input-wrap input:focus,
.form-wrap .input-wrap textarea:focus {
  outline: none;
  border-color: #6c44ea;
}

.form-wrap .input-wrap input[type="color"] {
  width: 48px;
  height: 48px;
  padding: 4px;
}

.form-wrap .input-wrap input[type="checkbox"] {
  padding: 0;
  width: auto;
  transform: scale(2,2);
}

#qr-img {
  border: 2px dashed #c0c0c0;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

#qr-img img {
  max-width: 100%;
  height: auto !important;
}

.fake-qr-img {
  opacity: .15;
}

.btn-wrap,
.btns-more-wrap {
  display: flex;
  justify-content: center;
}

.qr-image-side .btn-wrap {
  margin-top: 25px;
}

.btn-wrap .btn {
  display: flex;
  justify-content: center;
}

.list.list-articles + .btns-more-wrap {
  margin-top: 30px;
}

.list.list-articles + .btns-more-wrap .btn {
  min-width: 200px;
  justify-content: center;
}

.main-text > p,
.main-text > ul,
.main-text > ol,
.main-text > h1,
.main-text > h2,
.main-text > h3,
.main-text > h4,
.main-text > h5 {
  max-width: 950px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-sp-cont {
  padding-top: 40px;
}

.top-sp-cont h1 {
  margin-top: 10px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: .9rem;
  text-align: center;
}

.breadcrumbs li {
  position: relative;
  width: fit-content;
}

.breadcrumbs a {
  transition: var(--transition);

}

.breadcrumbs a:hover {
  color: var(--orange-hex);
}

.breadcrumbs img {
  filter: brightness(0);
  transition: var(--transition);
}

.breadcrumbs a:hover img {
  filter: brightness(1);
}

.breadcrumbs li::before {
  content: "⮞";
  font-family: var(--font-fancy);
  color: #444;
  position: absolute;
  top: 8px;
  left: -23px;
  font-size: .7rem;
  line-height: 1;
  font-weight: 600;
}

.breadcrumbs li:first-child::before {
  display: none;
}

.top-sp-cont h1 {
  text-align: center;
}

.perex-wrap {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body table {
  margin-left: auto;
  margin-right: auto;
  max-width: 950px;
}

.article-body table.big {
  margin-left: 0;
  margin-right: 0;
  max-width: unset;
  width: 100%;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table td {
  border: 1px solid #d2d2d2;
  padding: 10px;
  line-height: 1.25;
}

table tr:nth-child(2n) td {
  background-color: var(--cream-hex);
}

table thead th {
  text-align: left;
  padding: 10px;
  line-height: 1.25;
  color: #fff;
  background-color: var(--blue-dark-hex);
  border: 1px solid #fff;
}

.article-detail-img {
  display: flex;
  border-radius: 16px;
  overflow: clip;
  margin-bottom: 40px;
}

article .top-sp-cont {
  padding-bottom: 0;
}

.list.list-articles:first-child {
  margin-top: 0;
}

.p-blog .top-sp-cont {
  padding-bottom: 0;
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  margin-top: 40px;
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--cream-hex);
  border-radius: 16px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: var(--shadow-light);
  width: 100%;
}

.faq-item .question_name {
  margin: 0;
  padding: 20px;
  padding-right: 60px;
  cursor: pointer;
  position: relative;
  font-size: 1.3rem;
}

.faq-text {
  display: none;
}

.faq-text-internal {
  padding: 20px;
}

.faq-item .question_name::after {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  font-weight: 600;
  font-size: 2rem;
  line-height: 30px;
  content: "+";
  color: #fff;
  background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 100%);
  text-align: center;
  border-radius: 4px;
}

.faq-item.opened .question_name::after {
  content: "-";
  color: #6c44ea;
  background-color: var(--cream-hex);
  background-image: none;
}

.generator-cont .perex-text {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  color: #222;
}

.generator-wrap {
  --col-gap: 40px;

  display: grid;
  grid-template-columns: calc(50% - (var(--col-gap) / 2)) calc(50% - (var(--col-gap) / 2));
  gap: var(--col-gap);

  margin-top: 40px;
}

.gen-left-side,
.gen-right-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gen-tabs-wrap {
  --col-gap: 20px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--col-gap);
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: var(--shadow-light);
}

.gen-tabs-wrap .gen-tab {
  flex: 0 0 calc(33.3333% - ((2 * var(--col-gap)) / 3));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  gap: 10px;
}

.gen-tabs-wrap .gen-tab img {
  width: 24px;
  height: auto;
  transition: var(--transition);
  filter: grayscale(1) opacity(.5);
}

.gen-tabs-wrap .gen-tab.active img {
  filter: grayscale(0) opacity(1);
}

.gen-tab {
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  cursor: pointer;
  transition: var(--transition);
}

.gen-tab.active {
  border-color: #6c44ea;
}

.gen-tab.active .service-name {
  color: #6c44ea;
}

.gen-tab:hover {
  border-color: #6c44ea;
}

.qr-image-wrap {
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: var(--shadow-light);
}

.gen-data-wrap {
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: var(--shadow-light);
}

.qr-settings-wrap {
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: var(--shadow-light);
}

.how-to-use-wrap {
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: var(--shadow-light);
}

.how-to-use-wrap ol li {
  margin-bottom: 5px;
}

.how-to-use-wrap ol li::marker {
  color: #6c44ea;
  font-weight: 600;
}

footer {
  background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 50%);
  color: #fff;
  padding: 0 var(--padding-side);
}

.footer-main {
  padding-top: 60px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-main .footer-col {
  flex: 0 1 400px;
}

.footer-main .footer-col .logo-wrap .img-wrap {
  background-color: #fff;
  background-image: none;
}

.footer-main .footer-col .logo-wrap .img-wrap img {
  filter: none;
}

.footer-main .footer-col .site-name-wrap .name {
  background-image: none;
  background-clip: unset;
  color: #fff;
}

.footer-text {
  font-size: .85rem;
  margin-top: 30px;
}

.footer-main .footer-col h2 {
  margin-bottom: 45px;
}

.footer-main .footer-col h2 a {
  color: inherit;
  text-decoration: none;
}

.footer-main .footer-col h2 a:hover {
  text-decoration: underline;
}

.footer-main .footer-col ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-main .footer-col ul a {
  color: inherit;
}

.footer-main .footer-col ul a:hover {
  text-decoration: none;
}

.footer-col.contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.footer-contact-text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 30px;
}

.footer-col.contact-col a {
  color: inherit;
  font-weight: 500;
  font-size: 1.15;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col.contact-col a img {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .6);
  margin-top: 40px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .75);
}

@media(max-width: 1200px) {
  .services-list {
    grid-template-columns: 1fr 1fr;
  }

  .list.list-articles {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 1024px) {
  .mobile-menu-btn {
    font-size: 18px;
    font-weight: 700;
    background-color: transparent;
    border: none;
    outline: none;
    display: block;
    width: 45px;
    height: 45px;
    z-index: 9;
    cursor: pointer;
    transition: ease-in-out .5s;
    background-image: linear-gradient(90deg,rgba(147, 51, 234, 1) 0%, rgba(37, 99, 235, 1) 100%);
    border-radius: 3px;
    position: relative;
  }

  .mobile-menu-btn .line {
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 10px;
    transition: all 0.3s;
  }

  .mobile-menu-btn .line.first {
    transform: rotate(0deg);
    top: 15px;
  }

  .mobile-menu-btn .line.second {
    display: block;
    top: 23px;
  }

  .mobile-menu-btn .line.third {
    transform: rotate(0deg);
    top: 31px;
  }

  .mobile-menu-btn.opened .line.first {
    top: 22px;
    transform: rotate(45deg);
  }

  .mobile-menu-btn.opened .line.second {
    display: none;
  }

  .mobile-menu-btn.opened .line.third {
    top: 22px;
    transform: rotate(-45deg);
  }

  .menu-wrap {
    display: none;
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--blue-dark-hex);
    top: 75px;
    text-align: center;
  }

  .header-right-side .btn {
    margin-top: 15px;
    justify-content: center;

    display: none;
  }

  .main-menu {
    display: flex;
    flex-direction: column;
  }

  .generator-inner-wrap {
    display: flex;
    flex-direction: column;
  }

  .fancy-header {
    font-size: 1.8rem;
  }

  .generator-cont:first-child {
    padding-top: 40px;
  }

  .generator-outer-wrap {
    padding-top: 0;
  }

  .services-tabs-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    bottom: 0;
    margin-bottom: 20px;
  }

  .services-tabs-wrap .service-tab {
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0);
  }

  .services-tabs-wrap .service-tab.active {
    color: var(--orange-hex);
    padding-top: 10px;
    box-shadow: none;
    border-color: #cecece;
  }

  .services-tabs-wrap::after {
    display: none;
  }

  .generator-inner-wrap {
    padding: 0 20px;
    gap: 20px;
  }

  .generator-wrap {
    display: flex;
    flex-direction: column;
  }
}

@media(max-width: 550px) {
  .services-list {
    display: flex;
    flex-direction: column;
  }

  .list.list-articles {
    display: flex;
    flex-direction: column;
  }

  .form-wrap.checkbox,
  .form-wrap.color {
    padding: 0;
    margin-bottom: 0;
  }

  .form-wrap.checkbox .input-wrap,
  .form-wrap.color .input-wrap {
    width: auto;
  }

  .form-wrap label {
    flex: 0 0 auto;
    width: 100%;
  }

  .services-tabs-wrap {
    grid-template-columns: 1fr 1fr;
  }
}