@charset "UTF-8";
@font-face {
  font-family: "Vazir-Bold";
  src: url("../fonts/vazir/Vazir-Bold.eot") format("embedded-opentype"), url("../fonts/vazir/Vazir-Bold.woff") format("woff"), url("../fonts/vazir/Vazir-Bold.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Vazir-Medium";
  src: url("../fonts/vazir/Vazir-Medium.eot") format("embedded-opentype"), url("../fonts/vazir/Vazir-Medium.woff") format("woff"), url("../fonts/vazir/Vazir-Medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Vazir-Regular";
  src: url("../fonts/vazir/Vazir.eot") format("embedded-opentype"), url("../fonts/vazir/Vazir.woff") format("woff"), url("../fonts/vazir/Vazir.ttf") format("truetype");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  direction: rtl;
  background: rgb(255, 166, 0);
  background-image: url("../img/bg-page.png");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center center;
}

.AZ-page {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.my-80 {
  margin: 80px 0;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.my-100 {
  margin: 100px 0;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.AZ-img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.AZ-img-container::after {
  content: "";
  display: block;
}

.AZ-img-container-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AZ-img-cover img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.AZ-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.AZ-field-group input,
.AZ-field-group textarea {
  font-size: 14px;
  font-family: "Vazir-Medium";
  color: #4e4e4c;
  padding: 13px;
  flex-grow: 1;
  text-align: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #4e4e4c;
}
.AZ-field-group input::-moz-placeholder, .AZ-field-group textarea::-moz-placeholder {
  color: #d4d4d4;
}
.AZ-field-group input::placeholder,
.AZ-field-group textarea::placeholder {
  color: #d4d4d4;
}
.AZ-field-group input {
  height: 48px;
}

.AZ-checkbox-group label {
  font-size: 11px;
  color: #4e4e4c;
  font-family: "Vazir-Medium";
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-right: 18px;
}
.AZ-checkbox-group label a {
  text-decoration: underline;
  color: #4e4e4c;
  transition: all 0.2s linear;
}
.AZ-checkbox-group label a:hover {
  color: #c36f01;
}
.AZ-checkbox-group label::after {
  content: "";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #4e4e4c;
  background: transparent;
  border: 1px solid #4e4e4c;
  transition: all 0.2s linear;
  border-radius: 4px;
  color: #fff;
}
.AZ-checkbox-group input {
  display: none;
}
.AZ-checkbox-group input:checked ~ label::after {
  content: "\e956";
  background: #f28b00;
  border-color: #f28b00;
}

.AZ-radio-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.AZ-radio-group label {
  font-size: 15px;
  color: #4e4e4c;
  font-family: "Vazir-Medium";
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-right: 22px;
}
.AZ-radio-group label::after {
  content: "";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  outline: 1px solid #4e4e4c;
  border: 2px solid #fff;
  transition: all 0.2s linear;
  border-radius: 50%;
}
.AZ-radio-group input {
  display: none;
}
.AZ-radio-group input:checked ~ label::after {
  background: #f28b00;
  outline-color: #f28b00;
}

.AZ-section-title {
  margin-bottom: 30px;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}
.AZ-section-title p {
  font-size: 20px;
  color: #4e4e4c;
  font-family: "Vazir-Bold";
  z-index: 1;
  position: relative;
}
.AZ-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% + 20px);
  background: #ffceb1;
  height: 16px;
}

.AZ-section-text {
  font-size: 20px;
  color: #4e4e4c;
  font-family: "Vazir-Bold";
}

.AZ-secondary-btn,
.AZ-primary-btn {
  font-size: 16px;
  color: #fff;
  font-family: "Vazir-Bold";
  position: relative;
  height: 50px;
  border-radius: 8px;
  background: #f28b00;
  border: 1px solid #f28b00;
  transition: all 0.2s linear;
  padding: 5px 20px;
  min-width: 320px;
}
.AZ-secondary-btn:hover,
.AZ-primary-btn:hover {
  color: #fff;
  background: #c36f01;
}
.AZ-secondary-btn.disabled,
.AZ-primary-btn.disabled {
  pointer-events: stroke;
  opacity: 0.5;
}

.AZ-secondary-btn {
  color: #f28b00;
  background: #fbdcb3;
  border-color: #f28b00;
}
.AZ-secondary-btn:hover {
  background: #f1c892;
  color: #f28b00;
}

.AZ-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
}
.AZ-navbar .navbar-wrapper-mobile,
.AZ-navbar .navbar-wrapper-desktop {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 20px 0;
}
.AZ-navbar .navbar-brand {
  margin: 0;
}
.AZ-navbar .navbar-brand img {
  width: 194px;
}
.AZ-navbar .overlay.active {
  opacity: 1;
}
.AZ-navbar .navbar-toggler {
  color: #ffffff;
}
.AZ-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  font-size: 16px;
  color: #c68292;
  font-family: "Vazir-Medium";
  padding: 15px 10px;
  transition: all 0.2s linear;
  overflow: hidden;
  position: relative;
  text-shadow: 0 2px 2px 2px #fff;
  text-shadow: 0 0 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
.nav-link p {
  transition: all 0.2s linear;
}

.AZ-footer {
  position: relative;
  background: #c68292;
  border-top: 10px solid #fff;
  padding: 300px 0 30px;
}
.AZ-footer .footer-brand {
  width: 181px;
  margin-bottom: 20px;
}
.AZ-footer .copyright-text {
  font-size: 16px;
  color: #ffffff;
  font-family: "Vazir-Regular";
  margin-top: 50px;
}
.AZ-footer .footer-text {
  font-size: 16px;
  color: #ffffff;
  font-family: "Vazir-Regular";
}
.AZ-footer .footer-title {
  font-size: 16px;
  color: #ffffff;
  font-family: "Vazir-Bold";
  margin-bottom: 10px;
}
.AZ-footer .footer-link {
  font-size: 16px;
  color: #ffffff;
  font-family: "Vazir-Regular";
  transition: all 0.2s linear;
  padding: 4px 0;
}
.AZ-footer .footer-link span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c68292;
  background: #fff;
}

.AZ-hero-section {
  padding: 150px 0 200px;
  background-image: url("../img/Layer 1.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}
.AZ-hero-section .swiper-cards {
  width: 90%;
  left: 0;
}
.AZ-hero-section .swiper-cards .gallery-img {
  width: 100%;
  border-radius: 32px;
  border: 10px solid #fff;
}
.AZ-hero-section .swiper-cards .gallery-img::after {
  padding-bottom: 58%;
}
.AZ-hero-section .swiper-cards .swiper-slide {
  background: transparent;
  box-shadow: 0;
  border-radius: 32px;
  border: 0;
}
.AZ-hero-section .swiper-cards .swiper-slide-active {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.75);
}

.swiper-pagination {
  bottom: -100px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c68292;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  outline: 2px solid #fff;
}

@keyframes rotateProductHero {
  0% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(-25deg);
  }
}
@keyframes rotateProductQuestion {
  0% {
    transform: translate(-50%, -50%) rotate(25deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-25deg);
  }
}
.AZ-section-box {
  border-radius: 16px;
  background-color: white;
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 40px);
  position: relative;
  padding: 32px 32px 24px;
}

