*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

html {
  height: 100%;
/*   scroll-behavior: smooth; */
  scroll-behavior: auto !important;	
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

input, button, textarea, select {
  font: inherit;
}

:root {
  --white: #FFFFFF;
  --black: #000000;	
  --text-color: #F7F7F7;
  --text-link: #CECFD2;	
  --text-fade: #94979C;
  --primary-color: #69DCBE;
  --primary-color-hover: #2FC893;
  --border-color: #22262F;
  --border-color-secondary: #373A41;
  --border-color-tertiary: #D5D7DA;	
  --border-color-fade: #E9EAEB;
  --bg-dark: #0C0E12;	
  --bg-default-color: #282A2D;
  --bg-secondary: #13161B;	
  --placeholder-color: #85888E;
}

body.layout {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-optical-sizing: auto;	
  background-color: var(--bg-dark);
  color: var(--text-color);
  padding-top: 100px;
}

.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: flex;
  justify-content: center;
  background-color: var(--bg-dark);	
  z-index: 100;
  padding: 12px 0 4px; 
}

@media (max-width: 576px) {
  .layout-header {
	padding: 4px 0;  	 
  }
}

.navbar {
  min-height: 84px;	
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;	
  display: flex;
  align-items: center;	
  background-color: var(--bg-dark);
  color: var(--text-color);	
}

.navbar .navbar-brand {
  flex-shrink: 0;
  display: block;
  cursor: pointer;	
  margin-right: 20px;	
}

.navbar .navbar-brand img {
  width: auto;
  height: 60px;	
}

.navbar .navbar-content {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
}

.navbar .navbar-menu {
  display: flex;
  align-items: center;
}

.navbar .navbar-menu .navbar-item,
.navbar .navbar-nav .nav-link {
  display: block;
  padding: 6px 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(24/16);
  cursor: pointer;	
  color: var(--text-link);	
  transition: all .25s ease-in-out;
}

.navbar .navbar-menu .navbar-item:hover,
.navbar .navbar-menu .navbar-item:focus,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: var(--text-color);	
}

.navbar .navbar-menu .navbar-item.active {
  color: var(--text-fade);	
}

.navbar .navbar-menu li + li,
.navbar .navbar-nav li + li {
  margin-left: 2px;	
}

.navbar .navbar-menu.navbar-right li + li {
  margin-left: 24px;	
}

.navbar .navbar-toggler {
  border: none;	
}

.navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='%23f7f7f7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

@media (max-width: 991px) {
  .navbar {
	padding: 0;	
  }	
	
  .navbar .container-fluid {
	background-color: var(--bg-dark)	
  }
	
  .navbar .navbar-actions {
	padding-left: 8px; 	
  }	
	
  .navbar .navbar-collapse.collapse.show {
    padding-bottom: 24px;
  }
}

.layout-footer {
  padding: 48px 0;
  position: relative;	
}

.layout-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px); 
  max-width: 1216px;
  height: 1px;
  background-color: var(--border-color);	
}

.footer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;	
  padding: 0 32px;
}

/* .footer .footer-inner {
  position: relative;	
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.footer .footer-menu {
  display: flex;
  align-items: center;
}

.footer .footer-menu li + li {
  margin-left: 24px;	
}

.footer .footer-text {
  font-size: 16px;
  line-height: calc(24/16);
  margin: 0;
  color: var(--text-fade);
}

.footer .footer-brand {
  position: absolute;	
}

.footer .footer-brand {
  top: 0;
  left: 50%;
  transform: translateX(-50%);	
  display: block;
  cursor: pointer;	
  height: 60px;	
}

.footer .footer-brand img {
  height: 100%;
  width: auto;	
}

@media (max-width: 991px) {
  .footer .footer-inner {
	flex-direction: column;
	justify-content: center;
	gap: 24px;  
  }
	
  .footer .footer-brand {
    position: relative;
	left: unset;
	transform: unset;   
  }	
	
  .footer .footer-text {
	text-align: center;	
  }	
}	 */

.footer .footer-content {
  position: relative;	
  display: flex;	
  justify-content: space-between;
  min-height: 60px;
  margin-bottom: 32px;	
}

.footer .footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.footer .footer-nav .footer-link {
  font-size: 16px;
  line-height: calc(24/16);
  color: var(--text-fade); 	
}

