.view-section {
  text-align: end;
  margin-right: 30px;
}

.view-section a {
  color: #f24464;
}

.card-container {
  display: flex;
  justify-content: space-between;
  margin: 20px;
  gap: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease-in-out;
}

.image-container {
  position: relative;
  width: calc(16.66% - 20px);
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.details-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border-radius: 0 0 4px 4px;
}

.profile-detailes-home {
  width: 100%;
}

.profile-detailes-home .details-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding-bottom: 5px;
  box-sizing: border-box;
}
.details-title h2,
.details-title p {
  font-size: 16px !important;
}

.profile-detailes-home .details-title-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.details-title-bottom p {
  font-size: 14px !important;
}

@media (max-width: 1200px) {
  .image-container {
    width: calc(20% - 20px);
  }
}

@media (max-width: 992px) {
  .image-container {
    width: calc(25% - 20px);
    margin-right: 18px;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 576px) {
  .image-container {
    width: calc(50% - 20px);
  }
}

@media (max-width: 400px) {
  .image-container {
    width: calc(100% - 20px);
  }
}

/* nav bar simple */

.simple-nav {
  background-color: #d82567;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  justify-content: center;
}

.simple-nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.simple-nav li {
  padding: 15px 20px;
  color: white !important;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.simple-nav li a {
  color: white !important;
}

.simple-nav li.active {
  font-weight: bold;
  border-bottom: 3px solid #fff;
}

@media (max-width: 768px) {
  .simple-nav {
    overflow-x: auto;
    display: flex;
    justify-content: flex-start;
  }
  .simple-nav li {
    padding: 15px 10px;
  }
}

/* popular-searches css start */

.popular-searches-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px;
  transition: transform 0.5s ease;
}

.popular-searches-container {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 360px;
  text-align: center;
  margin-right: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popular-searches-container-image img {
  width: 100%;
  border-radius: 8px;
}

.popular-searches-container-title {
  font-size: 16px;
  margin-top: 8px;
  font-weight: bold;
}

.popular-searches-container-main {
  position: relative;
}

.carousel-control-prev-popular-searches,
.carousel-control-next-popular-searches {
  background: transparent;
  border: none;
  z-index: 1;
}

.carousel-control-prev-popular-searches::before,
.carousel-control-next-popular-searches::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.carousel-control-prev-popular-searches::before {
  left: 30px;
  background-image: url("../img/Arrow2.png");
}

.carousel-control-next-popular-searches::after {
  right: 30px;
  background-image: url("../img/Arrow3.png");
}

.carousel-control-prev-popular-searches:hover,
.carousel-control-next-popular-searches:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .popular-searches-container-main {
    background-color: #fffafb;
    z-index: 2;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
  }

  .popular-searches-container {
    width: 260px;
  }
  .carousel-control-prev-popular-searches::before,
  .carousel-control-next-popular-searches::after {
    display: none;
  }
}
/* popular-searches css end */
/* 
.custom-carousel-control {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.custom-carousel-control:hover {
  background-color: rgba(255, 165, 0, 0.8);
}

.carousel-control-prev.custom-carousel-control {
  left: 0;
}

.carousel-control-next.custom-carousel-control {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px !important;
  height: 40px !important;
  background-size: contain;
}

.carousel-control-prev-icon {
  background-image: url("../img/Arrow2.png") !important;
}

.carousel-control-next-icon {
  background-image: url("../img/Arrow3.png") !important;
} */

/* .carousel {
  position: relative;
} */

@media only screen and (max-width: 768px) {
  .carousel-control-prev {
    display: none;
  }

  .carousel-control-next {
    display: none;
  }
}

/* photographer css start  */

.photographer-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px;
  transition: transform 0.5s ease;
  padding-bottom: 50px;
  position: relative;
}

.photographer-headding-section {
  display: flex;
  justify-content: space-between;
}

.photographer-headding-section p {
  font-size: 22px;
  font-weight: bold;
}
.photographer-headding-section p a {
  font-size: 18px;
  font-weight: bold;
  color: #f24464;
}