.AZ-question-section {
  padding-bottom: 200px;
  position: relative;
}
.AZ-question-section .question-box {
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: relative;
  padding: 100px 0 150px;
}
.AZ-question-section .circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
}
.AZ-question-section .product-img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 200px;
  animation: rotateProductQuestion 1s linear infinite alternate;
}
.AZ-question-section .brand-question {
  width: 300px;
  margin-left: -30px;
  position: relative;
  z-index: 1;
}

.box-vector {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
}

.section-bg {
  position: absolute;
  left: 0;
  top: -500px;
  width: 879px;
  z-index: -1;
}

.w-400 {
  width: 400px;
}

.tabs-wrapper .tabs {
  width: 40%;
}
.tabs-wrapper .tabs .tab-link {
  font-size: 16px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
  padding: 5px 35px 5px 30px;
  min-width: 440px;
  height: 55px;
  position: relative;
  border: 0;
  background: pink;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
}
.tabs-wrapper .tabs .tab-link span {
  font-family: "Vazir-Bold";
  display: contents;
}
.tabs-wrapper .tabs .tab-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 26px;
  background: #e7c0c4;
  background-blend-mode: multiply;
}
.tabs-wrapper .tabs .tab-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 26px;
  border-left: 7px solid transparent;
  border-top: 55px solid #e7c0c4;
}
.tabs-wrapper .tabs .pink .tab-link {
  background: #e7c0c4;
}
.tabs-wrapper .tabs .pink .tab-link::after {
  background: #dca8ad;
}
.tabs-wrapper .tabs .pink .tab-link::before {
  border-top: 55px solid #e7c0c4;
}
.tabs-wrapper .tabs .orange .tab-link {
  background: #ffd59d;
}
.tabs-wrapper .tabs .orange .tab-link::after {
  background: #f8905c;
}
.tabs-wrapper .tabs .orange .tab-link::before {
  border-top: 55px solid #ffd59d;
}
.tabs-wrapper .tabs .yellow .tab-link {
  background: #f7de8c;
}
.tabs-wrapper .tabs .yellow .tab-link::after {
  background: #f3d06c;
}
.tabs-wrapper .tabs .yellow .tab-link::before {
  border-top: 55px solid #f7de8c;
}
.tabs-wrapper .tabs .red .tab-link {
  background: #faac7c;
}
.tabs-wrapper .tabs .red .tab-link::after {
  background: #f68452;
}
.tabs-wrapper .tabs .red .tab-link::before {
  border-top: 55px solid #faac7c;
}
.tabs-wrapper .tabs .blue .tab-link {
  background: #c4d4e3;
}
.tabs-wrapper .tabs .blue .tab-link::after {
  background: #a1bbd6;
}
.tabs-wrapper .tabs .blue .tab-link::before {
  border-top: 55px solid #c4d4e3;
}
.tabs-wrapper .tabs .active {
  margin-right: 30px;
}
.tabs-wrapper .tabContainer {
  width: 50%;
}
.tabs-wrapper .tabContent {
  padding: 16px 24px 0;
}
.tabs-wrapper .tabContent ul {
  margin-right: 20px;
}
.tabs-wrapper .tabContent ul li {
  list-style-type: disc;
  font-size: 16px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
  padding: 3px 0;
}
.tabs-wrapper .tabContent ul li::marker {
  font-size: 10px;
  color: #c68292;
}
.tabs-wrapper .tabContent ul li span {
  font-family: "Vazir-Bold";
}
.tabs-wrapper .tabContent p {
  font-size: 16px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
  margin-bottom: 5px;
}