.footer .footer-nav .footer-link:hover {
  color: var(--text-link); 	
}

.footer .footer-nav li + li {
  margin-left: 12px;	
}

.footer .footer-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer .footer-menu li + li {
  margin-left: 24px;	
}

.footer .footer-text {
  font-size: 16px;
  line-height: calc(24/16);
  margin: 0;
  color: var(--text-fade);
  text-align: center;	
}

.footer .footer-brand {	
  display: block;
  cursor: pointer;	
  height: 60px;	
}

.footer .footer-brand img {
  height: 100%;
  width: auto;	
}

@media (max-width: 991px) {
  .footer .footer-content {
	flex-direction: column;
	justify-content: center;
	gap: 24px; 
  }
	
  .footer .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }	
	
  .footer .footer-nav li + li {
    margin-left: 0;
	margin-top: 8px;  
  }	
	
  .footer .footer-menu {
    justify-content: center;
  }	
}	
	
.layout-wrapper {
  flex: 1 1 auto;
  perspective: 1px;
  scroll-behavior: smooth;	
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;	
}

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(20/14);
  border-width: 2px;
  border-style: solid;
  border-color: var(--white);	
  border-radius: 0;	
  color: var(--white);
  background-color: transparent;
  padding: 8px 14px;	
}

.btn:hover,
.btn:focus,
.btn.active {
  border-color: var(--border-bolor);
}

.btn-sm {
  padding: 6px 11px;	
}

.btn-lg {
  font-size: 16px;
  line-height: calc(24/16);
  padding: 10px 16px;	
}

.btn-fill {
  background-color: var(--white);
  color: var(--black);	
}

.btn-fill:hover,
.btn-fill:focus {
  background-color: var(--white);
  color: var(--black);	
}

.btn-primary {
  color: var(--bg-dark);
  border-color: var(--white);
  background-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active, 
.btn-primary.active {
  color: var(--bg-dark) !important;	
  background-color: var(--primary-color-hover) !important;
  border-color: var(--white) !important;
}

.btn-icon {
  display: inline-flex;
  align-items: center;	
}

.btn-icon > img:first-child {
  margin-right: 6px;	
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-light {
  color: var(--text-link) !important;	
}

.text-fade {
  color: var(--text-fade) !important;	
}

.text-xs {
  font-size: 12px;
  line-height: calc(18/12)
}

.text-sm {
  font-size: 14px;
  line-height: calc(20/14)
}

.text-md {
  font-size: 16px;
  line-height: calc(24/16)
}

.text-lg {
  font-size: 18px;
  line-height: calc(28/18)	
}

.text-xl {
  font-size: 20px;
  line-height: calc(30/20)	
}

.display-xs {
  font-size: 24px;
  line-height: calc(32/24);	
}

.display-sm {
  font-size: 30px;
  line-height: calc(38/30);	
}

.display-md {
  font-size: 36px;
  line-height: calc(44/36);
  letter-spacing: -.1px	
}

.display-lg {
  font-size: 48px;
  line-height: calc(60/48);
  letter-spacing: -.1px	
}

.display-xl {
  font-size: 60px;
  line-height: calc(72/60);
  letter-spacing: -.2px	
}

@media (max-width: 576px) {
  .display-xl {
	font-size: 48px;
	line-height: calc(60/48);
	letter-spacing: -.1px	
  }	
}	
	

.fw-normal {
  font-weight: 400 !important;	
}

.fw-medium {
  font-weight: 500 !important;	
}

.fw-semibold {
  font-weight: 600 !important;	
}

.mb-sm {
  margin-bottom: 4px !important;	
}

.mb-md {
  margin-bottom: 8px !important;
}

.mb-lg {
  margin-bottom: 12px !important;
}

.mb-xl {
  margin-bottom: 16px !important;	
}

.mb-2xl {
  margin-bottom: 20px !important;	
}

.mb-3xl {
  margin-bottom: 24px !important;	
}

.mb-4xl {
  margin-bottom: 32px !important;	
}

.mb-5xl {
  margin-bottom: 40px !important;	
}

.mb-6xl {
  margin-bottom: 48px !important;	
}

.mb-7xl {
  margin-bottom: 64px !important;	
}

.ms-sm {
  margin-left: 4px !important;
}

.ms-md {
  margin-left: 8px !important;
}

.ms-lg {
  margin-left: 12px !important;
}

.ms-xl {
  margin-left: 16px !important;	
}

.ms-2xl {
  margin-left: 20px !important;	
}

.ms-3xl {
  margin-left: 24px !important;	
}

.ms-4xl {
  margin-left: 32px !important;	
}

.ms-5xl {
  margin-left: 40px !important;	
}

.ms-6xl {
  margin-left: 48px !important;	
}

.me-none {
  margin-right: 0 !important;	
}

.gap-sm {
  gap: 4px;	
}

.gap-xl {
  gap: 16px;	
}

.gap-3xl {
  gap: 24px;	
}

.gap-4xl {
  gap: 32px;	
}

.form-label {
  position: relative;
  display: inline-block;	
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: calc(20/14) !important;
  color: var(--text-color) !important;
  margin: 0 0 6px !important;	
}

.form-label.form-label-required::after {
  content: "*";
  position: absolute;
  right: -10px;
  top: 0;
  color: var(--text-fade);	
}

.form-control {
  border-color: var(--border-color-secondary);
  background-color: var(--bg-dark) !important;
  color: var(--text-color) !important;
  border-radius: 8px !important;
}

.form-control:focus {
  border-color: rgba(105, 220, 190, .25) !important;
  box-shadow: 0 0 0 4px rgba(105, 220, 190, .25) !important;
}

.form-control::placeholder {
  color: var(--placeholder-color) !important;	
}

.form-control-md {
  font-size: 16px;
  line-height: calc(24/16) !important;		
  padding: 9px 13px !important;	
}

.card {
  background-color: var(--bg-secondary) !important;	
  border-radius: 16px;	
}

.card .card-body {
  padding: 32px;  	
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border-color-secondary);	
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: calc(20/14);
  color: var(--white);
  padding: 9px 15px;
  border: 1px solid var(--border-color-tertiary);
  border-radius: 9999px;
  background-color: var(--bg-default-color);
}

.award {
  position: relative;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
}

.award::before,
.award::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 36px;	
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;	
}

