@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@charset "UTF-8";
* {
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  width: 100%;
  min-height: 100vh;
  background-color: #FFFFFF;
  margin: 0;
  background: #f9f9f9;
  color: #1f1f1f;
  font-size: 16px;
}
body.menu-open {
  overflow: hidden;
}
body .content-pt,
body .content-en {
  display: none;
}
body.lang-pt .content-pt {
  display: block;
}
body.lang-en .content-en {
  display: block;
}

.lang-content {
  display: none;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.container.contact-container {
  width: 1024px;
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  .container.contact-container {
    width: 100%;
  }
}
button {
  font-family: "Montserrat", sans-serif !important;
}

.header {
  width: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  padding: 1rem 0;
  transition: background 0.3s ease-in-out;
  will-change: background;
  z-index: 9999;
}
.header.header-user, .header.active {
  background: #3e2544;
}
.header.active {
  background: #3e2544;
}
.header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.header .container .nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container .nav .logo {
  max-width: 150px;
  outline: 0 !important;
  z-index: 1001;
}
.header .container .nav .logo img {
  display: block;
  width: 100%;
}
.header .container .nav .links {
  display: flex;
  align-items: center;
}
.header .container .nav .links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  margin: 0 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
.header .container .nav .links a:hover {
  color: #fddb7a;
  text-decoration: underline;
}
.header .container .nav .access {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .container .nav .access .btn {
  color: #fddb7a;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  margin: 0 0.5rem;
}
.header .container .nav .access .btn:hover {
  background: #fddb7a;
  color: #fff;
}
.header .container .nav .access .btn.login {
  background: #fddb7a;
  color: #3e2544;
}
.header .container .nav .access .btn.login:hover {
  background: rgb(252.2444444444, 205.4, 71.7555555556);
}
.header .container .nav .access .btn.signup {
  border: 2px solid #fddb7a;
  color: #fddb7a;
}
.header .container .nav .access .btn.signup:hover {
  background: #fddb7a;
  color: #3e2544;
}
.header .container .nav .access a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  margin: 0 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
.header .container .nav .access a:hover {
  color: #fddb7a;
  text-decoration: underline;
}
.header .container .nav .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 28px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
}
.header .container .nav .hamburger div {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}
.header .container .nav .hamburger.open div:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.header .container .nav .hamburger.open div:nth-child(2) {
  opacity: 0;
}
.header .container .nav .hamburger.open div:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header .container .nav {
    justify-content: center;
  }
  .header .container .nav .links, .header .container .nav .access {
    display: none;
  }
  .header .container .nav .hamburger {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  .header .container .nav.open {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding-bottom: 1rem;
  }
  .header .container .nav.open .logo {
    margin-bottom: 1.5rem;
  }
  .header .container .nav.open .links {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 100%;
    order: 2;
  }
  .header .container .nav.open .links a {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    color: #fff;
  }
  .header .container .nav.open .links a:hover {
    color: #fddb7a;
    text-decoration: none;
  }
  .header .container .nav.open .access {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    order: 3;
  }
  .header .container .nav.open .access .btn {
    width: calc(100% - 4rem);
    max-width: 280px;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .header .container .nav.open .hamburger div {
    background-color: #fff;
  }
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero.bg-purple {
  background: rgba(62, 37, 68, 0.7176470588);
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero .text-box {
  width: 85%;
  color: #fff;
}
.hero .text-box h1 {
  font-size: 56px;
  font-weight: 700;
}
.hero .text-box h1 span {
  color: #fddb7a;
}
.hero .text-box p {
  margin: 1rem 0;
  font-size: 22px;
}
.hero .cta {
  margin-top: 2rem;
  display: flex;
  justify-content: start;
}
.hero .cta .btn {
  background: #fddb7a;
  color: #1f1f1f;
  border: none;
  padding: 0.75rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fddb7a;
  cursor: pointer;
}
.hero .cta .btn:hover {
  border: 2px solid #fddb7a;
  color: #fddb7a;
  background-color: transparent;
}

.section {
  padding: 6rem 1rem;
  background-color: #fff;
}
.section.light {
  background-color: #f9f9f9;
}
.section .emphasis {
  width: -moz-max-content;
  width: max-content;
  background-color: #fddb7a;
  margin: 0 auto;
  color: #917a96;
  padding: 5px 30px;
  padding-top: 7px;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.section h4 {
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: normal;
  font-size: 1rem;
}
.section .features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.section .features .circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #917a96;
  margin-bottom: 2rem;
}
.section .features .circle-icon ion-icon {
  font-size: 2rem;
  color: #fddb7a;
}
.section .features .feature {
  max-width: 350px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 1rem 0;
}
.section .features .feature h3 {
  margin-bottom: 1rem;
}
.section .features .feature p {
  font-size: 14px;
  color: #4b5563;
}
.section .benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(35px, 1fr));
  gap: 1rem;
}
.section .benefits .benefit {
  min-width: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  margin: 1rem 0;
}
.section .benefits .benefit .square-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fddb7a;
  margin-right: 1rem;
}
.section .benefits .benefit .square-icon ion-icon {
  font-size: 2rem;
  color: #917a96;
}
.section .benefits .benefit .box-text {
  flex: 1;
  text-align: left;
}
.section .benefits .benefit .box-text h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
.section .benefits .benefit .box-text p {
  font-size: 14px;
  color: #4b5563;
}
.section .testimonials .testimony {
  width: 90%;
  margin: 0 auto;
}
.section .testimonials .testimony .item {
  width: auto;
  background-color: #fff;
  padding: 50px;
  margin: 0 50px;
  border-radius: 12px;
  box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.05);
}
.section .testimonials .testimony .item .text {
  margin-bottom: 2rem;
  font-style: italic;
}
.section .testimonials .testimony .item .name {
  font-weight: 700;
}
.section .testimonials .testimony .item .office {
  font-size: 14px;
}
.section .testimonials .testimony .owl-stage-outer {
  padding: 20px 0;
  overflow: hidden;
}
.section .companies {
  margin-top: 3rem;
  white-space: nowrap;
  padding: 20px 0;
  overflow: hidden;
}
.section .companies h3 {
  text-align: center;
}
.section .companies .carousel-track {
  display: inline-block;
  animation: scroll 20s linear infinite;
}
.section .companies .company {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  margin: 0 auto;
  margin-top: 2rem;
}
.section .companies .company .slider {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.section .companies .company .slider::before {
  left: 0;
}
.section .companies .company .slider::after {
  right: 0;
}
.section .companies .company .slider .slide-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  vertical-align: middle;
  animation: scroll 40s linear infinite;
}
.section .companies .company .slider .slide-track .logo {
  width: 100px;
  height: 100px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.section .companies .company .slider .slide-track .logo img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5px;
}
.section .details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
}
.section .details .image {
  width: 40%;
}
.section .details .image img {
  width: 100%;
  height: auto;
}
.section .details .text {
  width: 50%;
  padding: 0 50px;
  text-align: left !important;
}
.section .details .text h2, .section .details .text h4 {
  text-align: left;
  margin-bottom: 2rem;
}
.section .details .text .list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1rem;
}
.section .details .text .list li {
  min-height: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  vertical-align: middle;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: #3e2544;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background 0.3s;
  background-color: #f5f2fe;
}
.section .details .text .list li ion-icon {
  font-size: 1.5rem;
  color: #3e2544;
  margin-right: 0.5rem;
}
.section .faq {
  margin-top: 3rem;
  overflow: hidden;
}
.section .faq .faq-item {
  background-color: #fff;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}
.section .faq .faq-item .faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.section .faq .faq-item .faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #3e2544;
}
.section .faq .faq-item .faq-question::after {
  content: "▼";
  font-size: 1rem;
  color: #3e2544;
  transition: transform 0.3s ease;
}
.section .faq .faq-item .faq-answer {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
  color: #4b5563;
}
.section .faq .faq-item .faq-answer p {
  margin: 0;
}
.section .faq .faq-item.active .faq-question::after {
  transform: rotate(180deg);
}
.section .contact {
  display: flex;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
}
.section .contact .contact-info {
  flex: 1;
  background: #3e2544;
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section .contact .contact-info h2 {
  text-align: left !important;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.section .contact .contact-info p {
  margin-bottom: 2rem;
  line-height: 1.6;
}
.section .contact .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.section .contact .contact-info .info-item .icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #fddb7a;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section .contact .contact-info .info-item .icon ion-icon {
  font-size: 1.3rem;
  color: #917a96;
}
.section .contact .contact-info .info-item strong {
  display: block;
  font-weight: 600;
}
.section .contact .contact-info .info-item span {
  font-size: 0.9rem;
  opacity: 0.9;
}
.section .contact .contact-info .btn-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}
.section .contact .contact-info .btn-whatsapp ion-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.section .contact .contact-form {
  flex: 1;
  padding: 2rem;
  background: #fff;
}
.section .contact .contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.section .contact .contact-form input, .section .contact .contact-form select, .section .contact .contact-form textarea {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.section .contact .contact-form .form-row {
  display: flex;
  gap: 1rem;
}
.section .contact .contact-form .form-row input, .section .contact .contact-form .form-row select {
  flex: 1;
}
.section .contact .contact-form textarea {
  font-family: "Montserrat", sans-serif;
  min-height: 120px;
  resize: vertical;
}
.section .contact .contact-form button {
  background: #fddb7a;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 50px;
  color: #3e2544;
  font-weight: 600;
  font-size: 1rem;
  float: right;
  cursor: pointer;
}
.section .contact .contact-form button:hover {
  background: rgb(252.6222222222, 212.2, 96.8777777778);
}
.section.page-content {
  background-color: #917a96;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.section.page-content .content-box {
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  padding: 40px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.section.page-content .content-box h2 {
  text-align: left;
  margin-bottom: 2rem;
}
.section.page-content .content-box h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.section.page-content .content-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .hero .text-box {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
  .hero .text-box h1 {
    font-size: 32px;
  }
  .hero .text-box p {
    font-size: 14px;
  }
  .hero .cta {
    justify-content: center;
  }
  .hero .cta .btn {
    width: 80%;
    text-align: center;
  }
  .section {
    padding: 3rem 1rem;
  }
  .section h2 {
    font-size: 1.5rem;
  }
  .section h4 {
    font-size: 0.9rem;
  }
  .section .features {
    flex-direction: column;
    align-items: center;
  }
  .section .features .feature {
    max-width: 100%;
    width: 100%;
  }
  .section .benefits {
    grid-template-columns: 1fr;
  }
  .section .testimonials .testimony {
    width: 100%;
  }
  .section .testimonials .testimony .item {
    margin: 0 1rem;
    padding: 2rem;
  }
  .section .companies .company {
    flex-wrap: wrap;
  }
  .section .companies .company .slider {
    height: auto;
  }
  .section .companies .company .slider .slide {
    width: 100px;
    height: auto;
    font-size: 0.9rem;
  }
  .section .companies .company .slider .slide .logo {
    margin: 1rem;
  }
  .section .details {
    flex-direction: column;
  }
  .section .details .image, .section .details .text {
    width: 100%;
    padding: 0;
  }
  .section .details .text {
    padding-top: 2rem;
  }
  .section .contact {
    flex-direction: column;
  }
  .section .contact .contact-info, .section .contact .contact-form {
    width: 100%;
    padding: 1.5rem;
  }
  .section .contact .contact-info .form-row, .section .contact .contact-form .form-row {
    display: block;
  }
  .section .contact .contact-info {
    border-radius: 1rem 1rem 0 0;
  }
  .section .contact .contact-form {
    border-radius: 0 0 1rem 1rem;
  }
}
@media (max-width: 1366px) and (min-width: 1024px) {
  .hero .text-box h1 {
    font-size: 42px;
  }
  .hero .text-box p {
    font-size: 18px;
  }
  .section h2 {
    font-size: 2rem;
  }
  .section h4 {
    font-size: 1rem;
  }
}
.auth-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
}
.auth-container.bg-purple {
  background: rgba(62, 37, 68, 0.7176470588);
}
.auth-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.auth-container .login-box {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
}
.auth-container .login-box .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background-color: #3e2544;
}
.auth-container .login-box .left .logo {
  display: block;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.auth-container .login-box .left .logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
}
.auth-container .login-box .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #fff;
}
.auth-container .login-box .right .language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
}
.auth-container .login-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.auth-container .login-box p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.auth-container .login-box form {
  text-align: left;
}
.auth-container .login-box form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #374151;
}
.auth-container .login-box form .input-group {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.auth-container .login-box form .input-group .icon {
  margin-right: 0.5rem;
  color: #9ca3af;
}
.auth-container .login-box form .input-group input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
}
.auth-container .login-box form .input-group .toggle-password-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #3e2544;
  font-size: 1.2rem;
  z-index: 2;
}
.auth-container .login-box form .input-group .toggle-password-icon:hover {
  color: #333;
}
.auth-container .login-box form .input-group-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-top: 15px;
}
.auth-container .login-box form .input-group-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
}
.auth-container .login-box form .input-group-checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.auth-container .login-box form .input-group-checkbox label a {
  color: #3e2544;
  text-decoration: underline;
}
.auth-container .login-box form .input-group-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #999;
  border-radius: 3px;
  background-color: #fff;
  transition: border-color 0.2s ease;
}
.auth-container .login-box form .input-group-checkbox input[type=checkbox]:checked + label::after {
  content: "✔";
  position: absolute;
  left: 3px;
  top: 1px;
  font-size: 16px;
  font-weight: bold;
  color: #3e2544;
}
.auth-container .login-box form .input-group-checkbox:hover label::before {
  border-color: #3e2544;
}
.auth-container .login-box form .input-group-checkbox input[type=checkbox]:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(90, 80, 180, 0.4);
}
.auth-container .login-box form .link-reset {
  color: #3e2544 !important;
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  float: right;
}
.auth-container .login-box form .link-reset:hover {
  text-decoration: underline;
}
.auth-container .login-box form button {
  width: 100%;
  background-color: #3e2544;
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.auth-container .login-box form button:hover {
  background-color: rgb(31.8857142857, 19.0285714286, 34.9714285714);
}
.auth-container .login-box .signup-text {
  color: #374151;
  margin-top: 1rem;
  font-size: 0.85rem;
}
.auth-container .login-box .signup-text a {
  color: #3e2544;
  text-decoration: none;
}
.auth-container .login-box .signup-text a:hover {
  text-decoration: underline;
}
.auth-container .modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.auth-container .modal-overlay .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 820px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}
.auth-container .modal-overlay .modal-content .modal-body {
  max-height: 60vh;
  overflow-y: auto;
}
.auth-container .modal-overlay .modal-content .modal-body::-webkit-scrollbar {
  width: 5px;
}
.auth-container .modal-overlay .modal-content .modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
  border-radius: 10px;
}
.auth-container .modal-overlay .modal-content .modal-body::-webkit-scrollbar-thumb {
  background-color: #3e2544;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0);
}
.auth-container .modal-overlay .modal-content .modal-body::-webkit-scrollbar-thumb:hover {
  background-color: #3e2544;
}
.auth-container .modal-overlay .modal-content .close-modal {
  display: block;
  width: 100%;
  padding: 12px 20px;
  margin-top: 15px;
  background-color: #3e2544;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  margin-top: 2rem;
}
.auth-container .modal-overlay .modal-content .close-modal:hover {
  background-color: rgb(31.8857142857, 19.0285714286, 34.9714285714);
}
.auth-container .modal-overlay .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.auth-container .modal-overlay .modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}
.auth-container .terms-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  padding: 25px 35px;
}
.auth-container .terms-text p, .auth-container .terms-text ul {
  margin-bottom: 15px;
}
.auth-container .terms-text ul {
  padding-left: 20px;
}
.auth-container .terms-text strong {
  color: #3e2544;
}
.auth-container .anonymous_access {
  margin-top: 20px;
  text-align: center;
}
.auth-container .anonymous_access p {
  margin-bottom: 5px;
  color: #374151;
}
.auth-container .anonymous_access a {
  color: #3e2544;
  text-decoration: underline;
  font-weight: 600;
}
.auth-container .anonymous_access a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .auth-container .login-box {
    flex-direction: column;
  }
  .auth-container .login-box .left,
  .auth-container .login-box .right {
    width: 100%;
  }
  .auth-container .terms-text {
    padding: 0;
  }
}