.AZ-community-membership-section {
  padding: 150px 0;
  position: relative;
}
.AZ-community-membership-section .box-head {
  margin-top: -90px;
}
.AZ-community-membership-section .section-bg {
  left: unset;
  right: 0;
  transform: rotateY(180deg);
}
.AZ-community-membership-section .box-vector {
  left: 35%;
  width: 236px;
}
.AZ-community-membership-section ol,
.AZ-community-membership-section ul {
  margin-right: 20px;
}
.AZ-community-membership-section ol li,
.AZ-community-membership-section ul li {
  list-style-type: disc;
  font-size: 16px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
  padding: 3px 0;
}
.AZ-community-membership-section ol li::marker,
.AZ-community-membership-section ul li::marker {
  color: #ffceb0;
  font-size: 10px;
}
.AZ-community-membership-section ol {
  margin-right: 0;
}
.AZ-community-membership-section ol li {
  list-style-type: decimal;
}
.AZ-community-membership-section ol li::marker {
  font-size: 16px;
  font-family: "Vazir-Regular";
  color: #faac7c;
}

#reservationForm fieldset:not(:first-of-type),
#createSubdomainForm fieldset:not(:first-of-type) {
  display: none;
}

.modal-wrapper .modal-content {
  border: 0;
  border-radius: 16px;
  background-image: repeating-linear-gradient(to right, rgb(237, 249, 255) 0, rgb(237, 249, 255) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(to bottom, rgb(237, 249, 255) 0, rgb(237, 249, 255) 1px, transparent 1px, transparent 40px);
}
.modal-wrapper .btn-close,
.modal-wrapper .back-link {
  font-size: 14px;
  color: #4e4e4c;
  font-family: "Vazir-Medium";
  background: unset;
  width: unset;
  height: unset;
  opacity: 1;
  background: transparent;
  border: 0;
}
.modal-wrapper .btn-close span,
.modal-wrapper .back-link span {
  color: #f28b00;
  font-size: 20px;
}
.modal-wrapper .back-link {
  position: absolute;
  top: 20px;
  left: 10px;
}
.modal-wrapper .modal-title {
  font-size: 14px;
  color: #f28b00;
  font-family: "Vazir-Bold";
  margin-bottom: 15px;
}
.modal-wrapper .modal-text {
  font-size: 13px;
  color: #4e4e4c;
  font-family: "Vazir-Bold";
  margin-bottom: 15px;
}
.modal-wrapper .modal-list li {
  list-style-type: decimal;
  font-size: 15px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
}
.modal-wrapper .edit-number {
  font-size: 11px;
  color: #4e4e4c;
  font-family: "Vazir-Medium";
  transition: all 0.2s linear;
}
.modal-wrapper .edit-number span {
  font-size: 16px;
}
.modal-wrapper .edit-number:hover {
  color: #f28b00;
}
.modal-wrapper .modal-brand {
  width: 291.56px;
  margin-top: -50px;
  margin-bottom: 30px;
}
.modal-wrapper .result-title {
  font-size: 32px;
  color: red;
  font-family: "Vazir-Bold";
  -webkit-text-stroke: 0.11em red;
}
.modal-wrapper .result-text {
  font-size: 16px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
  text-align: justify;
}
.modal-wrapper .result-text span {
  font-family: "Vazir-Bold";
}
.modal-wrapper .action-btn {
  font-size: 20px;
  color: #faac7c;
}
.modal-wrapper #countdown {
  font-size: 14px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
}