.award::before {
  left: 0;
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/Wreath-left.svg)	
}

.award::after {
  right: 0;
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/Wreath-right.svg)
}

.section-1 {
  padding: 96px 0 48px;
}

.section-2 {
  padding: 96px 0 96px; 
}

.section-3 {
  padding: 0 0 96px; 
}

.section-4 {
  padding: 64px 0 64px; 
}

.section-secondary {
  background-color: var(--bg-secondary) !important;	
}

.article-1 {
  padding: 96px 0 96px;
}

.image-group .image-group-row {
  display: flex;
  justify-content: center;	
}

.image-group .image-group-row + .image-group-row {
  margin-top: 16px;	
}

.image-group .image-group-row.row-align-start {
  align-items: flex-start;	
}

.image-group .image-group-row.row-align-end {
  align-items: flex-end;	
}

.image-group .image-group-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;	
  width: 100%;
  max-width: 160px;
}

.image-group .image-group-item img {
  width: 100%;
  height: auto;	
  transition: all .25s ease-in-out;
}

.image-group .image-group-item:hover img {
  transform: scale(1.5);
}

.image-group .image-group-item.image-square {
  height: 160px;
}

.image-group .image-group-item.image-rectangle {
  height: 240px;
}

.image-group .image-group-row .image-group-item + .image-group-item {
  margin-left: 16px;	
}

.avatar-group {
  display: inline-flex;
  justify-content: center;
  position: relative;
  padding-top: 8px;
}

.avatar-group .avatar {
  width: 52px;
  height: 52px;
  border: 1px solid var(--white);
  border-radius: 50%;	
}

.avatar-group .avatar.avatar-lg {
  width: 60px;
  height: 60px;	
}

.avatar-group .avatar img {
  width: 100%;
  max-height: 100%;
  border-radius: 50%;
}

.avatar-group .avatar:nth-child(1) {
  background-color: #E3C6D1;	
}

.avatar-group .avatar:nth-child(2) {
  background-color: #DDC0CE;	
}