.footer {
  background: #3e2544;
  color: #dddddd;
  padding: 3rem 2rem;
  font-size: 0.95rem;
}
.footer .footer-content {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
}
.footer .footer-content.center {
  justify-content: center;
  text-align: center;
}
.footer .footer-content.center p {
  text-align: center;
  margin: 0 auto 1rem auto;
}
.footer .footer-content.center .logo {
  margin: 0 auto 1rem auto;
}
.footer .footer-content.center .logo-column .social-icons {
  justify-content: center;
}
.footer .footer-column h4 {
  color: #dddddd;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
}
.footer .footer-column ul {
  list-style: none;
  padding: 0;
}
.footer .footer-column ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  margin-bottom: 0.8rem;
  text-align: left;
}
.footer .footer-column ul li a {
  color: #dddddd;
  text-decoration: none;
}
.footer .footer-column ul li a:hover {
  color: #d1d5db;
}
.footer .footer-column ul li .icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin-right: 0.8rem;
  background-color: #917a96;
}
.footer .footer-column ul li .icon ion-icon {
  font-size: 18px;
  color: #fff;
}
.footer .logo-column {
  max-width: 325px;
}
.footer .logo-column .logo {
  width: 200px;
  display: block;
  margin-bottom: 1rem;
}
.footer .logo-column .logo img {
  width: 100%;
}
.footer .logo-column p {
  text-align: left;
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 0.9rem;
}
.footer .logo-column .social-icons {
  display: flex;
  gap: 0.75rem;
}
.footer .logo-column .social-icons a {
  color: #d1d5db;
  font-size: 1.25rem;
}
.footer .logo-column .social-icons a:hover {
  color: #dddddd;
}
.footer .footer-bottom {
  max-width: 1200px;
  border-top: 1px solid #8d8d8d;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  flex-wrap: wrap;
  font-size: 0.85rem;
  margin-left: auto;
  margin-right: auto;
  color: #dddddd;
}
.footer .footer-bottom .footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer .footer-bottom .footer-links a {
  color: #dddddd;
  text-decoration: none;
}
.footer .footer-bottom .footer-links a:hover {
  color: #d1d5db;
}
@media (max-width: 767px) {
  .footer {
    padding: 2rem;
  }
  .footer .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer .logo-column {
    max-width: 100%;
  }
  .footer .logo-column .logo {
    width: 150px;
    margin-bottom: 0.8rem;
  }
  .footer .logo-column p {
    font-size: 0.85rem;
  }
  .footer .footer-column {
    width: 100%;
    margin-bottom: 1rem;
  }
  .footer .footer-column h4 {
    margin-bottom: 0.7rem;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }
  .footer .footer-bottom .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 2.5rem 1.5rem;
  }
  .footer .footer-content {
    gap: 1.5rem;
  }
  .footer .footer-column {
    width: calc(50% - 1rem);
  }
  .footer .footer-column:last-child {
    width: 100%;
  }
  .footer .logo-column {
    max-width: 100%;
  }
  .footer .footer-bottom .footer-links {
    gap: 1rem;
  }
}