.photographer-container {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 260px;
  text-align: left;
  margin-right: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.photographer-container-image {
  width: 236px;
  height: 190px;
  overflow: hidden;
  border-radius: 8px;
}

.photographer-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* .photographer-container-image img {
  width: 100%;
  height: 160px;
  border-radius: 8px;
} */

.photographer-detaile {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.photographer-price {
  text-align: left;
}

.photographer-old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.photographer-new-price {
  font-size: 16px;
  font-weight: bold;
  color: #e74c3c;
  margin-right: 8px;
}

.photographer-discount {
  font-size: 14px;
  color: #27ae60;
  font-weight: bold;
}

.photographer-container-main {
  position: relative;
}

.carousel-control-prev-photographer,
.carousel-control-next-photographer {
  background: transparent;
  border: none;
  z-index: 1;
}

.carousel-control-prev-photographer::before,
.carousel-control-next-photographer::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.carousel-control-prev-photographer::before {
  left: 30px;
  background-image: url("../img/Arrow2.png");
}

.carousel-control-next-photographer::after {
  right: 30px;
  background-image: url("../img/Arrow3.png");
}

.carousel-control-prev-photographer:hover,
.carousel-control-next-photographer:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .photographer-container-main {
    z-index: 2;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
  }

  .photographer-container {
    background-color: #fffafb;
  }

  .carousel-control-prev-photographer::before,
  .carousel-control-next-photographer::after {
    display: none;
  }
}

/* photographer css end  */

/* beautician css start  */

.beautician-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px;
  transition: transform 0.5s ease;
}

.beautician-headding-section {
  display: flex;
  justify-content: space-between;
}

.beautician-headding-section p {
  font-size: 22px;
  font-weight: bold;
}
.beautician-headding-section p a {
  font-size: 18px;
  font-weight: bold;
  color: #f24464;
}

.beautician-container {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 260px;
  text-align: center;
  margin-right: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.beautician-container-image {
  width: 236px;
  height: 290px;
  overflow: hidden;
  border-radius: 8px;
}

.beautician-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* .beautician-container-image img {
  width: 100%;
  max-height: 190px;
  border-radius: 8px;
} */

.beautician-detaile {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.beautician-price {
  text-align: left;
}

.beautician-old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.beautician-new-price {
  font-size: 16px;
  font-weight: bold;
  color: #e74c3c;
  margin-right: 8px;
}

.beautician-discount {
  font-size: 14px;
  color: #27ae60;
  font-weight: bold;
}

.beautician-container-main {
  position: relative;
}

.carousel-control-prev-beautician,
.carousel-control-next-beautician {
  background: transparent;
  border: none;
  z-index: 1;
}

.carousel-control-prev-beautician::before,
.carousel-control-next-beautician::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.carousel-control-prev-beautician::before {
  left: 30px;
  background-image: url("../img/Arrow2.png");
}

.carousel-control-next-beautician::after {
  right: 30px;
  background-image: url("../img/Arrow3.png");
}

.carousel-control-prev-beautician:hover,
.carousel-control-next-beautician:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .carousel-control-prev-beautician::before,
  .carousel-control-next-beautician::after {
    display: none;
  }
}

/* beautician css end  */

/* small carousel css start */
/* 
.home-page-carousel-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.home-page-slider {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.home-page-slider img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}

.home-page-slider img:hover {
  transform: scale(1.05);
} */
/* General container styling */
.home-page-carousel-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.home-page-carousel-container .home-page-slider {
  flex: 1 1 100%;
  max-width: 600px;
  margin: 10px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home-page-carousel-container .home-page-slider img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .home-page-carousel-container {
    padding: 10px;
  }

  .home-page-carousel-container .home-page-slider {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 5px;
    min-height: 100px;
  }

  .home-page-carousel-container .home-page-slider img {
    width: 100%;
    height: auto;
    max-height: 180px;
    border-radius: 8px;
  }
  .home-page-carousel-container .home-page-slider:last-child img {
    margin-right: 10px;
  }
}

/* Medium to large screens: two images per row */
@media (min-width: 769px) {
  .home-page-carousel-container .home-page-slider {
    flex: 1 1 45%; /* Show two items per row */
  }
}

/* venueservice css start  */

.venueservice-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 10px;
  transition: transform 0.5s ease;
}

.venueservice-headding-section {
  display: flex;
  justify-content: space-between;
}

.venueservice-headding-section p {
  font-size: 22px;
  font-weight: bold;
}
.venueservice-headding-section p a {
  font-size: 18px;
  font-weight: bold;
  color: #f24464;
}