#createSubdomainForm .step-title {
  font-size: 14px;
  color: #f28b00;
  font-family: "Vazir-Bold";
}

.share-link {
  border-radius: 8px;
  background: #fdeade;
  padding: 2px;
  height: 48px;
}
.share-link #link {
  font-size: 14px;
  font-family: "Vazir-Bold";
  color: #4e4e4c;
  flex-grow: 2;
  border: none;
  text-align: center;
  height: 100%;
  padding: 8px;
  border-radius: 8px;
}
.share-link #copy button {
  font-size: 24px;
  font-family: "Vazir-Medium";
  display: block;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.share-link #copy button.copied::after {
  content: "با موفقیت کپی شد";
  position: absolute;
  top: 0px;
  left: 35px;
  display: block;
  white-space: nowrap;
  padding: 3px 10px;
  font-size: 12px;
  font-family: "Vazir-Medium";
  color: #fff;
  opacity: 1;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
  border-radius: 4px;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}
.glow-seeker .AZ-primary-btn {
  background: #faac7c;
}
.glow-seeker .action-btn {
  color: #faac7c;
}
.glow-seeker .share-link {
  background: #fdeade;
}

.glow-seeker .AZ-primary-btn {
  background: #faac7c;
}
.glow-seeker .action-btn {
  color: #faac7c;
}
.glow-seeker .share-link {
  background: #fdeade;
}
.glow-seeker .share-link #copy button {
  color: #faac7c;
}
.glow-seeker .share-link #copy button.copied::after {
  background: #faac7c;
}