#events {
  width: 100%;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 150px;
  padding-bottom: 50px;
}
#events .alert {
  margin: 0 auto;
  max-width: 600px;
  padding: 1rem;
  color: #3e2544;
  border-radius: 8px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
@media (max-width: 600px) {
  #events .alert {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
#events h2 {
  text-align: left;
  color: #3e2544;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
}
#events h4 {
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: normal;
  font-size: 1rem;
}
#events .wrapper {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}
#events .wrapper .gallery-card {
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#events .wrapper .gallery-card .gallery-header {
  display: flex;
  align-items: center;
}
#events .wrapper .gallery-card .gallery-header .avatar {
  background: #917a96;
  color: #fddb7a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-right: 12px;
}
#events .wrapper .gallery-card .gallery-header .gallery-info .gallery-title {
  font-weight: bold;
  font-size: 16px;
  color: #1f2937;
}
#events .wrapper .gallery-card .gallery-header .gallery-info .gallery-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}
#events .wrapper .gallery-card .gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
#events .wrapper .gallery-card .gallery-images .photo,
#events .wrapper .gallery-card .gallery-images .no-photo {
  background: #917a96;
  color: #fddb7a;
  border-radius: 8px;
  width: calc((100% - 40px) / 6);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#events .wrapper .gallery-card .gallery-images .photo .icon,