.venueservice-container {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 260px;
  text-align: center;
  margin-right: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.venueservice-container-image {
  width: 236px;
  height: 290px;
  overflow: hidden;
  border-radius: 8px; 
}

.venueservice-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* .venueservice-container-image img {
  width: 100%;
  border-radius: 8px;
  height: 340px;
} */

.venueservice-detaile {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.venueservice-price {
  text-align: left;
}

.venueservice-old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.venueservice-new-price {
  font-size: 14px;
  font-weight: bold;
  color: #e74c3c;
  margin-right: 8px;
}

.venueservice-discount {
  font-size: 12px;
  color: #27ae60;
  font-weight: bold;
}

.venueservice-locations {
  font-size: 14px;
  text-align: left;
}

.venueservice-container-main {
  position: relative;
}

.carousel-control-prev-venueservice,
.carousel-control-next-venueservice {
  background: transparent;
  border: none;
  z-index: 1;
}

.carousel-control-prev-venueservice::before,
.carousel-control-next-venueservice::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.carousel-control-prev-venueservice::before {
  left: 30px;
  background-image: url("../img/Arrow2.png");
}

.carousel-control-next-venueservice::after {
  right: 30px;
  background-image: url("../img/Arrow3.png");
}

.carousel-control-prev-venueservice:hover,
.carousel-control-next-venueservice:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .carousel-control-prev-venueservice::before,
  .carousel-control-next-venueservice::after {
    display: none;
  }
}

/* venueservice css end  */

/* videocards css start */

.videocards-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px;
  transition: transform 0.5s ease;
}

.videocards-headding-section {
  display: flex;
  justify-content: space-between;
}

.videocards-headding-section p {
  font-size: 22px;
  font-weight: bold;
}
.videocards-headding-section p a {
  font-size: 18px;
  font-weight: bold;
  color: #f24464;
}

.videocards-container {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 260px;
  text-align: center;
  margin-right: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.videocards-container-image {
  width: 236px;
  height: 290px;
  overflow: hidden;
  border-radius: 8px;
}

.videocards-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* .videocards-container-image img {
  width: 100%;
  border-radius: 8px;
  height: 340px;
} */

.videocards-container-image iframe {
  width: 100%;
  border-radius: 8px;
  height: 340px;
}

.videocards-detaile {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.videocards-price {
  text-align: left;
}

.videocards-old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.videocards-new-price {
  font-size: 14px;
  font-weight: bold;
  color: #e74c3c;
  margin-right: 8px;
}

.videocards-discount {
  font-size: 12px;
  color: #27ae60;
  font-weight: bold;
}

.videocards-container-main {
  position: relative;
}

.carousel-control-prev-videocards,
.carousel-control-next-videocards {
  background: transparent;
  border: none;
  z-index: 1;
}

.carousel-control-prev-videocards::before,
.carousel-control-next-videocards::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.carousel-control-prev-videocards::before {
  left: 30px;
  background-image: url("../img/Arrow2.png");
}

.carousel-control-next-videocards::after {
  right: 30px;
  background-image: url("../img/Arrow3.png");
}

.carousel-control-prev-videocards:hover,
.carousel-control-next-videocards:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .carousel-control-prev-videocards::before,
  .carousel-control-next-videocards::after {
    display: none;
  }
}

/* videocards css end  */

/* wedding cards css start */

.weddingcards-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px;
  transition: transform 0.5s ease;
}

.weddingcards-headding-section {
  display: flex;
  justify-content: space-between;
}

.weddingcards-headding-section p {
  font-size: 22px;
  font-weight: bold;
}
.weddingcards-headding-section p a {
  font-size: 18px;
  font-weight: bold;
  color: #f24464;
}

.weddingcards-container {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 260px;
  text-align: center;
  margin-right: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}


.weddingcards-container-image {
  width: 236px;
  height: 290px;
  overflow: hidden;
  border-radius: 8px;
}

.weddingcards-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* .weddingcards-container-image img {
  width: 100%;
  border-radius: 8px;
  height: 340px;
} */

