@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

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

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

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

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;  
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    height: 100%;
    background: #ffffff;
  }
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}
  
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: bold;
    position: relative;
    background: rgb(101, 126, 134);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 20px 40px;
}

.header .logo a {
    font-size: 1.8rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
  }
  
.header .nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header .nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s ease;
}
    
.header .nav ul li a:hover {
    color: #f7a400;
}
    
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
    
.mobile-menu-icon .bar {
    width: 25px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
}
    
    @media (max-width: 768px) {
      .header {
        padding: 15px;
      }

      .header .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgb(101, 126, 134);
        text-align: center;
        z-index: 999;
      }
    
      .header .nav.active {
        display: block;
      }
      .header .nav ul {
          flex-direction: column;
          gap: 20px;
          padding: 20px;
        }
      
        .mobile-menu-icon {
          display: flex;
        }
}

.hero {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: white;
  background: url(/assets/img/bg.jpg) no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero a {
  display: inline-block;
  background-color: #ff6f61;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(255, 111, 97, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero a:hover,
.hero a:focus {
  background-color: #ff4a39;
  box-shadow: 0 8px 20px rgba(255, 74, 57, 0.6);
  outline: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero a {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 10px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .hero a {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  max-width: 1500px;
  margin: 0 auto;
  gap: 40px;
}

.about_text {
  color: #333;
}

.about_text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

.about_text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

.about img {
  max-width: 50%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about_text h2 {
    font-size: 2rem;
  }

  .about_text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 60px 15px;
  }

  .about_text h2 {
    font-size: 1.8rem;
  }

  .about_text p {
    font-size: 1rem;
  }

  .about img {
    max-width: 80%;
  }
}

section.why {
  padding: 60px 20px;
  background: rgb(101, 126, 134);
  text-align: center;
}

.why h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 40px;
}

.why ul {
  margin: 0 auto;
  max-width: 800px;
  gap: 20px;
}

.why li {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}

.why li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why li strong {
  display: block;
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 8px;
}

.why li {
  font-size: 1rem;
  color: #4a5568;
}

@media (min-width: 1024px) {
  .why h2 {
    font-size: 3rem;
  }
}

.categories {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
}

.categories h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 40px;
}

.categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.category {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin: 20px 0 10px;
}

.category p {
  font-size: 1rem;
  color: #4a5568;
  padding: 0 20px 20px;
}

@media (min-width: 600px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories {
    grid-template-columns: repeat(4, 1fr);
  }

  .categories h2 {
    font-size: 3rem;
  }
} 

.featured-hotels {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.featured-hotels h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 40px;
}

.featured-hotels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel {
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hotel:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hotel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hotel h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin: 20px 0 10px;
}

.hotel p {
  font-size: 1rem;
  color: #4a5568;
  padding: 0 20px;
  margin-bottom: 20px;
}

.hotel a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #ff6f61;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hotel a:hover {
  background-color: #d0594e;
}

@media (min-width: 600px) {
  .featured-hotels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .featured-hotels {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-hotels h2 {
    font-size: 3rem;
  }
} 


.call-to-action {
  background: rgb(101, 126, 134);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin: 60px auto;
  max-width: 1600px;
}

.call-to-action h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.call-to-action p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action a {
  display: inline-block;
  padding: 15px 35px;
  background-color: #fff;
  color: #ff6f61;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.call-to-action a:hover {
  background-color: #ffe3de;
  color: #ff4a39;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2rem;
  }

  .call-to-action p {
    font-size: 1.1rem;
  }

  .call-to-action a {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .call-to-action {
    padding: 60px 15px;
  }

  .call-to-action h2 {
    font-size: 1.8rem;
  }

  .call-to-action p {
    font-size: 1rem;
  }
}


.footer {
  background-color: #222;
  color: #ccc;
  padding: 50px 20px;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
}

.footer a:hover {
  color: #ff6f61;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer ul li a {
  color: #ccc;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #ff6f61;
}

.footer p {
  font-size: 0.9rem;
  color: #777;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .footer ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer a {
    font-size: 1.2rem;
  }

  .footer ul li a {
    font-size: 0.95rem;
  }

  .footer p {
    font-size: 0.8rem;
  }
}