#events .wrapper .gallery-card .gallery-images .no-photo .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fddb7a;
  font-size: 40px;
}
#events .wrapper .gallery-card .gallery-images img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
#events .wrapper .gallery-card .gallery-button {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: #3e2544;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}
#events .wrapper .gallery-card .gallery-button:hover {
  background-color: rgb(31.8857142857, 19.0285714286, 34.9714285714);
}
@media (max-width: 1024px) {
  #events .wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  #events h2 {
    font-size: 1.5rem;
  }
  #events .gallery-card {
    padding: 12px;
  }
  #events .gallery-card .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }
  #events .gallery-card .gallery-header .avatar {
    margin-right: 0 !important;
    margin-bottom: 8px !important;
  }
  #events .gallery-card .gallery-images {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
  }
  #events .gallery-card .gallery-images .no-photo {
    width: 100% !important;
    height: 100% !important;
  }
  #events .gallery-card .gallery-images .photo,
  #events .gallery-card .gallery-images img {
    width: 100% !important;
    height: 100% !important;
  }
  #events .gallery-card .gallery-button {
    font-size: 13px;
    padding: 8px 0;
  }
}

#pictures {
  width: 100%;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 150px;
  padding-bottom: 50px;
}
#pictures .alert {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  padding: 1rem;
  background-color: #917a96;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#pictures h2 {
  text-align: left;
  color: #3e2544;
  font-size: 2rem;
  text-align: center;
}
#pictures .infos-content h1 {
  text-transform: uppercase;
  text-align: center;
  color: #3e2544;
  transition: all 0.5s ease-in-out;
}
#pictures .infos-content h1 a {
  text-decoration: none !important;
  color: #3e2544 !important;
  font-size: 46px !important;
}
#pictures .infos-content .infos {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  margin-top: 1rem;
  flex-wrap: wrap;
}
#pictures .send-photo-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  margin: 3rem 0;
}
#pictures .send-photo-box .send-photo-box-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
}
#pictures .send-photo-box .send-photo-box-form .input-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  border-radius: 25px;
  position: relative;
  text-align: center;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition {
  width: 100%;
  padding: 2rem;
  margin-top: 0 !important;
  background-color: #917a96;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-left {
  background-color: #917a96;
  width: 60px !important;
  height: 60px !important;
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-left img {
  max-width: 60px;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-left img.no-image {
  width: 60px;
  height: 60px;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-right {
  max-width: 350px;
  width: 100%;
  flex-grow: 1;
  cursor: pointer;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-right label {
  font-weight: bold;
  margin-bottom: 2px;
  cursor: pointer;
  display: block;
  color: #FFFFFF;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-right span {
  font-size: 14px;
  cursor: pointer;
  display: block;
  color: #FFFFFF;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .btn-facerecognition-clear {
  opacity: 0;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .btn-facerecognition-clear.active {
  opacity: 1;
  cursor: pointer;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .btn-facerecognition-clear img {
  display: block;
  width: 12px;
  height: 12px;
}
#pictures .send-photo-box .send-photo-box-form .input-group.recognition .input-recognition {
  display: none;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload {
  width: 100%;
  padding: 2rem;
  margin-top: 0 !important;
  background-color: #917a96;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-left {
  background-color: #917a96;
  width: 60px !important;
  height: 60px !important;
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-left img {
  max-width: 60px;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-left img.no-image {
  width: 60px;
  height: 60px;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-right {
  max-width: 350px;
  width: 100%;
  flex-grow: 1;
  cursor: pointer;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-right label {
  font-weight: bold;
  margin-bottom: 2px;
  cursor: pointer;
  display: block;
  color: #FFFFFF;
}
#pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-right span {
  font-size: 14px;
  cursor: pointer;
  display: block;
  color: #FFFFFF;
}
#pictures .send-photo-box .send-photo-box-form button {
  min-width: 150px;
  font-size: 16px;
  padding: 0.5rem 2.5rem;
  outline: 0;
  border: none;
  white-space: nowrap;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
}
#pictures .send-photo-box .send-photo-box-form button.recognition-button {
  text-transform: uppercase;
  background: #fddb7a;
  color: #3e2544;
  border: 1px solid #fddb7a;
}
#pictures .send-photo-box .send-photo-box-form button.upload-button {
  text-transform: uppercase;
  background: #fddb7a;
  color: #3e2544;
  border: 1px solid #fddb7a;
}
#pictures .send-photo-box .send-photo-box-form button.recognition-button-cancel {
  border: 1px solid #917a96;
  background-color: #917a96;
  color: white;
  text-decoration: underline;
  display: none;
}
#pictures .wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
#pictures .wrapper .event-photo {
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  height: auto;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
#pictures .wrapper .event-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
#pictures .wrapper .event-photo:hover img {
  transform: scale(1.2);
}
#pictures .wrapper .event-photo .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  background-color: #917a96;
  padding: 0.5rem 0;
  border-radius: 0 0 15px 15px;
}
#pictures .wrapper .event-photo .buttons a {
  max-width: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #917a96;
  text-decoration: none;
}
#pictures .wrapper .event-photo .buttons a:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
#pictures .box-upload {
  width: 100%;
}
#pictures .box-upload .box-body h4 {
  margin: 1rem 0;
  text-align: center;
  color: #3e2544;
}
#pictures .box-upload .box-body .dropzone {
  border: 1px solid #3e2544;
}
@media (max-width: 1024px) {
  #pictures .send-photo-box {
    flex-direction: column;
  }
  #pictures .send-photo-box .send-photo-box-form {
    width: 100%;
  }
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition, #pictures .send-photo-box .send-photo-box-form .input-group.upload {
    padding: 1.5rem;
  }
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-left,
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .upload-left, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .recognition-left,
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .upload-left, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .recognition-left,
  #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .upload-left, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .recognition-left,
  #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-left {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto;
  }
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-left img,
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .upload-left img, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .recognition-left img,
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .upload-left img, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .recognition-left img,
  #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .upload-left img, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .recognition-left img,
  #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-left img {
    max-width: 100%;
    height: auto;
  }
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-right, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .upload-right, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .recognition-right, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .upload-right, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .recognition-right, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .upload-right, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .recognition-right, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-right {
    max-width: 100%;
  }
  #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-right label, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .recognition-right span, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .upload-right label, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .recognition-flex .upload-right span, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .recognition-right label, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .recognition-right span, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .upload-right label, #pictures .send-photo-box .send-photo-box-form .input-group.recognition .upload-flex .upload-right span, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .recognition-right label, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .recognition-right span, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .upload-right label, #pictures .send-photo-box .send-photo-box-form .input-group.upload .recognition-flex .upload-right span, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .recognition-right label, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .recognition-right span, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-right label, #pictures .send-photo-box .send-photo-box-form .input-group.upload .upload-flex .upload-right span {
    font-size: 14px;
    text-align: center;
  }
  #pictures .send-photo-box .send-photo-box-form button {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 14px;
  }
  #pictures .wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  #pictures .wrapper .event-photo {
    width: calc(50% - 10px);
    max-width: 100%;
  }
  #pictures .wrapper .event-photo .buttons a {
    max-width: 40px;
    font-size: 18px;
    padding: 0.2rem;
  }
}
@media (max-width: 768px) {
  #pictures .send-photo-box {
    margin: 2rem 0;
  }
  #pictures .wrapper .event-photo {
    max-width: 100%;
  }
  #pictures .box-upload .box-body h4 {
    font-size: 1.25rem;
  }
  #pictures .box-upload .box-body .dropzone {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  #pictures .send-photo-box-form .input-group {
    padding: 1rem;
  }
  #pictures .send-photo-box-form .input-group .recognition-left, #pictures .send-photo-box-form .input-group .upload-left {
    width: 75px !important;
    height: 75px !important;
    margin: 0 auto;
  }
  #pictures .send-photo-box-form .input-group .recognition-right label, #pictures .send-photo-box-form .input-group .recognition-right span, #pictures .send-photo-box-form .input-group .upload-right label, #pictures .send-photo-box-form .input-group .upload-right span {
    font-size: 13px;
  }
  #pictures .send-photo-box-form button {
    font-size: 13px;
  }
  #pictures .wrapper {
    gap: 10px;
  }
  #pictures .wrapper .event-photo {
    max-width: 100%;
  }
}