.weddingcards-detaile {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.weddingcards-price {
  text-align: left;
}

.weddingcards-old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.weddingcards-new-price {
  font-size: 14px;
  font-weight: bold;
  color: #e74c3c;
  margin-right: 8px;
}

.weddingcards-discount {
  font-size: 12px;
  color: #27ae60;
  font-weight: bold;
}

.weddingcards-container-main {
  position: relative;
}

.carousel-control-prev-weddingcards,
.carousel-control-next-weddingcards {
  background: transparent;
  border: none;
  z-index: 2;
}

.carousel-control-prev-weddingcards::before,
.carousel-control-next-weddingcards::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
}

.carousel-control-prev-weddingcards::before {
  left: 30px;
  background-image: url("../img/Arrow2.png");
}

.carousel-control-next-weddingcards::after {
  right: 30px;
  background-image: url("../img/Arrow3.png");
}

.carousel-control-prev-weddingcards:hover,
.carousel-control-next-weddingcards:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .weddingcards-container {
    background-color: #fffafb;
  }
  .carousel-control-prev-weddingcards::before,
  .carousel-control-next-weddingcards::after {
    display: none;
  }
}

/* wedding cards css end */

/* * {
  border: 1px solid black;
} */

.button-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.button-container.left {
  left: 40px;
}

.button-container.right {
  right: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 60px !important;
  height: 60px !important;
  background-size: contain;
  display: block;
}

.carousel-control-prev {
  left: 10px;
  width: 20px !important;
  height: 20px !important;
}

.carousel-control-next {
  right: 10px;
  width: 20px !important;
  height: 20px !important;
}

.carousel-control-prev-icon {
  background-image: url("../img/Arrow2.png") !important;
}

.carousel-control-next-icon {
  background-image: url("../img/Arrow3.png") !important;
}

/* 
.button-container-photographer {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.button-container-photographer.left {
  left: 40px;
}

.button-container-photographer.right {
  right: 40px;
}

.carousel-control-prev-icon-photographer,
.carousel-control-next-icon-photographer {
  width: 60px !important;
  height: 60px !important;
  background-size: contain;
  display: block;
}

.carousel-control-prev-photographer {
  left: 10px;
  width: 20px !important;
  height: 20px !important;
}

.carousel-control-next-photographer {
  right: 10px;
  width: 20px !important;
  height: 20px !important;
}


.carousel-control-prev-icon-photographer {
  background-image: url("../img/Arrow2.png") !important;
}

.carousel-control-next-icon-photographer {
  background-image: url("../img/Arrow3.png") !important;
} */
.bannerVenue {
  position: relative;
  background-color: black;
}

.overlay-homepage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.formgrp4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  row-gap: 16px;
  margin-left: 25%;
  padding: 5px 10px;
  border-radius: 10px;
}
.formgrp4 input {
  border-radius: 8px;
  border: 1px solid #abaeae;
  padding: 10px 38px;
  color: var(--Brand-03, #2b171b);
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.formgrp4 .input2 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #abaeae;
  padding: 10px 38px;
  color: var(--Brand-03, #2b171b);
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.homeSerIcon4 {
  position: absolute;
  margin-bottom: 64px;
  margin-left: 8px;
  font-size: 24px;
}

.HomepageMenuService {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 50%;
  margin-top: 8%;
  transform: translate(-50%, -180%);
  padding: 24px;
  z-index: 2;
}

.bannerVenue .HomepageMenuService h2 {
  font-size: 64px;
  line-height: 80px;
  font-weight: bold;
  font-family: "Great Vibes", cursive;
  color: #d82567;
}

.bannerVenue .HomepageMenuService p {
  font-size: 24px;
  color: #fffafb;
  text-align: center;
  margin-bottom: 10px;
}
.HomepageMenuService .btn1 {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-left: 23%;
  margin-top: 35px;
  background: var(--Brand-01, #f24464);
  padding: 8px 24px;
  color: var(--Brand-02, #fffafb);
  text-align: center;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
}
.HomepageMenuService .btn2 {
  border-radius: 50px;
  border: 2px solid var(--Brand-01, #f24464);
  background: var(--Brand-02, #fffafb);
  padding: 10px 24px;
  color: var(--Brand-01, #f24464);
  text-align: center;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.HomepageMenuService h2 {
  color: var(--Brand-01, #f24464);
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 18px;
}

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

@media (max-width: 1023px) {
  .HomepageMenuService {
    position: absolute;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -140%);
    padding: 24px;
    z-index: 2;
  }
}
