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

@font-face {
  font-family: "sans";
  src: url("./fonts/IRANSansWebFaNum-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "sans";
  src: url("./fonts/IRANSansWebFaNum-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "sans";
  src: url("./fonts/IRANSansWebFaNum-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "sans";
  src: url("./fonts/IRANSansWebFaNum.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sans";
  src: url("./fonts/IRANSansWebFaNum-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "sans";
  src: url("./fonts/IRANSansWebFaNum-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "ArialBlack";
  src: url("./fonts/Arial_Black.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html,
body {
  padding: 0;
  margin: 0;
  max-width: 100vw;
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
}

body {
  font-family: "sans";
  font-size: 14px;
  line-height: 1.8;
}

main {
  margin-top: 3rem;
}

a {
  padding: 0;
  margin: 0;
}

P {
  font-weight: 300;
}

input,
textarea,
select {
  font-family: "sans";
}

.border-default {
  border: solid 1px rgba(155, 155, 155, 0.4);
}

.span-alert {
  color: #ff671c !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.text-primary {
  color: #67009b;
}

.text-color {
  color: #000000 !important;
}

.bg-primary {
  background-color: #67009b !important;
}

.bg-secondary {
  background-color: #ff671c !important;
}

.bg-divider {
  background-color: #f5f5f5;
}

.bg-seperator {
  background-color: #f5f5f5;
}

.text-white {
  color: #fff !important;
}

.font-size-1x {
  font-size: 1em !important;
}
.font-size-2x {
  font-size: 1.25em !important;
}
.font-size-3x {
  font-size: 1.5em !important;
}
.font-size-4x {
  font-size: 1.75em !important;
}
.font-size-5x {
  font-size: 2em !important;
}
.font-size-6x {
  font-size: 2.5em !important;
}
.font-size-7x {
  font-size: 3em !important;
}
@media only screen and (max-width: 768px) {
  .font-size-2x {
    font-size: 1.1em !important;
  }
  .font-size-3x {
    font-size: 1.3em !important;
  }
  .font-size-4x {
    font-size: 1.6em !important;
  }
  .font-size-5x {
    font-size: 1.9em !important;
  }
  .font-size-6x {
    font-size: 2.2em !important;
  }
  .font-size-7x {
    font-size: 2.6em !important;
  }
}

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 577px) {
  .container {
    max-width: 700px;
  }
}
@media only screen and (min-width: 769px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (min-width: 993px) {
  
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1202px) {
  .container {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1401px) {
  .container {
    max-width: 1320px;
  }
}

.wrapper {
  margin-bottom: 2rem;
}
.wrapper-md {
  margin-bottom: 7rem;
}
.wrapper-lg {
  margin-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .wrapper-md {
    margin-bottom: 5rem;
  }
  .wrapper-lg {
    margin-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .wrapper-lg {
    margin-bottom: 5rem;
  }
}

.w-100 {
  width: 100% !important;
}
.w-75 {
  width: 75% !important;
}
.w-50 {
  width: 50% !important;
}
.w-25 {
  width: 25% !important;
}
.w-0 {
  width: 0% !important;
}

.nowrap {
  white-space: nowrap;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-grow-2 {
  flex-grow: 2 !important;
}
.flex-grow-3 {
  flex-grow: 3 !important;
}
.flex-grow-4 {
  flex-grow: 4 !important;
}
.flex-dir-col {
  flex-direction: column;
}

.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-table {
  display: table !important;
}

.h-100 {
  height: 100% !important;
}

.align-items-center {
  align-items: center !important;
}
.align-items-start {
  align-items: start !important;
}
.align-items-end {
  align-items: end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.ltr {
  direction: ltr;
  text-align: left;
}

img {
  max-width: 100%;
}

font-thin {
  font-weight: 300 !important;
}
font-regular {
  font-weight: 400 !important;
}
font-semi-bold {
  font-weight: 500 !important;
}
font-bold {
  font-weight: 700 !important;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.row > * {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .row {
    margin-left: -0.8rem;
    margin-right: -0.8rem;
  }
  .row > * {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
@media only screen and (max-width: 576px) {
  .row {
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
  .row > * {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}
.row.align-items-center {
  align-items: center;
}
.row.justify-content-between {
  justify-content: space-between;
}
.row.justify-content-around {
  justify-content: space-around;
}
.row.justify-content-center {
  justify-content: center;
}
.row .col-1 {
  width: 8.33333333%;
}
.row .col-2 {
  width: 16.66666667%;
}
.row .col-3 {
  width: 25%;
}
.row .col-4 {
  width: 33.3333337%;
}
.row .col-5 {
  width: 41.6666667%;
}
.row .col-6 {
  width: 50%;
}
.row .col-7 {
  width: 58.33333333%;
}
.row .col-8 {
  width: 66.66666667%;
}
.row .col-9 {
  width: 75%;
}
.row .col-10 {
  width: 83.33333333%;
}
.row .col-11 {
  width: 91.66666667%;
}
.row .col-12 {
  width: 100%;
}
@media only screen and (min-width: 577px) {
  .row .col-sm-1 {
    width: 8.33333333%;
  }
  .row .col-sm-2 {
    width: 16.66666667%;
  }
  .row .col-sm-3 {
    width: 25%;
  }
  .row .col-sm-4 {
    width: 33.3333337%;
  }
  .row .col-sm-5 {
    width: 41.6666667%;
  }
  .row .col-sm-6 {
    width: 50%;
  }
  .row .col-sm-7 {
    width: 58.33333333%;
  }
  .row .col-sm-8 {
    width: 66.66666667%;
  }
  .row .col-sm-9 {
    width: 75%;
  }
  .row .col-sm-10 {
    width: 83.33333333%;
  }
  .row .col-sm-11 {
    width: 91.66666667%;
  }
  .row .col-sm-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .row .col-md-1 {
    width: 8.33333333%;
  }
  .row .col-md-2 {
    width: 16.66666667%;
  }
  .row .col-md-3 {
    width: 25%;
  }
  .row .col-md-4 {
    width: 33.3333337%;
  }
  .row .col-md-5 {
    width: 41.6666667%;
  }
  .row .col-md-6 {
    width: 50%;
  }
  .row .col-md-7 {
    width: 58.33333333%;
  }
  .row .col-md-8 {
    width: 66.66666667%;
  }
  .row .col-md-9 {
    width: 75%;
  }
  .row .col-md-10 {
    width: 83.33333333%;
  }
  .row .col-md-11 {
    width: 91.66666667%;
  }
  .row .col-md-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 993px) {
  .row .col-lg-1 {
    width: 8.33333333%;
  }
  .row .col-lg-2 {
    width: 16.66666667%;
  }
  .row .col-lg-3 {
    width: 25%;
  }
  .row .col-lg-4 {
    width: 33.3333337%;
  }
  .row .col-lg-5 {
    width: 41.6666667%;
  }
  .row .col-lg-6 {
    width: 50%;
  }
  .row .col-lg-7 {
    width: 58.33333333%;
  }
  .row .col-lg-8 {
    width: 66.66666667%;
  }
  .row .col-lg-9 {
    width: 75%;
  }
  .row .col-lg-10 {
    width: 83.33333333%;
  }
  .row .col-lg-11 {
    width: 91.66666667%;
  }
  .row .col-lg-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1202px) {
  .row .col-xl-1 {
    width: 8.33333333%;
  }
  .row .col-xl-2 {
    width: 16.66666667%;
  }
  .row .col-xl-3 {
    width: 25%;
  }
  .row .col-xl-4 {
    width: 33.3333337%;
  }
  .row .col-xl-5 {
    width: 41.6666667%;
  }
  .row .col-xl-6 {
    width: 50%;
  }
  .row .col-xl-7 {
    width: 58.33333333%;
  }
  .row .col-xl-8 {
    width: 66.66666667%;
  }
  .row .col-xl-9 {
    width: 75%;
  }
  .row .col-xl-10 {
    width: 83.33333333%;
  }
  .row .col-xl-11 {
    width: 91.66666667%;
  }
  .row .col-xl-12 {
    width: 100%;
  }
}

.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

.fw-700 {
  font-weight: 700 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-200 {
  font-weight: 200 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 2rem !important;
}
.mb-6 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 2rem !important;
}
.mt-6 {
  margin-top: 3rem !important;
}
.mt-7 {
  margin-top: 6rem !important;
  transition: 0.5s;
}
.mt-8 {
  margin-top: 12rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.ml-4 {
  margin-left: 1.5rem !important;
}
.ml-5 {
  margin-left: 2rem !important;
}
.ml-6 {
  margin-left: 3rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mr-4 {
  margin-right: 1.5rem !important;
}
.mr-5 {
  margin-right: 2rem !important;
}
.mr-6 {
  margin-right: 3rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 2rem !important;
}
.pb-6 {
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 2rem !important;
}
.pt-6 {
  padding-top: 3rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pl-4 {
  padding-left: 1.5rem !important;
}
.pl-5 {
  padding-left: 2rem !important;
}
.pl-6 {
  padding-left: 3rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-4 {
  padding-right: 1.5rem !important;
}
.pr-5 {
  padding-right: 2rem !important;
}
.pr-6 {
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
.px-6 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.h-100 {
  height: 100% !important;
}

.rounded-1 {
  border-radius: 0.25rem;
}
.rounded-2 {
  border-radius: 0.5rem;
}
.rounded-3 {
  border-radius: 0.75rem;
}
.rounded-4 {
  border-radius: 1rem;
}
.rounded-5 {
  border-radius: 1.5rem;
}
.rounded-6 {
  border-radius: 2rem;
}
.rounded-7 {
  border-radius: 2.5rem;
}
.rounded-8 {
  border-radius: 3rem;
}
.rounded-circle {
  border-radius: 50%;
}

.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}

@media only screen and (max-width: 1201px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .flex-dir-col-lg-rev {
    flex-direction: column-reverse !important;
  }
  .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    justify-content: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media only screen and (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
}
.btn-cta {
  color: #fff;
  background: rgba(255, 166, 0, 0.78);
  padding: 0.7rem 1rem;
  border-radius: 0.3rem;
  transition: background 0.3s;
  display: block;
}
.btn-cta:hover {
  background: rgba(255, 185, 55, 0.78);
}

.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  text-decoration: none;
  background-color: #67009b;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #ff671c;
  transition: 0.4s;
}

.btn-secondary {
  text-decoration: none;
  background-color: #DF672C;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #ff671c;
  transition: 0.4s;
}

.btn-secondary-two {
  text-decoration: none;
  background-color: transparent;
  color:#ff9100;
  border: 1px solid #ff9100;
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  display: inline-block;
}

.btn-secondary-two:hover {
  background-color: #67009b;
  transition: 0.4s;
  color: #fff;
  cursor: pointer;
}

main {
  position: relative;
  z-index: 0;
}

.overlay {
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 0;
  right: 0;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobileOverlay {
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 0;
  right: 0;
}
.mobileOverlay.active {
  visibility: visible;
  opacity: 1;
}

.shop_overlay {
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 0;
  right: 0;
}
.shop_overlay.active {
  visibility: visible;
  opacity: 1;
}

.phone {
  display: inline-block !important;
  direction: ltr !important;
}

.text-justify {
  text-align: justify !important;
}

.color-primary {
  color: #67009b !important;
}

input,
select,
textarea,
button {
  resize: none;
  border: 0;
  outline: 0;
  font-family: "sans";
}

button {
  cursor: pointer;
}

.custom-input label {
  font-size: 0.95em;
  color: #878787;
  font-weight: 300;
  margin-bottom: 0.4rem;
  cursor: pointer;
}
.custom-input input,
.custom-input select,
.custom-input textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 0.25rem;
  box-shadow: none;
  background-color: #fff;
  display: inline-flex;
  font-weight: 200;
  font-size: 14px;
  height: 2.5rem;
  justify-content: flex-start;
  line-height: 1.5;
  outline: 0;
  resize: none;
  color: #878787;
  padding-bottom: calc(0.5em - 1px);
  padding-left: calc(0.75em - 1px);
  padding-right: calc(0.75em - 1px);
  padding-top: calc(0.5em - 1px);
  position: relative;
  vertical-align: top;
  transition: 0.4s;
}
.custom-input input:focus,
.custom-input select:focus,
.custom-input textarea:focus {
  border-color: #aaa;
}
.custom-input textarea {
  height: auto;
}
.custom-input select {
  padding-right: 0.9rem;
}
.custom-input.has-icon {
  position: relative;
}
.custom-input.has-icon input {
  padding-right: 2.75rem;
  position: relative;
}
.custom-input.has-icon input:focus + .input-icon {
  color: #67009b;
}
.custom-input.has-icon .input-icon {
  position: absolute;
  right: 1px;
  bottom: 1px;
  color: #878787;
  width: 2.5rem;
  height: 2.5rem;
  padding-bottom: 0.125rem;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  transition: 0.4s;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-align: center;
  white-space: nowrap;
  transition: 0.25s;
  padding: 0.4rem 1.2rem;
  height: 2.5rem;
  line-height: 1.1;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 0.25rem;
  outline: 3px solid transparent;
  font-weight: 200;
}
.custom-button.primary {
  background-color: #67009b;
  color: #fff;
}
.custom-button.primary:hover {
  outline-color: rgba(255, 177, 0, 0.4);
}
.custom-button.blue {
  background-color: #336aeb;
  color: #fff;
}
.custom-button.blue:hover {
  outline-color: rgba(51, 106, 235, 0.4);
}
.custom-button.orange {
  background-color: #67009b;
  color: #fff;
}
.custom-button.orange:hover {
  outline-color: rgba(255, 177, 0, 0.4);
}
.custom-button.light {
  background-color: rgba(0, 0, 0, 0.1);
  color: #1e1810;
}
.custom-button.light:hover {
  outline-color: rgba(0, 0, 0, 0.3);
}
.custom-button.red {
  background-color: #e62864;
  color: #fff;
}
.custom-button.red:hover {
  outline-color: rgba(230, 40, 100, 0.4);
}
.custom-button.green {
  background-color: #41b983;
  color: #fff;
}
.custom-button.green:hover {
  outline-color: rgba(65, 185, 131, 0.4);
}
.custom-button.no-shadow {
  box-shadow: unset;
}
.custom-button:focus {
  box-shadow: unset;
}

.tab_content {
  display: none;
}
.tab_content.active {
  display: block;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  color: #000000;
  outline: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1.3em;
  box-shadow: 0 5px 50px 10px rgb(87 0 167 / 15%);
}
.form-control.primary-mode {
  border-color: #67009b;
}
.form-control.secondary-mode {
  border-color: #ff671c;
}
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: rgba(0, 0, 0, 0.7);
}
.form-group {
  margin-bottom: 1.25rem;
}

/**
 * Swiper 11.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 5, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

footer {
  background: linear-gradient(to bottom, #313032, #1d1d1d);
}

.footer_top {
  display: flex;
}
.footer_bottom {
  display: grid;
  grid-template-columns: 3fr 1fr;
}
.footer_bottom .paragraph {
  text-align: justify;
  overflow: hidden;
  max-height: 11rem;
  transition: max-height 0.4s;
  color: #fff;
}
.footer_bottom_item {
  line-height: 2.25;
}
.footer_top {
  gap: 2rem;
}
.footer_top_item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem;
  border: 2px solid #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0px 2px 7px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.footer_top_item_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer_top_item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 4rem;
  height: 4rem;
}
.footer_middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer_middle_item {
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 1rem;
}
.footer_middle_item_title {
  font-size: 1.2em;
  font-weight: 700;
  border-bottom: solid 2px #fff;
  color: #fff;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer_middle_item .fa-circle {
  font-size: 0.6rem;
}
.footer_middle_item a {
  color: #fff;
}
.footer_middle_item ul {
  list-style: disc;
}
.footer_middle_item li::marker {
  color: #fff;
}
.footer_middle_item li {
  padding: 0.3rem 0rem;
}
.footer_middle_item li:hover::marker {
  color: #67009b;
}
.footer_bottom {
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer_bottom .opener {
  cursor: pointer;
  color: #67009b;
}
.footer_bottom .paragraph.active {
  max-height: 100rem;
}
.footer_bottom_item {
  flex-basis: 70%;
}
.footer_bottom_image_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  max-height: 16rem;
}
.footer_bottom_image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
}
.footer_bottom_image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 5rem;
  height: 5rem;
}
.footer_copyright {
  border-top: 2px solid rgb(255, 253, 253);
  padding-top: 1rem;
  color: #fff;
}

@media (max-width: 996px) {
  .footer_bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .footer_top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer_middle {
    grid-template-columns: 1fr 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer_middle_item {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .footer_bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .footer_bottom_item {
    text-align: center;
    padding: 1rem 0rem;
  }
  .footer_bottom_image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    justify-self: center;
  }
  .footer_copyright {
    text-align: center;
    color: #fff;
  }
}
.shopping_cart_item_container::-webkit-scrollbar {
  width: 0px;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color:  rgb(68 0 108);
}

.header {
  position: relative;
  z-index: 2;
}
.header nav {
  padding: 0.75rem 0;
}
.logo {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

svg path {
  fill: transparent;
  stroke: #ff9100;
  /* stroke-dasharray: 379.0550231933594;
  stroke-dashoffset: 379.0550231933594; */
  animation: letter-anim 4s linear forwards;
  animation-delay: 2s;
}
@keyframes small-anim {
  to {
    stroke-dashoffset: 0;
    stroke: #eee;
    stroke-width: 4px;
  }
}
@keyframes circle-animation {
  0% {
    stroke-dashoffset: 310.51519775390625;
  }

  40% {
    /* multiple the initial value of the property*/
    stroke-dashoffset: 621.0303955078124;
    stroke: #eee;
  }

  80% {
    /* initial value*4 */
    stroke-dashoffset: 1243.060791015625;
    stroke: rgb(255, 106, 0);
  }

  100% {
    stroke-dashoffset: 1243.860791015625;
    stroke: rgb(147, 101, 255);
  }
}

@keyframes letter-anim {
  to {
    stroke: #eee;
    stroke-dashoffset: 0;
    fill: #ff9100;
    stroke-width: 0px;
  }
}
@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: rgb(255, 136, 0);
    stroke: #000000;
  }
}

.header_logo {
  width: 5rem;
  height: 5rem;
  position: absolute;
  right: 0;
  top: 1rem;
}
.header_logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
}
.header_top_nav {
  display: flex;
  justify-content: end;
  align-items: center;
}
.header_top_nav .searchbargrow {
  flex-grow: 1;
}
.header-close-btn {
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  display: none;
  cursor: pointer;
}
.header_search_btn {
  margin-inline-end: 1rem;
}
.header_search_btn > * {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header_search_btn .fa-search {
  display: inline-flex;
}
.header_search_btn .fa-times {
  display: none;
}
.header_search_btn.active .fa-search {
  display: none;
}
.header_search_btn.active .fa-times {
  display: inline-flex;
}
.header_search_list {
  width: 100%;
  padding-top: 0.5rem;
  position: relative;
}
.header_search_form {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  margin-top: 1rem;
  max-width: 970px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 1rem;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s;
  gap: 1rem;
}
.header_search_form > input {
  width: calc(100% - 62px);
}
.header_search_form > button {
  height: 45px;
  width: 45px;
  font-size: 1.25em;
  background-color: transparent;
  transition: 0.3s;
}
.header_search_form > button:hover {
  color: #67009b;
}
.header_search_form #search-content-autocomplete-list {
  width: 100%;
}
.header_search_form #search-content-autocomplete-list > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.header_search_form #search-content-autocomplete-list > a:last-child {
  margin-bottom: 0;
}
.header_search_form.active {
  max-height: 200px;
  padding: 1rem;
}

.search_bar {
  position: relative;
  display: flex;
  direction: ltr;
  align-items: center;
  width: 24rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px;
}
.search_bar input[type=text] {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.2rem 0.5rem;
  font-size: 1rem;
  border-radius: 1.4rem;
}
.search_bar button[type=submit] {
  background-color: #67009b;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 20px;
}
.search_bar button[type=submit]:hover {
  background-color: #ff671c;
}

.header_main_nav {
  width: 100%;
  background-color:  rgb(68 0 108);
}
.header_main_nav > .container {
  padding-bottom: 0rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header_main_nav.activated {
  background-color: rgb(68 0 108) ;
  box-shadow: 0px 6px 8px -5px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.header_main_nav.activated > .container {
  padding-bottom: 0;
  border-bottom: transparent;
}
.header_main_nav li.mega-menu {
  position: relative;
}
.header_main_nav li.mega-menu > a {
  font-size: 1.2em;
  font-weight: 400;
  display: inline-block;
  padding: 1rem 0;
}
.header_main_nav li.mega-menu > a:hover {
  font-weight: 500;
}
.header_main_nav li.mega-menu .right_items {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f5f5f5;
  min-width: 240px;
  transform: translateY(-15px);
  opacity: 0;
  visibility: hidden;
  transition: 0.05s;
}
.header_main_nav li.mega-menu .right_items .parent > a {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  transition: 0.05s;
}
.header_main_nav li.mega-menu .right_items .parent > a:hover {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.header_main_nav li.mega-menu .right_items .parent > .sub_parent {
  position: absolute;
  background-color: #f5f5f5;
  top: 0;
  right: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 1rem;
  transform: translateX(15px);
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
.header_main_nav li.mega-menu .right_items .parent > .sub_parent img {
  display: block;
  max-width: 16rem;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header_main_nav li.mega-menu .right_items .parent > .sub_parent li {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.header_main_nav li.mega-menu .right_items .parent > .sub_parent li a {
  display: flex;
  align-items: center;
  transition: 0.3s;
  padding-bottom: 0.5rem;
}
.header_main_nav li.mega-menu .right_items .parent:hover > .sub_parent {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}
.header_main_nav li.mega-menu:hover > .right_items {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.header_main_nav li:not(.mega-menu) a {
  display: block;
  padding: 0rem 1rem;
  font-size: 1em;
  font-weight: 400;
  display: inline-block;
  transition: 0.2s;
}
.header_main_nav li:not(.mega-menu) a:hover {
  color: #67009b;
}
.header_main_nav-right {
  padding-right: 7rem;
}
.header_main_nav_left .shopping_cart {
  position: relative;
}
.header_main_nav_left .shopping_cart_item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.4rem;
  padding-bottom: 0.8rem;
  border-bottom: solid 1px #dbdbdb;
}
.header_main_nav_left .shopping_cart_item_container {
  max-height: 380px;
  overflow-y: scroll;
}
.header_main_nav_left .shopping_cart_body {
  opacity: 0;
  transition: 0.4s;
  display: none;
  position: absolute;
  top: 100%;
  margin: 0 auto;
  background: #fff;
  width: 200px;
  border-radius: 6px;
  width: -moz-max-content;
  width: max-content;
}
.header_main_nav_left .shopping_cart_body.active {
  display: block;
  opacity: 1;
  transition: 0.9s;
  padding: 1rem;
  background-color: #1e1919;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: -moz-max-content;
  width: max-content;
}
.header_main_nav_left .shopping_cart_head {
  display: flex;
  font-weight: 600;
  font-size: 1.1em;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  border-bottom: solid 1px #dbdbdb;
  padding-bottom: 0.5rem;
}
.header_main_nav_left .shopping_cart_product {
  display: flex;
  gap: 1rem;
}
.header_main_nav_left .shopping_cart_product img {
  width: 64px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
  align-self: center;
}
.header_main_nav_left .shopping_cart_product_desc {
  display: flex;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1em;
  align-items: center;
  padding-top: 1rem;
}
.header_main_nav_left .shopping_cart_product_desc:hover {
  color: #67009b;
  transition: 0.3s;
}
.header_main_nav_left .shopping_cart_price {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1em;
  justify-content: space-between;
}
.header_main_nav_left .shopping_cart_price_tirage {
  border-left: solid 1px #dbdbdb;
  padding-left: 1rem;
}
.header_main_nav_left .shopping_cart_price_number {
  padding-right: 1rem;
}
.header_main_nav_left .shopping_cart_price_icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-right: 2rem;
}
.header_main_nav_left .shopping_cart_price_icons i {
  cursor: pointer;
}
.header_main_nav_left .shopping_cart_price_icons i:hover {
  color: #67009b;
}
.header_main_nav_left .shopping_cart_price_delete {
  color: red;
}
.header_main_nav_left .shopping_cart_buttons {
  display: flex;
  gap: 0.5rem;
}
.header_main_nav_left .shopping_cart_buttons > * {
  flex-grow: 1;
}
.header_main_nav_left .btn-secondary,
.header_main_nav_left .btn-secondary-two {
  padding: 0.25rem 0.5rem;
}

.input {
  padding: 0rem 1rem;
  width: 0rem;
  height: 2rem;
  background: none;
  border: 2px solid #67009b;
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 1rem;
  color: #67009b;
  outline: none;
  transition: 0.5s;
}

.icon-primary {
  background-color: #67009b;
  padding: 0.5rem;
  border-radius: 50%;
  color: #fff;
  border: 4px solid rgba(255, 103, 28, 0.2);
  transition: 0.3s;
}
.icon-primary:hover {
  cursor: pointer;
  border: 4px solid #67009b;
  background-color: #ff671c;
}

@media (max-width: 996px) {
  .header {
    display: none;
  }
  .header_main_nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header_main_nav li:not(.mega-menu) a {
    padding: 0rem 0.1rem;
  }
}
.comment_section_container {
  width: 75%;
  padding: 2rem;
  margin: 2rem auto;
  border: 2px solid #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0px 2px 7px -5px rgba(0, 0, 0, 0.1);
}
.comment_section_comment {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-grow: 1;
}
.comment_section_comment.answer {
  border: 1px solid #67009b;
  margin: 1rem 1rem 0rem 0rem;
  padding: 1rem;
  border-radius: 5px;
}
.comment_section_user_img {
  width: 96px;
  flex-shrink: 0;
}
.comment_section_user_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.comment_section_user_name {
  font-size: 1.1em;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(149, 0, 255, 0.6);
}
.comment_section_user_name_date {
  color: #67009b;
  font-weight: 300;
  font-size: 0.9em;
  margin-right: 0.4rem;
}
.comment_section_content {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.comment_section_answer_botton {
  display: flex;
  justify-content: flex-end;
}

.comment_form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 75%;
  padding: 2rem 0rem;
  margin: 2rem auto;
}
@media (min-width: 768px) {
  .comment_form_submit {
    align-self: flex-end;
  }
}
.comment_input {
  position: relative;
}
.comment_input input,
.comment_input textarea {
  width: 100%;
  border: 1px solid #BBB;
  border-radius: 5px;
  margin: 8px 0px;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
  padding-left: 40px;
  position: relative;
}
.comment_input input:focus,
.comment_input textarea:focus {
  border-color: #67009b;
}
.comment_input input:focus + i,
.comment_input textarea:focus + i {
  color: #67009b;
}
.comment_input i {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #BBBBBB;
}
@media (max-width: 993px) {
  .comment .comment_form {
    width: 100%;
  }
}

.carousel_blog_swiper_item {
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 1rem;
  text-align: center;
  border: 2px solid #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0px 2px 7px -5px rgba(0, 0, 0, 0.1);
}
.carousel_blog_swiper_item .btn-wrapper {
  display: flex;
  justify-content: center;
}
.carousel_blog_swiper_item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 18rem;
  border-radius: 1rem;
}
.carousel_blog_swiper_item:hover {
  transform: scale(1.01);
  transition: 0.3s;
  counter-increment: pointer;
}

.blog_single_hero_image {
  height: 24rem;
}
.blog_single_hero_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.blog_single_hero_content {
  border-bottom: dashed 2px #67009b;
}
.blog_single_hero_content .btn-wrapper {
  border-top: dashed 2px #67009b;
}
.blog_single_hero_content blockquote {
  border-radius: 0.25rem;
  padding: 3rem;
  background-color: #ececec;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #ffffff 40px), repeating-linear-gradient(rgba(227, 228, 235, 0.3333333333), #e3e4eb);
  position: relative;
  color: #67009b;
  text-align: center;
  z-index: 1;
}
.blog_single_hero_content blockquote::before {
  content: "\f10d";
  /* thumbs-up icon class */
  font-family: "Font Awesome 6 pro";
  color: #67009b;
  font-size: 8rem;
  position: absolute;
  top: 0;
  opacity: 0.3;
  right: 1;
  z-index: -1;
}
.blog_single_hero_content blockquote::after {
  content: "";
  position: absolute;
  border-right: solid 6px #67009b;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -2;
}
.blog_single_hero_content_author_section {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #67009b;
  color: #fff;
}
.blog_single_hero_content_author_section_author_text {
  padding: 1rem 0rem;
}
.blog_single_hero_comments {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid;
  color: #878787;
  border-radius: 0.25rem;
}
.blog_single_hero_comments .replay {
  border-top: dotted 2px #fff;
  border-bottom: dotted 2px #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.blog_single_hero_comments a {
  border: 1px solid black;
  text-decoration: none;
  color: #878787;
  border: solid 1px #fff;
  padding: 0.2rem 2rem;
  border-radius: 0.25rem;
  display: inline-block;
  transition: 0.3s ease-in;
}
.blog_single_hero_comments a:hover {
  color: #67009b;
}

.blog_single_hero_comments_content {
  flex-basis: 10%;
}
.blog_single_hero_comments_content img {
  width: 4rem;
  height: 4rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .blog_single_hero_comments_content {
    flex-basis: 10%;
  }
  .blog_single_hero_comments_content img {
    width: 4rem;
    height: 3rem;
  }
}
.blog_single_hero_user {
  flex-basis: 90%;
  margin-right: 1rem;
}

.blog_content_sidebar_top, .blog_content_sidebar_middle, .blog_content_sidebar_bottom {
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 2px solid #67009b;
  box-shadow: 0px 2px 7px -5px rgba(0, 0, 0, 0.1);
}
.blog_content_sidebar_top a, .blog_content_sidebar_middle a, .blog_content_sidebar_bottom a {
  display: inline-block;
}
.blog_content_sidebar_top a:hover, .blog_content_sidebar_middle a:hover, .blog_content_sidebar_bottom a:hover {
  color: #878787;
}
.blog_content_sidebar_top ul, .blog_content_sidebar_middle ul, .blog_content_sidebar_bottom ul {
  padding: 0rem 1rem;
}
.blog_content_sidebar_top li, .blog_content_sidebar_middle li, .blog_content_sidebar_bottom li {
  padding: 0.5rem 0rem;
  list-style: disc;
}
.blog_content_sidebar_top {
  flex-direction: column;
}
.blog_content_sidebar_middle_item {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.blog_content_sidebar_middle_image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 14rem;
  border-radius: 1rem;
}
.blog_content_sidebar_middle_image_content span {
  display: inline-block;
  margin: 0.5rem 0rem;
}
.blog_content_sidebar_middle_image_content p {
  padding: 1rem 0rem;
  border-bottom: dashed 2px #fff;
}/*# sourceMappingURL=blogSingle.css.map */