.radiance-riser .AZ-primary-btn {
  background: #7c9fc5;
  border: 1px solid #7c9fc5;
}
.radiance-riser .AZ-primary-btn:hover {
  background: #57799e;
}
.radiance-riser .action-btn {
  color: #7c9fc5;
}
.radiance-riser .share-link {
  background: #edf9ff;
}
.radiance-riser .share-link #copy button {
  color: #7c9fc5;
}
.radiance-riser .share-link #copy button.copied::after {
  background: #7c9fc5;
}

.inner-glow-master .AZ-primary-btn {
  background: #e7c0c4;
  border: 1px solid #e7c0c4;
}
.inner-glow-master .AZ-primary-btn:hover {
  background: #d4a1a6;
}
.inner-glow-master .action-btn {
  color: #e7c0c4;
}
.inner-glow-master .share-link {
  background: #f9eff0;
}
.inner-glow-master .share-link #copy button {
  color: #e7c0c4;
}
.inner-glow-master .share-link #copy button.copied::after {
  background: #e7c0c4;
}

.AZ-faq-section {
  padding-bottom: 180px;
}

.box-head {
  margin-top: -140px;
}
.box-head .slogan-title {
  font-size: 32px;
  color: #c68292;
  font-family: "Vazir-Bold";
}
.box-head .brand-hero {
  width: 240px;
}
.box-head .product-img {
  width: 145px;
  animation: rotateProductHero 1s linear infinite alternate;
}

.AZ-instagram-section {
  margin-bottom: -200px;
}
.AZ-instagram-section .posts-swiper {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
.AZ-instagram-section .instagram-post-card {
  border-radius: 16px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: visible;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: 10px solid #fff;
}
.AZ-instagram-section .instagram-post-card::after {
  padding-bottom: 155%;
}
.AZ-instagram-section .swiper-pagination {
  bottom: -50px !important;
}
.AZ-instagram-section .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #fff;
}

.instagram-title {
  font-size: 32px;
  color: #4e4e4c;
  font-family: "Vazir-Bold";
}

.score-modal .score-box {
  border: 1px solid #e7c0c4;
  border-radius: 8px;
  padding: 8px;
  height: 100%;
}
.score-modal .score-box img {
  width: 24px;
}
.score-modal .score-box .score--title {
  font-size: 12px;
  color: #4e4e4c;
  font-family: "Vazir-Bold";
  margin-bottom: 4px;
}
.score-modal .score--text {
  font-size: 10px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
  display: block;
}
.score-modal .score-items {
  border: 1px solid #e7c0c4;
  border-radius: 8px;
  padding: 10px;
}
.score-modal .score-items img {
  width: 48px;
}
.score-modal .score-items .col-4 {
  border-left: 1px solid #e7c0c4;
}
.score-modal .score-items .col-4:last-child {
  border-left: 0;
}
.score-modal .userInfoList a {
  font-size: 13px;
  color: #4e4e4c;
  font-family: "Vazir-Regular";
}
.score-modal .userInfoList a span {
  font-size: 16px;
}

.AZ-simple-section {
  padding-bottom: 150px;
}
.AZ-simple-section .simpe-text {
  font-size: 28px;
  color: #c68292;
  font-family: "Vazir-Medium";
  padding: 15px 10px;
  transition: all 0.2s linear;
  overflow: hidden;
  position: relative;
  text-shadow: 0 0 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  line-height: 1.8;
}

