* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.clr {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #BD945A;
  text-transform: uppercase;
  letter-spacing: 5px;
}
    
/* header */

.bg-img {
  background-image: url('/build/hotel/images/room-view-VII.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.About-bgimg {
  background-image: url('/build/hotel/images/About-bgimg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

.About-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  background: rgba(0, 0, 0, 0.6);
}

.content-main {
  position: absolute;
  top: 35%;
  text-align: left;
}

.content-main-right {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 30px 25px;
}

nav {
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
}


nav .nav-links {
  display: flex;
}

nav .nav-links li {
  list-style: none;
  padding: 0 20px;
}

nav .nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.navbar-right {
  position: relative;
  display: flex;
  align-items: center;
}

nav.scrolled {
  background-color: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 1
}

.phonex {
  font-size: 20px;
  margin-right: 3px;
  padding: 5px;
  width: 50px;
  height: 50px;
  line-height: 35px;
  background: #BD945A;
  color: #fff;
  border-radius: 100%;
  text-align: center;
}

.navbar-right p {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

@media (max-width:994px) {
  nav .nav-links li {
    list-style: none;
    padding: 0 10px;
  }

}


/* hero section */

.center-cnt h1{
  font-family: "Gilda Display", serif;
  font-size: 75px;
  font-weight: 400;
  margin: 0px 0;
}

.cnt-btn {
  display: inline-block;
  height: auto;
  padding: 12px 27px;
  border: 1px solid #BD945A;
  border-radius: 5px;
  background-color: #BD945A;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  margin: 50px 0;
}

.cnt-btn:hover {
  background-color: #6B4423;
  border-color: #6B4423;
  color: #fff;
}

#active {
  color: #BD945A;
}

@media (max-width:992px) {
  .center-cnt h1 {
    font-size: 30px;
  }
}

@media (max-width:768px) {
  .center-cnt h1 {
    font-size: 22px;
  }
}

@media (max-width:506px) {
  .center-cnt h1 {
    font-size: 18px;
  }
}

@media (max-width:420px) {
  .center-cnt h1 {
    font-size: 10px;
  }

  .clr {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #BD945A;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
}



/* dropdown */

.dropdown {
  position: relative;
}

#dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #1b1b1b;
  border-radius: 5px;
  width: 250px;
  display: none;
  flex-direction: column;
  padding: 20px 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dropdown:hover #dropdown-menu {
  display: block;
}

#dropdown-menu li {
  padding: 10px 30px;
}

#dropdown-menu a {
  color: #fff;
  background-color: #1b1b1b;
  text-decoration: none;
  font-size: 20px;
  display: block;
  transition: all 0.3s ease;
}

#dropdown-menu a:hover {
  color: #caa169;
}



.underline {
  width: 200px;
  background-color: #BD945A;
  height: 1px;
  opacity: 0.1;
  margin: 10px 30px;
}

.hamburger {
  display: none;
}

@media (max-width: 992px) {
  #dropdown-menu {
    top: 30px;
    left: -30px;
    width: 100vw;
    min-width: auto;
    padding: 15px 0;
  }

  #dropdown-menu li {
    padding: 10px 20px;
  }

  nav {
    justify-content: space-between;
    padding: 0 100px;
    
  }

  nav .nav-links,
  .navbar-right {
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .nav-links .show {
    display: block;
  }
}

@media (max-width: 500px) {
  nav {
    justify-content: space-between;
    padding: 0 20px;
  }
}

/* About content */

.custom-h1 {
  font-family: "Urbanist", sans-serif;
  /* font-size: 60px; */
}

.About-content li,
.tick {
  font-family: "Urbanist", sans-serif;
  /* font-size: 17px; */
  font-weight: 400;
  line-height: 20px;
  color: #BD945A;
  margin-bottom: 15px;
  list-style: none;
}


.About-content p {
  font-family: "Urbanist", sans-serif;
  /* font-size: 17px; */
  font-weight: 400;
  line-height: 25px;
  color: #999;
  margin-bottom: 15px;

}

.sub-img {
  position: absolute;
  bottom: -100px;
  right: 0;
}


.About-btn {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 15px 30px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  background: #BD945A;
  font-family: Arial, Helvetica, sans-serif;
}

.About-btn:hover {
  background-color: #6B4423;
  border-color: #634a26;
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .About-img img {
    height: 450px;
    width: 350px;
  }

  .sub-img img {
    height: 300px;
    width: 300px;
  }
}

@media (max-width: 992px) {
  .sub-img {
    display: none;
  }
}