.contact {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info p {
  margin: 8px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.popup-content button {
  margin-top: 15px;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  background: #007bff;
  color: #fff;
  cursor: pointer;
}

@media(min-width: 768px) {
  .contact-content {
    flex-direction: row;
    justify-content: space-between;
  }
  form, .contact-info {
    flex: 1;
  }
}

.swiper-slide img {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: #1b1f3b;
  padding: 2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #d1b3ff;
  color: #1b1f3b;
}

.swiper-slide-second {
  max-width: 300px;
}

.hero_casino {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
  text-align: center;
}

.hero_casino h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero_casino p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.swiper {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero_casino h1 {
    font-size: 2rem;
  }

  .hero_casino p {
    font-size: 1rem;
  }
} 

.about_casino {
  padding: 80px 20px;
  background: #f9fafb;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
}

.about_casino-text {
  max-width: 800px;
  margin-bottom: 30px;
}

.about_casino-text h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 20px;
}

.about_casino-text p {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
}

.about_casino img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1068px) {
  .about_casino {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .about_casino {
    text-align: left;
    justify-content: space-around;
  }

  .about_casino-text {
    flex: 1;
    margin-right: 40px;
  }

  .about_casino-text p {
    text-align: center;
  }

  .about_casino img {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .about_casino-text h2 {
    font-size: 2rem;
  }

  .about_casino-text p {
    font-size: 1rem;
  }
}


.why-casino {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
  text-align: center;
}

.why-casino h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 40px;
}

.why-casino ul {
  margin: 0 auto;
  max-width: 1100;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.why-casino li {
  width: 300px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-casino li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-casino li strong {
  display: block;
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 8px;
}

.why-casino li {
  font-size: 1rem;
  color: #4a5568;
}

@media (min-width: 768px) {
  .why-casino ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .why-casino ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-casino h2 {
    font-size: 3rem;
  }
}

.top-casino-hotels {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.top-casino-hotels h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 40px;
}

.top-casino-hotels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-casino-hotels .hotel {
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-casino-hotels .hotel:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.top-casino-hotels .hotel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.top-casino-hotels .hotel h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin: 20px 0 10px;
}

.top-casino-hotels .hotel p {
  font-size: 1rem;
  color: #4a5568;
  padding: 0 20px;
  margin-bottom: 20px;
}

.top-casino-hotels .hotel a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #3182ce;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.top-casino-hotels .hotel a:hover {
  background-color: #2b6cb0;
}

@media (min-width: 768px) {
  .top-casino-hotels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .top-casino-hotels {
    grid-template-columns: repeat(3, 1fr);
  }

  .top-casino-hotels h2 {
    font-size: 3rem;
  }
}

faq-casino-hotels {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  background: #f9fafb;
  border-radius: 16px;
}

.faq-casino-hotels h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background: #ffffff;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #edf2f7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #4a5568;
  text-align: center;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
}

h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact p:first-of-type {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #555;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info {
  flex: 1 1 300px;
  min-width: 280px;
  background-color: #f9f9f9;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: #444;
}

.contact-info p {
  margin: 12px 0;
  font-size: 1rem;
}

.contact-info strong {
  color: #2980b9;
}

form#contact-form {
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fefefe;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

form label {
  font-weight: 600;
  color: #34495e;
}

form input[type="text"],
form input[type="email"],
form textarea {
  padding: 10px 12px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
  resize: vertical;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  outline: none;
  border-color: #2980b9;
  box-shadow: 0 0 5px rgba(41, 128, 185, 0.5);
}

form button[type="submit"] {
  padding: 12px 20px;
  background-color: #2980b9;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

form button[type="submit"]:hover {
  background-color: #1f618d;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 30px;
  }
}

.privacy {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 15px;
  color: #2c3e50;
  line-height: 1.6;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.privacy h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2980b9;
  text-align: center;
}

.privacy h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #34495e;
  font-weight: 600;
}

.privacy p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
}

.privacy a {
  color: #2980b9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy a:hover,
.privacy a:focus {
  color: #1f618d;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .privacy {
    padding: 15px 10px;
  }

  .privacy h2 {
    font-size: 1.8rem;
  }

  .privacy h3 {
    font-size: 1.2rem;
  }

  .privacy p {
    font-size: 0.95rem;
  }
}


.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 15px 20px;
  max-width: 500px;
  width: 90%;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: #333;
  z-index: 1000;
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.cookie-popup p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.cookie-popup a {
  color: #2980b9;
  text-decoration: underline;
}

.cookie-popup button {
  padding: 8px 16px;
  background: #2980b9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-popup button:hover {
  background: #1f618d;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
