:root {
  --body-text-color: #34495E;
  --theme-color: rgba(114, 124, 245, 1);
  --scanner-border-color: rgba(114, 124, 245, 0.7);
  --scanner-bg-color: rgba(114, 124, 245, 0.1);
  /* #727cf5 */
  --border-color: #E6E7E9;
  --theme-bg-color: #EFEEF3;
  --light-text-color: #656565;
  --setting-bg-color: #00B894;
  --red-color: #EF0107;
  --box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(114, 124, 245, 0.12);
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Overpass, sans-serif;
  scroll-behavior: smooth;
}

/* base css */

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  height: 100%;
  overflow-x: hidden;
}

h1 {
  font-weight: 800;
  color: var(--body-text-color);
  text-align: center;
}

h2 {
  color: #2d55ff;
  margin: 20px 0;
  text-align: center;
}

div,
span,
label {
  color: var(--body-text-color);
}

label {
  font-size: 16px;
  font-weight: 500;
}

p {
  line-height: 24px;
}

p span {
  background-color: #F3F4F6;
  padding: 4px;
  border-radius: 4px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  border: none;
  color: #fff;
  min-height: 48px;
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  word-break: break-word;
}

button:hover {
  opacity: 0.9;
}

.text-center {
  margin: 12px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--body-text-color);
  text-align: center;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.seo-content ul li {
  margin-left: 40px;
}

@media (max-width: 768px) {
  .text-center {
    width: 100%;
  }
}

/* header section css */

header {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  font-size: 28px;
  font-weight: 700;
  width: calc(100% - 120px);
  margin: 0 auto;
}

nav a {
  position: relative;
}

nav a:hover {
  text-decoration: none;
}

nav a span {
  color: var(--body-text-color);
}

.lang-options {
  height: 40px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.lang-options:hover {
  border-color: var(--theme-color);
}

.lang-options li {
  visibility: hidden;
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  width: 100%;
  padding: 0 12px;
}

.lang-options:hover li {
  visibility: visible;
  transition: all 200ms;
  border-color: var(--theme-color);
}

.lang-options li:first-of-type {
  visibility: visible;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  box-shadow: none;
  max-width: fit-content;
  text-align: end;
}

.lang-options:hover li:first-of-type {
  border-color: var(--theme-color);
  max-width: none;
}

.lang-options li:last-of-type {
  border-radius: 0 0 2px 2px;
}

.lang-options li a {
  font-size: 18px;
  line-height: 40px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--light-text-color);
  font-weight: 500;
}

.lang-options li:hover a {
  color: var(--theme-color);
}

.lang-options li:first-of-type a {
  color: var(--light-text-color);
  font-weight: 600;
}

.lang-options:hover li:first-of-type a {
  color: var(--theme-color);
}


@media (max-width: 768px) {
  nav {
    font-size: 24px;
    width: calc(100% - 20px);
  }
}

/* scanner section css */
.container {
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 0 auto;
  padding: 10px;
}

.tool-wrapper {
  height: max-content;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  max-width: 1120px;
  padding: 24px;
  box-shadow: var(--box-shadow);
}

.qr-description {
  color: #4e5d78;
  font-size: 18px;
  margin: 4px 0 16px 0;
}

.scan-btns {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--scanner-bg-color);
  height: 48px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.scan-btns button {
  text-align: center;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  color: var(--theme-color);
  cursor: pointer;
}

.camera-scanner .camerabtn-clone {
  border: none;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  color: var(--theme-color);
  cursor: pointer;
  height: 42px;
  padding: 0 12px;
  margin-top: 12px;
}

.scan-btns .activebtn,
.camera-scanner .activebtn {
  background: var(--theme-color);
  color: #fff;
}

.scanner-wrapper {
  position: relative;
  background: var(--scanner-bg-color);
  height: 250px;
  max-height: 300px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 4px;
  background: rgba(114, 124, 245, .5);
  display: none;
  align-items: center;
  justify-content: center;
}

.loading .scanner {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
}

/* moving scan line */
.loading .scanner::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffffff;
  box-shadow: 0 0 12px #ffffff, 0 0 20px #ffffff;
  animation: scanLine 1.3s linear infinite;
}