.about-section {
  padding: 80px 0;
  width: 100%;
}

.about-section  .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.subtitle {
  display: block;
  color: #c9a55f;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.text-content p,
.luxury-description {
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  color: rgb(153, 153, 153);
  margin-bottom: 15px;
}

.features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #BD945A;
}

.check-icon {
  color: #c9a55f;
  margin-right: 10px;
  font-size: 18px;
}

.About-btn {
  background-color: #c9a55f;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 17px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.discover-btn:hover {
  background-color: #b08d4a;
}

.image-container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  max-width: 650px;
  position: relative;
}

.image {
  border-radius: 10px;
  overflow: hidden;
  width: 48%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-top {
  transform: translateY(-10px);
}

.image-bottom {
  transform: translateY(10px);
}


@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .text-content,
  .image-container {
    width: 100%;
  }

  .image-top,
  .image-bottom {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .about-section {
    padding: 60px 0;
  }


  .image-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .image {
    width: 80%;
  }

  .image-left,
  .image-right {
    transform: none;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }

  .about-section {
    padding: 40px 0;
  }

  .feature-item {
    font-size: 14px;
  }

  .image {
    width: 100%;
  }
}

/* Rooms & Suits */


.luxury-subtitle {
  color: #8B5A2B;
  font-size: 1rem;
  font-weight: 500;
}

.luxury-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.luxury-description {
  color: #666;
  max-width: 900px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.room-card {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #5A381D;
}

.room-img-container {
  position: relative;
  overflow: hidden;
}

.room-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.price-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #6B4423;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  margin: 0;
}

.book-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #6B4423;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #5A381D;
  color: white;
}


.room-description {
  color: #b9b5b5;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.amenity-icons {
  display: flex;
  gap: 2rem;
  color: #6B4423;
  margin-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .luxury-heading {
    font-size: 2.5rem;
  }

  .amenity-icons {
    font-size: 1rem;
  }
}

.cards-cnt,
.product-cnt {
  background-color: #1b1b1b;
}

/* ++++++++++++++++++ */

.hotel-section {
  background-color: #111111;
  color: white;
  padding: 80px 0;
}

.Ahs{
  background-color: #000;
}

.hotel-section .container .row p {
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  color: #999;

}

.section-subtitle {
  color: #BD945A;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.amenity-card {
  background-color: #1b1b1b;
  border-radius: 4px;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);

}

.amenity-icon {
  color: #BD945A;
  font-size: 40px;
  margin-bottom: 20px;
}

.amenity-title {
  font-size: 20px;
  font-weight: 400;
}

/* Custom icons using CSS */
.icon-pickup {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url('/build/hotel/images/Pickup&Drop.png') no-repeat center center;
}

.icon-parking {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url('/build/hotel/images/parking.png') no-repeat center center;
}

.icon-room {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url('/build/hotel/images/RoomService.png') no-repeat center center;
}

.icon-pool {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url('/build/hotel/images/pool.png') no-repeat center center;
}

.icon-wifi {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url('/build/hotel/images/Wifi.png') no-repeat center center;
}

.icon-breakfast {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url('/build/hotel/images/Breakfast.png') no-repeat center center;
}

/* Best price */

.service-heading {
  color: #e0e0e0;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricetag {
  color: #b67d45;
  font-size: 3rem;
  font-weight: 700;
}

