@charset "UTF-8";
.main-color {
  color: #16c894;
}

@font-face {
  font-family: Poppins;
  src: url(../../Fonts/poppins/Poppins-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Poppins;
  src: url(../../Fonts/poppins/Poppins-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

html,
body {
  background-color: #fff;
  font-family: Poppins;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: Poppins;
  font-weight: bolder;
}

.snowflake {
  position: absolute;
  width: 27px;
  height: 27px;
  background: transparent;
  z-index: 999;
  background-image: url(../../imgs/snow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul {
  padding: 0;
  list-style: none;
}
ul li {
  list-style: none !important;
}

.main-header {
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  color: #fff;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.reveal.active .fade-left {
  animation: fade-left 0.7s ease-in-out;
}
.reveal.active .fade-right {
  animation: fade-right 1s ease-in-out;
}
@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom {
  animation: fade-bottom 0.7s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.top {
  animation: top 0.5s ease-in;
}

@keyframes top {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.tang-hero header {
  position: relative;
  z-index: 100;
}
.tang-hero header .menu-section {
  width: 100%;
  height: 110px;
  background: #030303;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.tang-hero header .menu-section nav {
  position: relative;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
}
.tang-hero header .menu-section nav > .d-flex {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.tang-hero header .shop-name {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  text-decoration: none;
}
.tang-hero header .shop-name:hover {
  text-decoration: none;
}
.tang-hero header .shop-logo {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}
.tang-hero header .tang-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
}
.tang-hero header .tang-navigation .nav-link {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 !important;
  color: #e5e5e5 !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tang-hero header .tang-navigation .nav-link:hover, .tang-hero header .tang-navigation .nav-link:focus {
  color: #16c894 !important;
  text-decoration: none;
}
.tang-hero header .tang-nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  flex-shrink: 0;
}
.tang-hero header .tang-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 24px;
  background: #16c894;
  border: 1px solid #16c894;
  border-radius: 8px;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tang-hero header .tang-order-btn:hover {
  background: #11b985;
  border-color: #11b985;
  color: #ffffff !important;
  transform: translateY(-1px);
  text-decoration: none;
}
.tang-hero header .open-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 0;
  background: #16c894;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tang-hero header .open-menu:hover {
  background: #11b985;
}
.tang-hero header .open-menu:focus {
  outline: none;
}
.tang-hero header .open-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}
.tang-hero header .mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  background: rgba(3, 3, 3, 0.32);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tang-hero header .mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.tang-hero header .mobile-overlay.is-open .overlay-content {
  transform: translateX(0);
}
.tang-hero header .mobile-overlay .overlay-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100%;
  height: 100%;
  padding: 68px 20px 40px;
  background: rgba(27, 27, 27, 0.58);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: -25px 0 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.tang-hero header .mobile-overlay .overlay-content #navbarNavAltMarkup {
  position: relative;
  width: 100%;
}
.tang-hero header .mobile-overlay .overlay-content .navbar-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px !important;
  border-radius: 9px;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link::after {
  content: "›";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}
.tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link:hover, .tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  text-decoration: none;
}
.tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link:first-child {
  background: #16c894;
}
.tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link:first-child:hover, .tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link:first-child:focus {
  background: #11b985;
}
.tang-hero header .mobile-overlay .overlay-content .closebtn {
  position: absolute;
  top: -57px;
  right: 12px;
  z-index: 10;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.tang-hero header .mobile-overlay .overlay-content .closebtn:hover {
  color: #16c894;
  transform: rotate(90deg);
  text-decoration: none;
}
.tang-hero header .mobile-overlay .overlay-content .closebtn:focus {
  outline: none;
}
@media (max-width: 991.98px) {
  .tang-hero header .menu-section {
    height: 64px;
  }
  .tang-hero header .menu-section nav {
    height: 64px;
  }
  .tang-hero header .tang-navigation {
    display: none;
  }
  .tang-hero header .tang-nav-actions {
    margin-left: auto;
  }
  .tang-hero header .tang-order-btn {
    display: none;
  }
  .tang-hero header .shop-logo {
    width: 76px;
  }
  .tang-hero header .open-menu {
    width: 48px;
    height: 48px;
  }
  .tang-hero header .mobile-overlay .overlay-content {
    width: 420px;
  }
}
@media (max-width: 575.98px) {
  .tang-hero header .menu-section {
    height: 62px;
  }
  .tang-hero header .menu-section nav {
    height: 62px;
  }
  .tang-hero header .shop-logo {
    width: 72px;
  }
  .tang-hero header .open-menu {
    width: 38px;
    height: 38px;
  }
  .tang-hero header .mobile-overlay .overlay-content {
    width: 100%;
    padding: 64px 16px 30px;
  }
  .tang-hero header .mobile-overlay .overlay-content .closebtn {
    top: -54px;
    right: 6px;
  }
  .tang-hero header .mobile-overlay .overlay-content .navbar-nav {
    gap: 7px;
  }
  .tang-hero header .mobile-overlay .overlay-content .navbar-nav .nav-link {
    min-height: 48px;
    font-size: 12px;
  }
}

.tang-hero {
  background: #030303;
  color: #ffffff;
}
.tang-hero .hero-section {
  position: relative;
  width: 100%;
  min-height: calc(98vh - 80px);
  display: flex;
  align-items: center;
  background: #030303;
  overflow: hidden;
}
.tang-hero .hero-section .row {
  min-height: calc(90vh - 80px);
  align-items: center;
}
.tang-hero .hero-section .hero-img {
  position: absolute;
  right: 0;
  top: 10px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .tang-hero .hero-section .hero-img {
    height: 400px;
  }
}
.tang-hero .hero-text {
  position: relative;
  z-index: 5;
  max-width: 570px;
}
.tang-hero .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #16c894;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}
.tang-hero .hero-eyebrow span {
  display: block;
  width: 13px;
  height: 2px;
  flex-shrink: 0;
  background: #16c894;
  border-radius: 2px;
}
.tang-hero .hero-text h1 {
  max-width: 570px;
  margin: 0 0 18px;
  color: #ffffff;
  font-family: Poppins;
  font-size: clamp(44px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -2.5px;
}
.tang-hero .hero-description {
  max-width: 510px;
  margin: 0;
  color: #a8a8a8;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}
.tang-hero .hero-buttons {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 80px;
}
.tang-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 123px;
  height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tang-hero .hero-btn-primary {
  background: #16c894;
  border: 1px solid #16c894;
  color: #ffffff !important;
  min-width: 300px;
}
.tang-hero .hero-btn-primary:hover {
  background: #11b985;
  border-color: #11b985;
  color: #ffffff !important;
  transform: translateY(-2px);
  text-decoration: none;
}
@media (min-width: 992px) {
  .tang-hero .hero-text {
    transform: translateY(-5px);
  }
}
@media (min-width: 1200px) {
  .tang-hero .hero-text {
    max-width: 590px;
  }
}
@media (max-width: 991.98px) {
  .tang-hero .hero-section {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .tang-hero .hero-section .row {
    min-height: auto;
  }
  .tang-hero .hero-text {
    max-width: 650px;
  }
  .tang-hero .hero-text h1 {
    font-size: clamp(44px, 7vw, 62px);
    letter-spacing: -2.5px;
  }
  .tang-hero .hero-buttons {
    margin-top: 55px;
  }
}
@media (max-width: 575.98px) {
  .tang-hero .hero-section {
    padding-top: 55px;
    padding-bottom: 20px;
  }
  .tang-hero .hero-eyebrow {
    gap: 6px;
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .tang-hero .hero-text h1 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1.3px;
  }
  .tang-hero .hero-description {
    font-size: 18px;
    line-height: 1.6;
  }
  .tang-hero .hero-buttons {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 45px;
  }
  .tang-hero .hero-btn {
    min-width: 245px;
    height: 46px;
  }
}

.tang-favourites {
  position: relative;
  width: 100%;
  padding: 110px 0 120px;
  background: #ffffff;
  color: #030303;
  overflow: hidden;
}
.tang-favourites .favourites-header {
  margin-bottom: 52px;
  align-items: flex-end;
}
.tang-favourites .favourites-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #16c894;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: none;
}
.tang-favourites .favourites-eyebrow span {
  display: block;
  width: 14px;
  height: 2px;
  flex-shrink: 0;
  background: #16c894;
  border-radius: 2px;
}
.tang-favourites .favourites-title {
  max-width: 720px;
  margin: 0;
  color: #030303;
  font-family: Poppins;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
}
.tang-favourites .favourites-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 50px;
  padding: 0 22px;
  background: #16c894;
  border: 1px solid #16c894;
  border-radius: 7px;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tang-favourites .favourites-view-btn:hover {
  background: #11b985;
  border-color: #11b985;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
.tang-favourites .favourites-carousel {
  position: relative;
  width: 100%;
}
.tang-favourites .favourites-swiper {
  width: 100%;
  overflow: visible;
}
.tang-favourites .swiper-wrapper {
  align-items: stretch;
}
.tang-favourites .swiper-slide {
  height: auto;
  display: flex;
}
.tang-favourites .favourite-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(3, 3, 3, 0.08);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(3, 3, 3, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tang-favourites .favourite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(3, 3, 3, 0.11);
}
.tang-favourites .favourite-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18/0.82;
  overflow: hidden;
  background: #f2eee8;
}
.tang-favourites .favourite-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.tang-favourites .favourite-card:hover .favourite-card-image img {
  transform: scale(1.035);
}
.tang-favourites .favourite-card-content {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  padding: 25px 20px 18px;
}
.tang-favourites .favourite-card h3 {
  margin-bottom: 14px;
  color: #030303;
  font-family: Poppins;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.tang-favourites .favourite-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(3, 3, 3, 0.08);
}
.tang-favourites .favourite-order-btn {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16c894;
  border: 1px solid #16c894;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tang-favourites .favourite-order-btn:hover {
  background: #11b985;
  border-color: #11b985;
  color: #ffffff;
  text-decoration: none;
}
.tang-favourites .favourites-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.tang-favourites .favourites-prev,
.tang-favourites .favourites-next {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: 7px;
  color: #030303;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(3, 3, 3, 0.05);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tang-favourites .favourites-prev:hover,
.tang-favourites .favourites-next:hover {
  background: #16c894;
  border-color: #16c894;
  color: #ffffff;
  transform: translateY(-2px);
}
.tang-favourites .favourites-prev.swiper-button-disabled,
.tang-favourites .favourites-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .tang-favourites .favourites-swiper .swiper-slide {
    width: calc((100% - 36px) / 3);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tang-favourites {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .tang-favourites .favourites-header {
    margin-bottom: 42px;
  }
  .tang-favourites .favourites-title {
    font-size: 44px;
  }
  .tang-favourites .favourite-card-content {
    padding: 22px 18px 17px;
  }
}
@media (max-width: 991.98px) {
  .tang-favourites {
    padding: 80px 0 90px;
  }
  .tang-favourites .favourites-header {
    margin-bottom: 38px;
  }
  .tang-favourites .favourites-title {
    max-width: 600px;
    font-size: clamp(36px, 6vw, 48px);
  }
  .tang-favourites .favourites-view-btn {
    margin-top: 25px;
  }
  .tang-favourites .favourites-navigation {
    margin-top: 20px;
  }
}
@media (max-width: 575.98px) {
  .tang-favourites {
    padding: 65px 0 35px;
  }
  .tang-favourites .favourites-header {
    margin-bottom: 30px;
  }
  .tang-favourites .favourites-eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .tang-favourites .favourites-title {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }
  .tang-favourites .favourites-view-btn {
    width: 100%;
    margin-top: 22px;
  }
  .tang-favourites .favourite-card-image {
    aspect-ratio: 1/0.78;
  }
  .tang-favourites .favourite-card-content {
    min-height: 125px;
    padding: 21px 17px 16px;
  }
  .tang-favourites .favourite-card h3 {
    font-size: 14px;
  }
  .tang-favourites .favourites-navigation {
    justify-content: flex-end;
    margin-top: 18px;
  }
  .tang-favourites .favourites-prev,
  .tang-favourites .favourites-next {
    width: 40px;
    height: 40px;
  }
}

.tang-awards {
  position: relative;
  width: 100%;
  padding: 115px 0 120px;
  background: #ffffff;
  color: #030303;
  overflow: hidden;
}
.tang-awards .awards-wrapper {
  position: relative;
  z-index: 2;
  align-items: center;
}
.tang-awards .awards-image {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #f2eee8;
  box-shadow: 0 18px 45px rgba(3, 3, 3, 0.1);
}
.tang-awards .awards-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 0.72/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tang-awards .awards-image:hover img {
  transform: scale(1.025);
}
.tang-awards .awards-content {
  position: relative;
  max-width: 690px;
  padding-left: 55px;
}
.tang-awards .awards-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #16c894;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}
.tang-awards .awards-eyebrow span {
  display: block;
  width: 14px;
  height: 2px;
  flex-shrink: 0;
  background: #16c894;
  border-radius: 2px;
}
.tang-awards .awards-title {
  max-width: 650px;
  margin: 0;
  color: #030303;
  font-family: Poppins;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -2px;
}
.tang-awards .awards-subtitle {
  margin: 27px 0 0;
  color: #030303;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.tang-awards .awards-description {
  max-width: 680px;
  margin: 17px 0 0;
  color: #707070;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}
.tang-awards .awards-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 123px;
  height: 50px;
  margin-top: 27px;
  padding: 0 21px;
  background: #16c894;
  border: 1px solid #16c894;
  border-radius: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tang-awards .awards-btn:hover {
  background: #11b985;
  border-color: #11b985;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
.tang-awards .awards-decoration {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: -5px;
  width: 250px;
  height: 250px;
  pointer-events: none;
  opacity: 0.65;
}
.tang-awards .awards-decoration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .tang-awards {
    padding-top: 125px;
    padding-bottom: 130px;
  }
  .tang-awards .awards-image {
    max-width: 335px;
  }
  .tang-awards .awards-content {
    padding-left: 65px;
  }
  .tang-awards .awards-decoration {
    width: 280px;
    height: 280px;
    right: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tang-awards {
    padding-top: 95px;
    padding-bottom: 105px;
  }
  .tang-awards .awards-image {
    max-width: 300px;
  }
  .tang-awards .awards-content {
    padding-left: 45px;
  }
  .tang-awards .awards-title {
    font-size: 46px;
  }
  .tang-awards .awards-decoration {
    width: 210px;
    height: 210px;
    opacity: 0.5;
  }
}
@media (max-width: 991.98px) {
  .tang-awards {
    padding: 85px 0 95px;
  }
  .tang-awards .awards-image {
    max-width: 340px;
    margin-bottom: 50px;
  }
  .tang-awards .awards-content {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 0;
  }
  .tang-awards .awards-title {
    font-size: clamp(38px, 6vw, 50px);
  }
  .tang-awards .awards-decoration {
    width: 180px;
    height: 180px;
    top: 10px;
    right: -30px;
    opacity: 0.35;
  }
}
@media (max-width: 575.98px) {
  .tang-awards {
    padding: 105px 0 75px;
  }
  .tang-awards .awards-image {
    max-width: 100%;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .tang-awards .awards-eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .tang-awards .awards-title {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }
  .tang-awards .awards-subtitle {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.4;
  }
  .tang-awards .awards-description {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
  }
  .tang-awards .awards-btn {
    width: 100%;
    margin-top: 25px;
  }
  .tang-awards .awards-decoration {
    width: 185px;
    height: 185px;
    top: -30px;
    right: -35px;
    opacity: 0.25;
  }
}

.tang-app {
  position: relative;
  width: 100%;
  padding: 115px 0 120px;
  background: #030303;
  color: #ffffff;
  overflow: hidden;
}
.tang-app .app-wrapper {
  position: relative;
  z-index: 2;
  min-height: 520px;
}
.tang-app .app-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 45px 0 115px;
}
.tang-app .app-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -38px;
  width: 220px;
  height: 85%;
  background: rgba(22, 200, 148, 0.82);
  border-radius: 80px 0 70px 0;
  pointer-events: none;
}
.tang-app .app-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}
.tang-app .app-eyebrow span {
  display: block;
  width: 14px;
  height: 2px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 2px;
}
.tang-app .app-title {
  max-width: 510px;
  margin: 0;
  color: #ffffff;
  font-family: Poppins;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -2px;
}
.tang-app .app-description {
  max-width: 530px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}
.tang-app .app-benefits {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 29px;
}
.tang-app .app-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.tang-app .app-check {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 4px;
  color: #16c894;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.tang-app .app-store-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.tang-app .app-store-link {
  display: block;
  height: 42px;
  transition: transform 0.2s ease;
}
.tang-app .app-store-link img {
  display: block;
  width: auto;
  height: 100%;
}
.tang-app .app-store-link:hover {
  transform: translateY(-2px);
}
.tang-app .app-image {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
.tang-app .app-image img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .tang-app {
    padding-top: 125px;
    padding-bottom: 0;
  }
  .tang-app .app-content {
    max-width: 580px;
  }
  .tang-app .app-image {
    margin-left: 10px;
  }
  .tang-app .app-content::before {
    left: -35px;
    width: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tang-app {
    padding-top: 95px;
  }
  .tang-app .app-content {
    padding-right: 15px;
  }
  .tang-app .app-title {
    font-size: 46px;
  }
  .tang-app .app-image {
    margin-left: 0;
  }
  .tang-app .app-content::before {
    left: -25px;
    width: 290px;
  }
}
@media (max-width: 991.98px) {
  .tang-app {
    padding: 85px 0 95px;
  }
  .tang-app .app-wrapper {
    min-height: auto;
  }
  .tang-app .app-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 35px 0;
  }
  .tang-app .app-title {
    font-size: clamp(38px, 6vw, 50px);
  }
  .tang-app .app-image {
    margin: 40px 0 0;
  }
  .tang-app .app-content::before {
    left: -20px;
    width: 360px;
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  .tang-app {
    padding: 65px 0 0;
  }
  .tang-app .app-content {
    padding: 25px 0;
  }
  .tang-app .app-content::before {
    left: -5px;
    width: 230px;
    border-radius: 55px 0 50px 0;
  }
  .tang-app .app-eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .tang-app .app-title {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }
  .tang-app .app-description {
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.6;
  }
  .tang-app .app-benefits {
    gap: 12px;
    margin-top: 25px;
  }
  .tang-app .app-benefit {
    align-items: flex-start;
    font-size: 13px;
  }
  .tang-app .app-check {
    margin-top: 1px;
  }
  .tang-app .app-store-buttons {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 27px;
  }
  .tang-app .app-store-link {
    height: 40px;
  }
  .tang-app .app-image {
    margin-top: 25px;
  }
}

.tang-combo-deals {
  position: relative;
  width: 100%;
  padding: 105px 0 115px;
  background: #ffffff;
  color: #030303;
  overflow: hidden;
}
.tang-combo-deals .combo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 45px;
}
.tang-combo-deals .combo-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #16c894;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}
.tang-combo-deals .combo-eyebrow span {
  display: block;
  width: 14px;
  height: 2px;
  background: #16c894;
  border-radius: 2px;
}
.tang-combo-deals .combo-title {
  margin: 0;
  color: #030303;
  font-family: Poppins;
  font-size: clamp(24px, 3.524vw, 38px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
}
.tang-combo-deals .combo-deals-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 140px;
  height: 45px;
  margin-top: 20px;
  padding: 0 20px;
  background: #030303;
  border: 1px solid #030303;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tang-combo-deals .combo-deals-btn span {
  font-size: 16px;
  line-height: 1;
}
.tang-combo-deals .combo-deals-btn:hover {
  background: #181818;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
.tang-combo-deals .combo-grid {
  align-items: stretch;
}
.tang-combo-deals .combo-card {
  position: relative;
  min-height: 125px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 15px 20px 25px;
  background: #ffffff;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(3, 3, 3, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tang-combo-deals .combo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(3, 3, 3, 0.09);
}
.tang-combo-deals .combo-icon {
  position: relative;
  width: 90px;
  height: 70px;
  flex: 0 0 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tang-combo-deals .combo-card-content {
  flex: 1;
  min-width: 0;
}
.tang-combo-deals .combo-card h3 {
  margin: 0;
  color: #030303;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.tang-combo-deals .combo-card p {
  max-width: 390px;
  margin: 9px 0 0;
  color: #777777;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}
.tang-combo-deals .combo-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 36px;
  flex: 0 0 106px;
  background: #16c894;
  border: 1px solid #16c894;
  border-radius: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.tang-combo-deals .combo-order-btn:hover {
  background: #11b985;
  border-color: #11b985;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
@media (min-width: 1200px) {
  .tang-combo-deals {
    padding-top: 115px;
    padding-bottom: 125px;
  }
  .tang-combo-deals .combo-header {
    margin-bottom: 48px;
  }
  .tang-combo-deals .combo-card {
    min-height: 130px;
    padding-left: 28px;
  }
  .tang-combo-deals .combo-icon {
    width: 95px;
    flex-basis: 95px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tang-combo-deals {
    padding: 90px 0 105px;
  }
  .tang-combo-deals .combo-title {
    font-size: 46px;
  }
  .tang-combo-deals .combo-card {
    gap: 15px;
    padding: 18px;
  }
  .tang-combo-deals .combo-icon {
    width: 75px;
    flex-basis: 75px;
  }
  .tang-combo-deals .combo-card h3 {
    font-size: 14px;
  }
  .tang-combo-deals .combo-order-btn {
    width: 95px;
    flex-basis: 95px;
  }
}
@media (max-width: 991.98px) {
  .tang-combo-deals {
    padding: 85px 0 95px;
  }
  .tang-combo-deals .combo-header {
    margin-bottom: 35px;
  }
  .tang-combo-deals .combo-title {
    font-size: clamp(38px, 6vw, 50px);
  }
  .tang-combo-deals .combo-card {
    min-height: 125px;
  }
}
@media (max-width: 575.98px) {
  .tang-combo-deals {
    padding: 65px 0 75px;
  }
  .tang-combo-deals .combo-header {
    margin-bottom: 30px;
  }
  .tang-combo-deals .combo-eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .tang-combo-deals .combo-title {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }
  .tang-combo-deals .combo-deals-btn {
    width: 100%;
    max-width: 180px;
    margin-top: 18px;
  }
  .tang-combo-deals .combo-card {
    min-height: 145px;
    gap: 15px;
    padding: 18px 15px;
  }
  .tang-combo-deals .combo-icon {
    width: 65px;
    height: 60px;
    flex-basis: 65px;
  }
  .tang-combo-deals .combo-icon-dome {
    width: 48px;
    height: 32px;
  }
  .tang-combo-deals .combo-icon-base {
    width: 54px;
  }
  .tang-combo-deals .combo-card h3 {
    font-size: 14px;
  }
  .tang-combo-deals .combo-card p {
    margin-top: 7px;
    font-size: 11px;
  }
  .tang-combo-deals .combo-order-btn {
    width: 95px;
    height: 34px;
    flex-basis: 35px;
    font-size: 11px;
    margin-top: 5px;
  }
}

.tang-reviews {
  position: relative;
  width: 100%;
  padding: 105px 0 115px;
  background: #030303;
  color: #ffffff;
  overflow: hidden;
}
.tang-reviews .reviews-header {
  margin-bottom: 42px;
}
.tang-reviews .reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #16c894;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}
.tang-reviews .reviews-eyebrow span {
  display: block;
  width: 14px;
  height: 2px;
  flex-shrink: 0;
  background: #16c894;
  border-radius: 2px;
}
.tang-reviews .reviews-title {
  margin: 0;
  color: #ffffff;
  font-family: Poppins;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
}
.tang-reviews .reviews-rating {
  width: 250px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-left: auto;
  padding: 10px 18px;
  background: #16c894;
  border-radius: 18px;
  box-shadow: 0 7px 15px rgba(22, 200, 148, 0.2);
}
.tang-reviews .reviews-rating-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tang-reviews .reviews-rating-score strong {
  color: #ffffff;
  font-family: Poppins;
  font-size: 27px;
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -1px;
}
.tang-reviews .reviews-rating-score span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}
.tang-reviews .reviews-rating-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tang-reviews .reviews-rating-stars div {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}
.tang-reviews .reviews-rating-stars span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 7px;
  line-height: 1;
}
.tang-reviews .reviews-grid {
  align-items: stretch;
}
.tang-reviews .review-card {
  position: relative;
  height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px 19px;
  background: #292929;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.tang-reviews .review-card:hover {
  transform: translateY(-3px);
  background: #2d2d2d;
  border-color: rgba(22, 200, 148, 0.45);
}
.tang-reviews .review-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}
.tang-reviews .review-author {
  display: block;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .tang-reviews {
    padding-top: 115px;
    padding-bottom: 125px;
  }
  .tang-reviews .reviews-header {
    margin-bottom: 44px;
  }
  .tang-reviews .review-card {
    height: 155px;
    padding: 17px 19px 20px;
  }
  .tang-reviews .reviews-rating {
    width: 250px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tang-reviews {
    padding: 90px 0 105px;
  }
  .tang-reviews .reviews-title {
    font-size: 46px;
  }
  .tang-reviews .reviews-rating {
    width: 230px;
  }
  .tang-reviews .review-card {
    height: 160px;
  }
}
@media (max-width: 991.98px) {
  .tang-reviews {
    padding: 85px 0 95px;
  }
  .tang-reviews .reviews-header {
    margin-bottom: 35px;
  }
  .tang-reviews .reviews-rating {
    margin: 30px 0 0;
  }
  .tang-reviews .review-card {
    height: 155px;
  }
}
@media (max-width: 575.98px) {
  .tang-reviews {
    padding: 65px 0 75px;
  }
  .tang-reviews .reviews-eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .tang-reviews .reviews-title {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }
  .tang-reviews .reviews-rating {
    width: 100%;
    max-width: 250px;
    margin-top: 25px;
    margin-left: 0;
  }
  .tang-reviews .reviews-header {
    margin-bottom: 30px;
  }
  .tang-reviews .review-card {
    height: auto;
    min-height: 150px;
    padding: 17px 18px 19px;
  }
  .tang-reviews .review-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

.tang-find-us {
  position: relative;
  width: 100%;
  padding: 105px 0 115px;
  background: #ffffff;
  color: #030303;
  overflow: hidden;
}
.tang-find-us .find-us-header {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  text-align: center;
}
.tang-find-us .find-us-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #16c894;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}
.tang-find-us .find-us-eyebrow span {
  display: block;
  width: 14px;
  height: 2px;
  flex-shrink: 0;
  background: #16c894;
  border-radius: 2px;
}
.tang-find-us .find-us-title {
  margin: 0;
  color: #030303;
  font-family: Poppins;
  font-size: clamp(px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.tang-find-us .find-us-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  align-items: stretch;
}
.tang-find-us .opening-hours {
  height: 100%;
  padding: 8px 13px 12px;
  background: #ffffff;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(3, 3, 3, 0.08);
}
.tang-find-us .opening-hours h3 {
  margin: 0 0 12px;
  color: #030303;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}
.tang-find-us .opening-row {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #333333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.tang-find-us .opening-row span:last-child {
  text-align: right;
}
.tang-find-us .opening-row .closed {
  color: #e55b50;
  font-weight: 700;
}
.tang-find-us .find-us-details {
  height: 100%;
}
.tang-find-us .contact-item {
  min-height: 35px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #030303;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.tang-find-us .contact-item a {
  color: #030303;
  text-decoration: none;
}
.tang-find-us .contact-item a:hover {
  color: #16c894;
}
.tang-find-us .contact-icon {
  width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(3, 3, 3, 0.08);
  border-radius: 5px;
  color: #16c894;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 3px 8px rgba(3, 3, 3, 0.08);
}
.tang-find-us .find-us-map {
  width: 100%;
  height: 270px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 7px;
  background: #eeeeee;
}
.tang-find-us .find-us-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.tang-find-us .find-us-decoration {
  position: absolute;
  z-index: 1;
  top: -70px;
  left: -10px;
  pointer-events: none;
}
.tang-find-us .find-us-decoration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .tang-find-us {
    padding-top: 115px;
    padding-bottom: 125px;
  }
  .tang-find-us .find-us-map {
    height: 275px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tang-find-us {
    padding: 90px 0 105px;
  }
  .tang-find-us .find-us-map {
    height: 260px;
  }
}
@media (max-width: 991.98px) {
  .tang-find-us {
    padding: 85px 0 95px;
  }
  .tang-find-us .opening-hours {
    min-height: auto;
  }
  .tang-find-us .find-us-details {
    margin-top: 10px;
  }
  .tang-find-us .find-us-map {
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .tang-find-us {
    padding: 65px 0 75px;
  }
  .tang-find-us .find-us-eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .tang-find-us .find-us-title {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }
  .tang-find-us .find-us-header {
    margin-bottom: 25px;
  }
  .tang-find-us .opening-hours {
    padding: 10px 14px 12px;
  }
  .tang-find-us .opening-hours h3 {
    font-size: 14px;
  }
  .tang-find-us .opening-row {
    min-height: 42px;
    font-size: 12px;
  }
  .tang-find-us .contact-item {
    font-size: 12px;
  }
  .tang-find-us .find-us-map {
    height: 280px;
    margin-top: 8px;
  }
  .tang-find-us .find-us-decoration {
    width: 190px;
    height: 190px;
    top: 5px;
    left: -30px;
  }
}

.tang-footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(3, 3, 3, 0.12);
  border-bottom: 1px solid rgba(3, 3, 3, 0.12);
  color: #030303;
}
.tang-footer .footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.tang-footer .footer-copyright {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #171717;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.tang-footer .footer-copyright a {
  color: #ff7043;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tang-footer .footer-copyright a:hover {
  color: #16c894;
}
.tang-footer .copyright-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 700;
}
.tang-footer .footer-links {
  display: flex;
  align-items: center;
  gap: 27px;
}
.tang-footer .footer-links a {
  color: #171717;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.tang-footer .footer-links a:hover {
  color: #16c894;
}
@media (max-width: 767.98px) {
  .tang-footer .footer-inner {
    min-height: auto;
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .tang-footer .footer-copyright {
    gap: 12px;
    font-size: 13px;
  }
  .tang-footer .footer-links {
    gap: 22px;
  }
  .tang-footer .footer-links a {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .tang-footer .footer-inner {
    padding: 22px 0;
  }
  .tang-footer .footer-copyright {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.5;
  }
  .tang-footer .copyright-symbol {
    margin-top: 1px;
  }
  .tang-footer .footer-links {
    gap: 18px;
    margin: 0 auto;
  }
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 25px;
  z-index: 3;
  font-size: 18px;
  border: 1px solid #ffffff;
  outline: none;
  background-color: #16c894;
  color: #ffffff;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 50%;
}
#myBtn:hover {
  color: #16c894;
  border: 1px solid #16c894;
  background-color: #fff;
}

@media (max-width: 380px) {
  .modal-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .modal-header .Modal-btn {
    margin-top: 10px;
  }
}
.modal-header .modal-title-container p {
  font-size: 14px;
  color: #000;
  margin-bottom: 0;
}
.modal-header .modal-title-container h6 {
  color: #000;
}
.modal-header .Modal-btn {
  background-color: #16c894;
  padding: 8px 24px;
  color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

/* Customize  Color Of Selection  */
::selection {
  background-color: #16c894;
  color: white;
  z-index: 9;
}

::-moz-selection {
  background-color: #16c894;
  color: white;
  z-index: 9;
}

/* Customize  Scrollbar  */
::-webkit-scrollbar {
  width: 12px;
  z-index: 9;
}

::-webkit-scrollbar-thumb {
  background: #16c894;
  border-radius: 10px;
  z-index: 9;
}

.tang-footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(3, 3, 3, 0.12);
  border-bottom: 1px solid rgba(3, 3, 3, 0.12);
  color: #030303;
}
.tang-footer .footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.tang-footer .footer-copyright {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #171717;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.tang-footer .footer-copyright a {
  color: #ff7043;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tang-footer .footer-copyright a:hover {
  color: #16c894;
}
.tang-footer .copyright-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 700;
}
.tang-footer .footer-links {
  display: flex;
  align-items: center;
  gap: 27px;
}
.tang-footer .footer-links a {
  color: #171717;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.tang-footer .footer-links a:hover {
  color: #16c894;
}
@media (max-width: 767.98px) {
  .tang-footer .footer-inner {
    min-height: auto;
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .tang-footer .footer-copyright {
    gap: 12px;
    font-size: 13px;
  }
  .tang-footer .footer-links {
    gap: 22px;
  }
  .tang-footer .footer-links a {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .tang-footer .footer-inner {
    padding: 22px 0;
  }
  .tang-footer .footer-copyright {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.5;
  }
  .tang-footer .copyright-symbol {
    margin-top: 1px;
  }
  .tang-footer .footer-links {
    gap: 18px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=style2.css.map */