/* corner brackets */
.loading .scanner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#fff, #fff) left top/28px 4px no-repeat,
    linear-gradient(#fff, #fff) left top/4px 28px no-repeat,
    linear-gradient(#fff, #fff) right top/28px 4px no-repeat,
    linear-gradient(#fff, #fff) right top/4px 28px no-repeat,
    linear-gradient(#fff, #fff) left bottom/28px 4px no-repeat,
    linear-gradient(#fff, #fff) left bottom/4px 28px no-repeat,
    linear-gradient(#fff, #fff) right bottom/28px 4px no-repeat,
    linear-gradient(#fff, #fff) right bottom/4px 28px no-repeat;
  pointer-events: none;
}

@keyframes scanLine {
  0% {
    top: 0
  }

  100% {
    top: 100%
  }
}

.camera-scanner {
  display: flex;
  position: relative;
  border: 3px dashed var(--scanner-border-color);
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.scanner-label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 18px;
  font-weight: 600;
  color: var(--body-text-color);
  width: 100%;
  padding: 32px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

#camera-not-found {
  display: none;
}

.rescanqrbtn {
  z-index: 1;
  display: none;
  border: none;
  border-radius: 20px;
  background-color: var(--red-color);
  font-weight: 600;
  font-size: 18px;
  height: 42px;
  padding: 0 12px;
  color: #fff;
  cursor: pointer;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.rescanqrbtn img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.rescanqrbtn:hover {
  background-color: rgba(214, 48, 49, 0.9);
}

#qr-code-previewer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.image-scanner {
  display: none;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 3px dashed var(--scanner-border-color);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  cursor: pointer;
}

#uploaded-qr-previewer {
  max-width: 80%;
  max-height: 200px;
  border-radius: 6px;
  display: none;
  background-color: #fff;
  padding: 10px;
}

.image-not-found {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  text-align: center;
  background: #FFEAE9;
  border-radius: 4px;
  font-weight: 600;
  color: var(--red-color);
  padding: 8px;
  width: calc(100% - 16px);
}

.beep-wrapper {
  display: grid;
  grid-auto-flow: column;
  justify-content: end;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--body-text-color);
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--setting-bg-color);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--setting-bg-color);
}

input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.result-hinttext {
  font-size: 18px;
  line-height: 48px;
  text-align: center;
  background: var(--scanner-bg-color);
  border-radius: 4px;
  font-weight: 600;
  color: var(--body-text-color);
}

.resultarea {
  display: grid;
  gap: 16px;
  background: var(--scanner-bg-color);
  padding: 12px;
  border-radius: 5px;
  margin-top: 16px;
}

.qr-textarea {
  display: flow-root;
  gap: 4px;
  padding: 8px;
  background: #fff;
  font-weight: 500;
  color: var(--body-text-color);
  border-radius: 4px;
  word-break: break-all;
}

.qr-textarea>img {
  vertical-align: middle;
  margin-right: 8px;
}

.qr-textarea b {
  flex: 0 0 auto;
}

.qr-textarea .result-data {
  height: 100%;
}

.qr-textarea .result-data>img {
  margin-right: 8px;
  vertical-align: middle;
}

.qr-textarea .result-actionbtns {
  float: inline-end;
}

.qr-textarea .result-actionbtn {
  margin-left: 8px;
}

.qr-textarea button {
  text-align: center;
  background: var(--theme-color);
  min-height: 30px;
  min-width: 30px;
  padding: 0;

}

.qr-textarea button img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.zoomSliderContainer {
  position: absolute;
  margin: auto;
  padding: 30px 20px;
  width: 280px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sliderLabel {
  color: #fff;
  font-size: 10px;
  vertical-align: bottom;
}

.zoomSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: 0 0/0 100% no-repeat #636e72;
  border-radius: 5px;
  background-image: linear-gradient(#fff, #fff);
  margin: 0 20px;
}

.zoomSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

.zoomSlider::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

.zoomSlider::-ms-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

.zoomSlider::-webkit-slider-thumb:hover {
  background: #fff;
}

.zoomSlider::-moz-range-thumb:hover {
  background: #fff;
}

.zoomSlider::-ms-thumb:hover {
  background: #fff;
}

.zoomSlider::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: 0 0;
}

.zoomSlider::-moz-range-track {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  border: none;
  background: 0 0;
}

.zoomSlider::-ms-track {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  border: none;
  background: 0 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .qr-description {
    margin-bottom: 16px;
  }

  .scanner-wrapper {
    height: 300px;
  }
}

@media (max-width: 768px) {

  .qr-description {
    margin-bottom: 8px;
  }

  .container {
    display: block;
  }

  .hero-wrapper {
    padding: 10px;
    border-radius: 4px;
  }

  .tool-wrapper {
    padding: 12px;
  }

  .qr-scanner-area {
    display: block;
  }

  .scan-btns {
    margin-bottom: 16px;
  }

  .scanner-wrapper {
    height: 300px;
  }

  .resultarea {
    margin-top: 16px;
  }

  #qr-wrapper {
    margin-bottom: 16px;
  }

  .ad-area {
    overflow: hidden;
    max-width: 100%;
  }
}


/* feedback section css*/
.customCheckbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #333;
  user-select: none;
}