@media screen and (max-width: 991px) {
  .AZ-navbar .navbar-brand img {
    width: 145px;
  }
  .AZ-navbar .navbar-wrapper-desktop {
    background: transparent;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    padding: 0;
  }
  .AZ-navbar .navbar-wrapper-mobile {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 0;
  }
  .AZ-navbar .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.2s linear;
  }
  .AZ-navbar .sidebar.show {
    right: 0;
  }
  .AZ-navbar .sidebar .close-menu {
    font-size: 32px;
    color: #ffffff;
  }
  .AZ-hero-section {
    background-size: 360px;
  }
  .swiper-pagination {
    bottom: -80px !important;
  }
  .box-vector {
    left: 60%;
    width: 240px;
  }
  .AZ-section-title {
    margin-bottom: 15px;
  }
  .AZ-section-title p {
    font-size: 16px;
  }
  .section-bg {
    left: unset;
    right: 0;
    top: -200px;
    width: 360px;
    transform: rotateY(180deg);
  }
  .AZ-question-section .question-box {
    padding: 100px 32px 150px;
  }
  .AZ-question-section .brand-question {
    width: 140px;
  }
  .AZ-question-section .product-img {
    width: 130px;
  }
  .AZ-question-section .bg-circle {
    width: 150px;
  }
  .AZ-community-membership-section {
    padding: 100px 0;
  }
  .AZ-community-membership-section .box-vector {
    left: 40%;
    width: 205px;
  }
  .AZ-community-membership-section .section-bg {
    left: 0;
    right: unset;
    transform: rotateX(183deg);
  }
  .AZ-community-membership-section .box-head .product-img {
    width: 180px;
  }
  .AZ-footer {
    padding: 200px 0 30px;
  }
  .AZ-footer .footer-title,
  .AZ-footer .footer-link,
  .AZ-footer .footer-text {
    font-size: 14px;
  }
  .AZ-footer .copyright-text {
    font-size: 12px;
    margin-top: 30px;
  }
  .tabs-wrapper .tabs {
    width: 100%;
    margin: 0;
  }
  .tabs-wrapper .tabs .tab-link {
    white-space: wrap;
    min-width: 100%;
  }
  .tabs-wrapper .tabs .active {
    margin-right: 0;
  }
  .tabs-wrapper .tabContent {
    padding: 14px;
  }
  .AZ-faq-section {
    padding-bottom: 100px;
  }
  .AZ-instagram-section {
    margin-bottom: -100px;
  }
  .AZ-instagram-section .instagram-title {
    font-size: 20px;
  }
  .AZ-instagram-section .instagram-post-card {
    border: 5px solid #fff;
  }
  .box-head {
    margin-top: -110px;
  }
}
@media screen and (max-width: 768px) {
  .AZ-hero-section {
    padding: 130px 0 200px;
  }
  .AZ-hero-section .swiper-cards .gallery-img::after {
    padding-bottom: 170%;
  }
  .AZ-simple-section .simpe-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .w-400 {
    width: 100%;
  }
  .AZ-hero-section .swiper-cards {
    width: 80%;
  }
  .box-head .product-img {
    width: 100px;
  }
  .box-head .slogan-title {
    font-size: 24px;
    margin-top: 5px;
  }
  .box-head .brand-hero {
    width: 180px;
  }
  .AZ-section-box {
    padding: 32px 0 24px 24px;
  }
  .tabs-wrapper .tabs .tab-link {
    height: 70px;
    font-size: 15px;
  }
  .tabs-wrapper .tabs .tab-link::before {
    border-top: 70px solid #e7c0c4;
  }
  .tabs-wrapper .tabs .pink .tab-link::before {
    border-top: 70px solid #e7c0c4;
  }
  .tabs-wrapper .tabs .orange .tab-link::before {
    border-top: 70px solid #ffd59d;
  }
  .tabs-wrapper .tabs .yellow .tab-link::before {
    border-top: 70px solid #f7de8c;
  }
  .tabs-wrapper .tabs .red .tab-link::before {
    border-top: 70px solid #faac7c;
  }
  .tabs-wrapper .tabs .blue .tab-link::before {
    border-top: 70px solid #c4d4e3;
  }
  .box-head .brand-hero {
    width: 160px;
  }
  .box-head .slogan-title {
    font-size: 20px;
  }
  .AZ-community-membership-section .box-head .product-img {
    width: 120px;
  }
}