#profile {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 150px;
  padding-bottom: 50px;
}
#profile h2 {
  text-align: left;
  color: #3e2544;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
}
#profile h4 {
  width: 70%;
  color: #4b5563;
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}
#profile .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#profile .wrapper .profile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
#profile .wrapper .profile form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
}
#profile .wrapper .profile form .input-group {
  width: 100%;
}
#profile .wrapper .profile form .input-group input {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
}
#profile .wrapper .profile form .input-group .iti {
  margin-bottom: 1rem;
}
#profile .wrapper .profile form button {
  width: 100%;
  background: #fddb7a;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 50px;
  color: #3e2544;
  font-weight: 600;
  font-size: 1rem;
  float: right;
  cursor: pointer;
}
#profile .wrapper .profile form button:hover {
  background: rgb(252.6222222222, 212.2, 96.8777777778);
}
@media (max-width: 767px) {
  #profile h4 {
    width: 100%;
  }
}

.alert {
  max-width: 450px;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 5px;
  margin-bottom: 1rem;
}
@media (max-width: 1366px) {
  .alert {
    max-width: 350px;
    font-size: 14px;
  }
}

.alert-danger {
  color: #721c24 !important;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all ease 0.3s;
  z-index: 999999;
  overflow-y: auto;
}
.modal .modal-background {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  background-color: #FFFFFF;
  width: 100%;
  height: auto;
  margin: auto;
  margin-left: 15px;
  margin-right: 15px;
  display: block;
  max-width: 600px;
  padding: 30px;
  border-radius: 10px;
}
@media (max-width: 1366px) {
  .modal .modal-content {
    max-width: 500px;
    padding: 20px;
  }
}
.modal .modal-content .modal-header {
  padding-bottom: 15px;
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-content .modal-header .modal-header-title {
  color: #3e2544;
  text-transform: uppercase;
  font-size: 22px;
}
@media (max-width: 1366px) {
  .modal .modal-content .modal-header .modal-header-title {
    font-size: 18px;
  }
}
.modal .modal-content .modal-header .modal-button-close {
  background-color: transparent;
  height: 30px;
  width: 30px;
  outline: 0;
  border: none;
  cursor: pointer;
}
.modal .modal-content .modal-body .face-recognition-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal .modal-content .modal-body .face-recognition-menu img {
  display: block;
  width: 200px;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .modal .modal-content .modal-body .face-recognition-menu img {
    width: 150px;
  }
}
.modal .modal-content .modal-body .face-recognition-menu p {
  font-size: 18px;
  margin: 1rem 0;
}
@media (max-width: 1366px) {
  .modal .modal-content .modal-body .face-recognition-menu p {
    font-size: 14px;
    margin: 0.5rem 0;
    margin-bottom: 1rem;
  }
}
.modal .modal-content .modal-body .face-recognition-camera-elements {
  display: none;
  position: relative;
}
.modal .modal-content .modal-body .face-recognition-camera-elements .camera-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 512/393;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  margin-bottom: 2rem;
}
.modal .modal-content .modal-body .face-recognition-camera-elements .camera-viewport .cameraStream {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(-1) scale(0.8);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-body .face-recognition-camera-elements .camera-viewport .cameraStream {
    transform: translate(-50%, -50%) scaleX(-1) scale(0.5);
  }
}
.modal .modal-content .modal-body .face-recognition-camera-elements .camera-viewport .captureCanvas {
  display: none;
}
.modal .modal-content .modal-body .face-recognition-camera-elements .camera-viewport .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/facescan/mask.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}
.modal .modal-content .modal-body .face-recognition-camera-elements .camera-viewport .mask p {
  text-align: center;
  color: white;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}