.customCheckbox input {
  display: none;
}

.customCheckbox .checkmark {
  background-color: #eee;
  width: 36px;
  height: 22px;
  border: 2px solid #7c7cf5;
  border-radius: 100px;
  position: relative;
  transition: all 0.2s ease;
}

.customCheckbox input:checked+.checkmark {
  background-color: #7c7cf5;
}

.customCheckbox .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.customCheckbox input:checked+.checkmark::after {
  opacity: 1;
}

.other-tools {
  width: 100%;
  max-width: 600px;
  text-align: center;
  background: rgba(114, 124, 245, 0.05);
  margin: 0 auto 16px auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 48px;
  border-radius: 4px;
  color: var(--light-text-color);
  border: 2px solid var(--theme-color);
}

.showFeedback {
  display: none;
  min-width: 100%;
  border-radius: 4px;
  height: 48px;
  font-size: 18px;
  cursor: pointer;
  color: rgba(114, 124, 245, 0.8);
  max-width: 600px;
  font-weight: 600;
  border: 1px dashed rgba(114, 124, 245, 0.4);
  background: #f7f8ff;
  margin-top: 16px;
}

#dialogBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.dialogWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dialogContent {
  padding: 20px;
  width: 600px;
  background-color: #fff;
  border-radius: 5px;
}

.feedbackHeading {
  margin: 0;
  font-size: 20px;
}

.divider {
  margin: 20px 0;
  border-top: 1px solid #dfe6e9;
}

.feedbackDesc {
  text-align: center;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #4d4d4d;
}

.feedbackTextarea {
  min-height: 100px;
  width: 100%;
  outline: 0;
  border: 1px solid #b2bec3;
  border-radius: 4px;
  margin: 10px 0 20px;
  padding: 2px 6px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
}

.feedbackTextarea:focus {
  border: 1px solid rgba(114, 124, 245, 0.5);
}

.feedbackBtns {
  text-align: right;
}

.feedbackBtn {
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  height: 40px;
  cursor: pointer;
}

.cancelBtn {
  color: #70757a;
  background: #f2f2f2;
}

.sendBtn {
  background: var(--theme-color);
  color: #fff;
  margin-left: 20px;
}

.thanksContent {
  padding: 20px;
  width: 600px;
  background-color: #fff;
  border-radius: 5px;
  display: none;
  position: relative;
  text-align: center;
}

.thanksTitle {
  margin-top: 0;
  margin-bottom: 10px;
}

.thanksDesc {
  font-size: 20px;
  font-weight: 600;
  color: #4d4d4d;
}

.homeBtn {
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background: #006992;
  color: #fff;
  border-radius: 4px;
  margin-top: 30px;
  cursor: pointer;
}

.feedback-fixes {
  border: 1px solid #d5ddff;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.feedback-fix-heading {
  margin: 0px;
  background-color: #285aeb;
  color: #fff;
  border-radius: 4px 4px 0px 0px;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0px;
}