.avatar-group .avatar:nth-child(3) {
  background-color: #C6D0CB;	
}

.avatar-group .avatar:nth-child(1) {
  margin-right: 20px;	
}

.avatar-group .avatar.avatar-lg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;	
}

.avatar-md {
  width: 48px;
  height: 48px;
  border-radius: 50%;	
}

.avatar-xl {
  width: 64px;
  height: 64px;
  border-radius: 50%;	
}

.avatar-initials {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--text-fade);	
  background-color: var(--border-color);
}

.grid {
  margin: 0 auto;
}

.grid-sizer,
.grid-item {
  width: calc(calc(100% / 3) - 21px);
  margin-bottom: 32px;
}

.grid .grid-item:nth-child(2) {
  padding-top: 32px;	
}

.grid .grid-item:nth-child(4) {
  padding-top: 40px;	
}

@media (max-width: 768px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
	
  .grid .grid-item:nth-child(2), .grid .grid-item:nth-child(4) {
    padding-top: 0;	
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .grid-sizer,
  .grid-item {
    width: calc(calc(100% / 2) - 21px);
  }
	
  .grid .grid-item:nth-child(2), .grid .grid-item:nth-child(4) {
    padding-top: 0;	
  }
}

.gallery-card {	
  padding: 32px;
  border: 1px solid var(--border-color);	
  border-radius: 12px;
  background-color: var(--bg-secondary);	
  transition: all .25s ease-in-out;	
}

.gallery-card:hover {
  border-color: var(--white);	
}

.gallery-card img {
  width: 100%;
}

.image-card {
  position: relative;
  width: 100%;	
  aspect-ratio: 1 / 1.25;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;	
}

.accordion-item {
  background-color: transparent;	
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none!important;	
  border-top: none!important;
  border-bottom-color: var(--border-color);
  padding: 24px 0;	
}

.accordion-item:last-child {
  border-bottom: 0 !important	
}

.accordion-button {
  color: var(--text-color);
  background-color: transparent;	
  border-radius: 0 !important;
  padding: 0; 
}

.accordion-button:not(.collapsed) {
  color: var(--text-color);
  background-color: transparent;
  box-shadow: none;	
}	

.accordion-button:focus {
  box-shadow: none;	
}

.accordion-button::after {
  width: 24px;
  height: 24px;
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/plus-circle.svg);	
  background-size: 24px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/minus-circle.svg);
}

.accordion-body {
  padding: 4px 0 0;
}

.nav-underline {
  flex: 1;
  border-bottom: 1px solid var(--border-color);	
}

.nav-underline .nav-item + .nav-item {
  margin-left: 16px;	
}

.nav-underline .nav-link {
  padding: 0 4px 12px;
  position: relative;
  background-color: transparent !important;
  font-size: 16px;
  font-weight: 600;
  line-height: calc(24/16);
  color: var(--text-fade);
  border: none !important;
}

.nav-underline .nav-link:hover,
.nav-underline .nav-link.active {
  color: var(--text-link) !important;	
}

.nav-underline .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--text-link);	
}

@media (max-width: 768px) {
  .nav-underline .nav-item + .nav-item {
  	margin-top: 16px;
	margin-left: 0;
  }
	
  .nav-underline .nav-item {
	width: 100%;
  }
	
  .nav-underline .nav-link {
	width: 100%;  
  }	
}	

.language-select {
  background-color: var(--bg-dark);
  color: var(--text-color);
  border: none; 
  outline: 0;	
  appearance: none;	
  font-size: 16px;
  font-weight: 600;
  line-height: calc(24/16);
  width: 56px;	
}

.maxw-640 {
  width: 100%;
  max-width: 640px;	
}

.maxw-768 {
  width: 100%;
  max-width: 768px;	
}

.language-select[data-value="en"],
.language-select[data-value="de"] {
  padding-left: 30px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.language-select[data-value="en"] {
  background-image: url('https://www.tattooartx.com/wp-content/uploads/2025/11/GB.svg');
}

.language-select[data-value="de"] {
  background-image: url('https://www.tattooartx.com/wp-content/uploads/2025/11/DE.svg');
}

.banner {
  position: relative;
  overflow: hidden;
}

.banner .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: -1;	
}