.modal .modal-content .modal-body .thumbnail {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}
.modal .modal-content .modal-body .thumbnail .thumbnail-area {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}
.modal .modal-content .modal-body .thumbnail .thumbnail-area .thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal-content .modal-body .menu-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.modal .modal-content .modal-body .menu-buttons button {
  background: #3e2544;
  color: #FFFFFF;
  border: 1px solid #3e2544;
  border-radius: 5px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 0.5rem 2.5rem;
  outline: 0 !important;
  cursor: pointer;
}
@media (max-width: 1366px) {
  .modal .modal-content .modal-body .menu-buttons button {
    font-size: 16px;
    padding: 0.25rem 1.5rem;
  }
}
.modal .modal-content .modal-body .menu-buttons button.btn-cancel {
  background: transparent !important;
  border: 1px solid #3e2544;
  color: #3e2544;
}
.modal .modal-content .modal-footer {
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: none;
  padding-top: 30px;
}
.modal .modal-content .modal-footer button {
  background: #3e2544;
  color: #FFFFFF;
  border: 1px solid #3e2544;
  border-radius: 5px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 0.5rem 2.5rem;
  outline: 0 !important;
  cursor: pointer;
}
@media (max-width: 1366px) {
  .modal .modal-content .modal-footer button {
    font-size: 16px;
    padding: 0.25rem 1.5rem;
  }
}
.modal .modal-content .modal-footer button.btn-cancel {
  background: transparent !important;
  border: 1px solid #3e2544;
  color: #3e2544;
}
.modal.active {
  pointer-events: initial;
  opacity: 1;
}
.modal.active .modal-content {
  transform: translateY(0);
}

.language-switcher {
  text-align: right;
}
.language-switcher a {
  display: inline-block;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.language-switcher a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
.language-switcher img {
  width: 32px;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .responsive-br {
    display: none;
  }
}