.service-card {
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-subtitle {
  color: #a0a0a0;
  margin-bottom: 1.5rem;
}

.premium-tag {
  background-color: #2d2d2d;
  color: #a0a0a0;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.check-icon {
  color: #b67d45;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.action-button {
  background-color: #b67d45;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 1.5rem;
}

.action-button:hover {
  background-color: #9a6938;
  color: white;
}

.best-price-label {
  color: #b67d45;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.description-text {
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.arrow-icon {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .service-heading {
    font-size: 2.5rem;
  }

  .service-card {
    margin-bottom: 2rem;
  }
}


/* hotel hero section */

.hotel-hero-section {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  background-color: #1b1b1b;
}

.hotel-image-container {
  flex: 1;
  overflow: hidden;
}

.hotel-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-content-container {
  flex: 1;
  padding: 5% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hotel-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: #fff;
}

.hotel-description {
  color: #b6b3b3;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hotel-cta-button {
  background-color: #7d5d2f;
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.hotel-cta-button:hover {
  background-color: #634a26;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #000 !important;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1 !important;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hotel-hero-section {
    flex-direction: column;
  }

  .hotel-image-container,
  .hotel-content-container {
    width: 100%;
  }

  .hotel-image-container {
    height: 50vh;
  }

  .hotel-content-container {
    padding: 2rem;
  }

  .hotel-title {
    font-size: 2.5rem;
  }
}

/* quetsion */

.questions-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.question-btn {
  background-color: #d6a354;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.question-btn:hover {
  background-color: #b98b3a;
}

.question-text {
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.question-text a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #d6a354;
  font-weight: 500;
}

@media (max-width: 576px) {
  .questions-section {
    flex-direction: column;
    text-align: center;
  }
}

/* Reviews */

.testimonial-bg {
  background-image: url('/build/hotel/images/room-view-XIII.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 500px;
  position: relative;
  color: #fff;
  margin-top: 100px;
}

.testimonial-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.testimonial-stars i {
  color: #f0b400;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-quote {
  color: #fff;
  font-family: "Gilda Display", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0 200px;
  padding: 0 100px;
}

@media (max-width: 1200px) {
  .testimonial-quote {
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .testimonial-quote {
    font-size: 1.2rem;
  }
}


/* booking form */

.booking-section {
  padding: 80px 0;
  background-color: #1b1b1b;
  margin-top: 100px;
}


.appointment-label {
  color: #BD945A;
  text-decoration: Uppercase;
  font-weight: 500;
}


.booking-heading {
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  color: #fff;
}


.date-icon {
  color: #8B6D3F;
}

.form-control input {
  width: 100%;
  background: rgb(255, 255, 255);
  padding: 10px 20px;
  transition: 0.3s;
  border: none;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #8B6D3F;
}

#form-select {
  width: 100%;
  background: rgb(255, 255, 255);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 5px;
}

.booking-btn {
  background-color: #BD945A;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}


.booking-btn:hover {
  background-color: #5A3D22;
}


.booking-image {
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}


.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Product  */

.product-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 2px;
  margin-left: 5px;
  display: inline-block;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.8);
  color: #101010;
  font-weight: 400;
}

.product-cnt h1 {
  background-color: #1b1b1b;
  font-size: 27px;
  margin-bottom: 15px;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  text-align: left;
}

.product-cnt p {
  color: #999;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 15px;
  text-align: left;
  line-height: 30px;
  font-family: "Urbanist", sans-serif;
}

.product-cnt h5 {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-align: left;
}

/* footer */

.footer-main {
  background-color: #111111;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-nav {
  padding: 0;
}

.footer-main p,
.copyright-text {
  font-family: Urbanist, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  background-color: #111111;
  border-top: 1px solid #222222;
  padding: 20px 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #ffffff;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #333333;
}

.subscribe-btn {
  background-color: #d4b26a;
  color: #fff;
  border: none;
  width: 60px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-btn:hover {
  background: #fff;
  outline: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.7s linear;
  color: #101010;
}

.subscribe-form input {
  height: 60px;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  outline: none;
  padding: 0px 90px 0px 20px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  border-image: initial;
  border-radius: 30px;
}

.subscribe-form input:focus {
  background-color: #1a1a1a;
  color: #ffffff;
  box-shadow: none;
  border: none;
}

.back-to-top {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #333333;
}

.footer-nav a {
  font-family: Urbanist, sans-serif;
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s ease;
  line-height: 30px;
  letter-spacing: 0.03px;
  font-weight: 900px;
  font-size: 20px;
}

.footer-nav a:hover {
  color: #d4b26a;
}

@media (max-width:590px) {
  .footer-nav {
    display: none;
  }
}




/* +++++++++++++++++++++++++++ About Page +++++++++++++++++++++++ */


.Team-section{
  margin: 100px 0;
}

.teamCard {
  position: relative;
}

/* .teamCard:hover {
  transform: translateY(-10px);
} */

.teamCard img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.info {
  padding: 20px 0;
}

.info h5 {
  font-family: "Gilda Display", serif;
  font-size: 30px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}

.info p {
  font-family: Urbanist, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: rgb(153, 153, 153);
  margin-bottom: 0px;
}

.socialIcons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding:15px 20px;
  border-radius: 5px;
  background-color: #BD945A;
  white-space: nowrap;
  opacity: 0;
  z-index: 20;
  transition: all 0.4s ease;
}

.teamCard:hover .socialIcons{
  opacity: 1;
  margin-bottom: 30px;
}

.socialIcons a {
  font-size: 20px;
  text-decoration: none;
  margin: 15px 10px;
  line-height: 1;
  color: #fff;
}