.banner .banner-content {
  position: relative;	
  padding: 128px 32px;
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/bg_pattern.png);
  background-position: center center;
  background-size: auto 100%;
  background-repeat: no-repeat;	
}

.header-artist {
  position: relative;
  overflow: hidden;
}

.header-artist .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-position: center calc(50% - 250px);
  background-repeat: no-repeat;
  will-change: transform;
  z-index: -1;
}

.section-about {
  position: relative;
}

.section-about::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(50% - 32px);
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/x_about.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;	
}

@media (max-width: 576px) {
  .section-about {
	padding-bottom: 360px;	
  }
	
  .section-about::before {
	bottom: 0;
	top: unset;
	left: 0;
	height: 360px;
	width: 100%;  
  }	
}

.profile-card {
  position: relative;	
  aspect-ratio: 1 / 1.25;
  width: 100%;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;	
}

.profile-card .profile-card-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(12, 14, 18, .3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.profile-card .profile-card-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.profile-card .profile-card-link {
  display: inline-block;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/arrow-up-right.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;	
}

.profile-card .profile-card-link[aria-expanded="true"] {
  background-image: url(https://www.tattooartx.com/wp-content/uploads/2025/11/x-close.svg);
}


.profile-card .profile-card-text-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(20/14);
  cursor: pointer;
  user-select: none;
  transition: color .25s ease-in-out;
}


.profile-card .profile-card-text-link:hover {
  color: var(--primary-color)	
}

.review-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
}

form > p + p {
  margin-top: 16px;	
}

form label {
  position: relative;
  display: block;	
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: calc(20/14) !important;
  color: var(--text-color) !important;
  width: 100%;	
}

form > p > label > span {
  display: block;
  width: 100%;	
  margin: 6px 0 0 !important;	
}

form input[type="text"],
form input[type="time"],
form input[type="date"],
form input[type="email"],
form textarea {
  border: 1px solid var(--border-color-secondary);
  background-color: var(--bg-dark) !important;
  color: var(--text-color) !important;
  border-radius: 8px !important;
  width: 100%;	
  font-size: 16px;
  line-height: calc(24/16) !important;		
  padding: 9px 13px !important;		
}

form input[type="text"]:focus,
form input[type="time"]:focus,
form input[type="date"]:focus,
form input[type="email"]:focus,
form textarea:focus,
form input[type="text"]:focus-visible,
form input[type="time"]:focus-visible,
form input[type="date"]:focus-visible,
form input[type="email"]:focus-visible,
form textarea:focus-visible {
  border: 1px solid rgba(105, 220, 190, .25) !important;
  box-shadow: 0 0 0 4px rgba(105, 220, 190, .25) !important;
}

form input::placeholder {
  color: var(--placeholder-color) !important;	
}

form input[type="submit"] {
  border-radius: 0 !important;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white);
  font-size: 16px;
  line-height: calc(24/16);
  font-weight: 600;
  padding: 10px 16px;
  color: var(--white);
  background-color: transparent;
  cursor: pointer;
  user-select: none;	
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 32px 0 0;	
}

.screen-reader-response {
  margin: 0 0 24px;	
}

.screen-reader-response ul {
  display: none;
}

.screen-reader-response p {
  font-size: 16px;
  line-height: calc(24/16);	
}

span[class$="not-valid-tip"] {
  display: inline-block;
  font-size: 14px;
  line-height: calc(20/14);
  margin-top: 4px;
  color: #FDA29B;
}

div[class$="response-output"] {
  font-size: 16px;
  line-height: calc(24/16);
  margin: 24px 0 0;	
}

.modal .modal-content {
  border-radius: 0;
}

.modal .modal-header {
  position: relative;
  padding: 0;
  border-bottom: 0;	
}

.modal .modal-header .btn-close {
  position: absolute;
  top: -24px;
  right: -24px;
  border-radius: 50%;	
}

.modal .modal-body {
  padding: 0;
}

@media (max-width: 576px) {
  .modal .modal-header .btn-close {
    right: 0;
  }
}

.section-comment {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .5);
}

.section-comment .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: -1;
}

@media (max-width: 576px) {
  .wpx-sm-200 {
	width: 200px;  	
  } 	
}

.ratio-9x16 {
  --bs-aspect-ratio: calc(16 / 9 * 100%);
}