.feedback-fix-heading img {
  height: 18px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.feedback-fix {
  padding: 12px 20px;
  background-color: #d5ddff;
  border-radius: 4px;
  margin: 0px 12px 16px 12px;
}

.feedback-fix-title {
  color: #2d55ff;
  font-weight: 600;
}

.feedback-fix-title img {
  height: 24px;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-left: -4px;
}

.feedback-fix-text {
  color: var(--body-text-color);
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 991px) {
  .tool-wrapper {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .showFeedback {
    font-size: 18px;
  }

  .dialogWrapper {
    padding: 10px;
    width: 100%;
  }

  .dialogContent {
    width: 100%;
  }

  .feedbackTextarea {
    min-height: 120px;
    padding: 10px;
  }

  .thanksContent {
    width: 100%;
  }

  .feedback-fix {
    padding: 10px;
    margin: 0px 10px 16px 10px;
  }
}

/* seo section css */
.main-wrapper {
  max-width: 1120px;
  margin: auto;
  padding: 10px;
}

.seo-content {
  margin: 16px 0 20px;
}

.seo-content p {
  font-size: 16px;
  margin-top: 10px;
  color: var(--body-text-color);
}

.seo-content p:last-child {
  font-weight: 600;
}

/* features section css */

.features-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.feature-content {
  border-radius: 4px;
  width: 48%;
  padding: 10px;
  text-align: center;
}

.feature-icon {
  display: flex;
  position: relative;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: auto;
  z-index: -1;
}

.feature-icon img {
  display: block;
  margin: auto;
  width: 35px;
}

.first-icon {
  background-color: #639;
}

.second-icon {
  background-color: #006992;
}

.third-icon {
  background-color: #f62459;
}

.forth-icon {
  background-color: #2d55ff;
}

.fifth-icon {
  background-color: #d91e18;
}

.sixth-icon {
  background-color: #f15a22;
}

.feature-heading {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 10px;
  color: var(--body-text-color);
}

.feature-text {
  font-size: 16px;
  color: var(--body-text-color);
}

@media (max-width: 768px) {
  .features-content {
    margin-bottom: 0;
  }

  .feature-content {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* how to scan section css */

.how-to-uses {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--body-text-color);
}

.how-to-use {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.how-to-use .left {
  flex: 1;
}

.how-to-use .left img {
  width: 100%;
}

.how-to-use .right {
  flex: 1;
}

.how-to-use .right p {
  font-size: 18px;
  margin-top: 12px;
  line-height: 1.5;
}

.how-to-point {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
}

.how-to-point span {
  aspect-ratio: 1;
  padding-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #fff;
}

.how-to-use ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 40px;
  margin-top: 12px;
}

.how-to-use li {
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 768px) {
  .how-to-use:nth-child(2) {
    flex-direction: column-reverse;
  }

  .how-to-use {
    flex-direction: column;
    gap: 16px;
  }

  .how-to-use .left {
    width: 100%;
  }

  .how-to-use .right {
    padding: 0px;
  }
}

/* qr code formats */
.intro {
  font-weight: 500;
}

.formats {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.format {
  display: flex;
  gap: 16px;
}

.left {
  height: fit-content;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f1f2fe;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.left:hover .btns {
  opacity: 1;
}

.format .img {
  overflow: hidden;
  width: 76px;
  height: 76px;
  margin: 4px;
}

.format .img img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
}

.format .name {
  width: max-content;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--body-text-color);
  background: #e3e5fd;
  padding: 0 6px;
  border-radius: 0 0 4px 4px;

}

.format .btns {
  width: 100%;
  height: 100%;
  background: rgba(114, 124, 245, 0.3);
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 4px;
}

.format .btns button {
  width: 48px;
  min-height: 30px;
  height: 30px;
  font-size: 14px;
  background-color: var(--theme-color);
}

.format .btns button:hover {
  background-color: rgba(114, 124, 245, 0.9);
}

.format .btns button img {
  vertical-align: middle;
}

.example {
  font-weight: 600;
  margin-top: 8px;
  word-break: break-all;
}

.example span {
  font-weight: 400;
  background: var(--theme-bg-color);
}

@media (max-width: 768px) {
  .format {
    flex-direction: column;
    gap: 8px;
  }

  .format .left {
    width: fit-content;
    margin: 0 auto;
  }

  .format .name {
    text-align: center;
  }
}

/* footer section css*/

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 10px;
  border-top: 1px solid #dfe6e9;
  border-bottom: 1px solid #dfe6e9;
}

.footer-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.policy-link a {
  margin-right: 20px;
}

.follow-us,
.qrcode-trademark {
  width: 100%;
  text-align: center;
}

.follow-us {
  margin: 8px 0 20px 0;
}

.follow-us span {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.follow-icon {
  display: inline;
  padding: 6px 6px 6px 8px;
  margin-right: 10px;
  border-radius: 5px;
}

.facebook {
  background-color: #4267b2;
}

.twitter {
  background-color: #1da1f2;
}

.instagram {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
}

.pinterest {
  background-color: #e60023;
}

.linkedin {
  background-color: #0077b5;
  padding-right: 8px;
}

.follow-icon svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.qrcode-trademark {
  margin: 10px 0;
}

.contact-wrapper {
  width: 100vw;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.email-text {
  color: #285aeb;
}


@media (max-width: 768px) {
  .contact-wrapper {
    padding: 20px;
  }
}

.view-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
}