@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html,
body {
  font-size: 16px;
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

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

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 3.875rem;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3.125rem;
}

h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.875rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
}

h5 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25rem;
}

h6 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875rem;
}

a,
a:active,
a:focus,
a:hover,
button {
  text-decoration: none;
  outline: 0;
}

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

embed,
iframe,
img,
object {
  max-width: 100%;
}

li a {
  color: #ffffff;
}

a:hover,
button:hover {
  transition: all 0.3s ease-in;
}

/*--------margin and padding global------*/
.mt-6 {
  margin-top: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.my-6 {
  margin: 6rem 0rem;
}

.mx-6 {
  margin: 0rem 6rem;
}

.p-6 {
  padding: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.py-6 {
  padding: 6rem 0rem;
}

.px-6 {
  padding: 0rem 6rem;
}

.primary__btn {
  position: relative;
  font-size: 18px;
  padding: 0.7rem 3rem;
  background: #5F432D;
  border: 1px solid #5F432D;
  z-index: 1;
  color: #EBE6E0;
  border-radius: 10px;
  cursor: pointer;
  text-transform: capitalize;
  overflow: hidden;
  font-weight: 400;
}
.primary__btn:hover {
  background: transparent;
  border: 1px solid #5F432D;
  color: #5F432D;
}

section {
  padding: 4rem 0rem;
}

.heading-section {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.375rem;
  text-align: center;
  text-transform: uppercase;
}

.announcement__bar {
  background-color: #5F432D;
  text-align: center;
  padding: 0.7rem 0rem;
}
.announcement__bar p {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.1rem;
}

.top-header {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 50px;
  position: relative;
  height: 120px;
}
.top-header button.btn {
  font-size: 1.25rem;
  background: none;
  border: none;
}
.top-header .logo-wrapper {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.top-header .logo-wrapper img {
  width: 220px !important;
  height: 65px !important;
  -o-object-fit: cover;
     object-fit: cover;
     
}
@media (max-width: 768px) {
  .top-header .logo-wrapper img {
    width: 150px !important; /* or auto depending on design */
    height: 50px !important;
  }
}
@media (max-width: 480px) {
  .top-header .logo-wrapper img {
    width: 120px !important;
    height: 40px !important;
  }
}

.top-header .icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-header .icons i {
  cursor: pointer;
  font-size: 1.4rem;
}

.bottom-nav {
  background-color: #ffffff;
  color: #000000;
}
.bottom-nav .nav-link {
  color: #000000;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.bottom-nav .nav-link:hover {
  text-decoration: underline;
}

.offcanvas-body .nav-link {
  color: #000;
  padding: 0.5rem 0;
  font-weight: 500;
}

.celebrity .celebrity__heading {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.celebrity .saree-card {
  border-radius: 8px;
  background: #f9f9f9;
  transition: box-shadow 0.3s;
}
.celebrity .saree-card .saree__card__data {
  padding: 10px;
}
.celebrity .saree-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.celebrity .saree-card img {
  width: 100%;
  border-radius: 6px;
  height: 435px;
  -o-object-fit: cover;
     object-fit: cover;
}
.celebrity .saree-card .name {
  font-size: 0.95rem;
  margin: 10px 0;
  font-weight: 500;
}
.celebrity .saree-card .price {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.celebrity .saree-card .price .old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}
.celebrity .saree-card .price .discount {
  color: #5F432D;
  margin-left: 5px;
  font-size: 0.9rem;
}
.celebrity .saree-card .rating {
  font-size: 0.9rem;
}
.celebrity .saree-card .rating .badge {
  font-size: 0.8rem;
  background-color: #5F432D;
  border-radius: 50px;
  font-weight: 500;
}
.celebrity .saree-card button {
  font-weight: 500;
}
.celebrity .saree-card .product__btn {
  border: 1px solid #5F432D;
  color: #5F432D;
  padding: 0.5rem 1rem;
  transition: all ease 0.2s;
}
.celebrity .saree-card .product__btn:hover {
  border: 1px solid #5F432D;
  background-color: #5F432D;
  color: #ffffff;
}
.celebrity .view__all__btn {
  padding: 2rem 0rem;
  text-align: center;
}
.celebrity .view__all__btn .view__btn {
  border: 1px solid #5F432D;
  color: #ffffff;
  background-color: #5F432D;
  border-radius: 25px;
  padding: 0.7rem 4rem;
  transition: all ease 0.2s;
}
.celebrity .view__all__btn .view__btn:hover {
  border: 1px solid #5F432D;
  background-color: transparent;
  color: #5F432D;
}

.money .money__heading {
  padding-bottom: 2rem;
  padding-top: 1.5rem;
}
.money p {
  text-align: center;
  padding-top: 10px;
  max-width: 80%;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 auto;
}
.money .outer__card .best-seller .money-card {
  text-align: center;
}
.money .outer__card .best-seller .money-card .money__card__hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 6px;
}
.money .outer__card .best-seller .money-card .money__card__hover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.money .outer__card .best-seller .money-card .money__card__hover .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}
.money .outer__card .best-seller .money-card .money__card__hover:hover .overlay {
  opacity: 1;
}
.money .outer__card .best-seller .money-card .money__card__hover:hover img {
  transform: scale(1.05);
}
.money .outer__card .best-seller .money-card .money__card__data h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 1rem 2rem;
}
.money .outer__card .best-seller .view__all__btn {
  padding: 2rem 0rem;
  text-align: center;
}
.money .outer__card .best-seller .view__all__btn .view__btn {
  border: 1px solid #5F432D;
  color: #ffffff;
  background-color: #5F432D;
  border-radius: 25px;
  padding: 0.7rem 4rem;
  transition: all ease 0.2s;
}
.money .outer__card .best-seller .view__all__btn .view__btn:hover {
  border: 1px solid #5F432D;
  background-color: transparent;
  color: #5F432D;
}
.money .outer__card .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.money .outer__card .owl-nav button.owl-prev,
.money .outer__card .owl-nav button.owl-next {
  background-color: #5F432D;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}
.money .outer__card .owl-nav button.owl-prev:hover,
.money .outer__card .owl-nav button.owl-next:hover {
  background-color: #5F432D;
  transform: scale(1.1);
}
.money .outer__card .owl-nav i {
  font-size: 16px;
  color: #ffffff;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-wrapper .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.video-wrapper .play-button .icon {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper .play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.best__seller .celebrity__heading {
  padding-bottom: 2rem;
}
.best__seller .saree-card {
  border-radius: 8px;
  background: #f9f9f9;
  transition: box-shadow 0.3s;
}
.best__seller .saree-card .saree__card__data {
  padding: 10px;
}
.best__seller .saree-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.best__seller .saree-card img {
  width: 100%;
  border-radius: 6px;
  height: 435px;
  -o-object-fit: cover;
     object-fit: cover;
}
.best__seller .saree-card .name {
  font-size: 0.95rem;
  margin: 10px 0;
  font-weight: 500;
}
.best__seller .saree-card .price {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.best__seller .saree-card .price .old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}
.best__seller .saree-card .price .discount {
  color: #5F432D;
  margin-left: 5px;
  font-size: 0.9rem;
}
.best__seller .saree-card .rating {
  font-size: 0.9rem;
}
.best__seller .saree-card .rating .badge {
  font-size: 0.8rem;
  background-color: #5F432D;
  border-radius: 50px;
  font-weight: 500;
}
.best__seller .saree-card button {
  font-weight: 500;
}
.best__seller .saree-card .product__btn {
  border: 1px solid #5F432D;
  color: #5F432D;
  padding: 0.5rem 1rem;
  transition: all ease 0.2s;
}
.best__seller .saree-card .product__btn:hover {
  border: 1px solid #5F432D;
  background-color: #5F432D;
  color: #ffffff;
}
.best__seller .view__all__btn {
  padding: 2rem 0rem;
  text-align: center;
}
.best__seller .view__all__btn .view__btn {
  border: 1px solid #5F432D;
  color: #ffffff;
  background-color: #5F432D;
  border-radius: 25px;
  padding: 0.7rem 4rem;
  transition: all ease 0.2s;
}
.best__seller .view__all__btn .view__btn:hover {
  border: 1px solid #5F432D;
  background-color: transparent;
  color: #5F432D;
}

footer {
  background-color: #5F432D;
  padding: 4rem 0rem 0rem 0rem;
}
footer .border-container {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 2rem;
}
footer .footer__logo img {
  width: 164px;
  height: 46px;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footer__logo p {
  color: #ffffff;
  font-weight: 500;
}
footer .links h4 {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
footer .links ul {
  list-style: none;
  color: #ffffff;
}
footer .links ul li {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
footer .links ul li:nth-child(1) {
  margin-top: 1rem;
}
footer .links p {
  color: #ffffff;
}
footer .links .social-icon-footer i {
  background-color: #ffffff;
  padding: 0.4rem;
  color: #5F432D;
  border-radius: 25px;
  font-size: 13px;
  margin-right: 4px;
}
footer .copyright {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.testimonial__card__new {
  padding-bottom: 10rem;
}
.testimonial__card__new .outer__card .card__wrapper {
  border: 1px solid #5F432D;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 550px;
}
.testimonial__card__new .outer__card .card__wrapper .card__image {
  height: 300px;
  width: 100%;
}
.testimonial__card__new .outer__card .card__wrapper .card__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonial__card__new .outer__card .card__wrapper .card__data {
  flex: 1;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonial__card__new .outer__card .card__wrapper .card__data .rating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0;
  padding: 20px 20px;
  border-radius: 5px;
  border: 2px solid #ffffff;
  gap: 10px;
}
.testimonial__card__new .outer__card .card__wrapper .card__data .rating-icon i {
  color: #ffc300;
}
.testimonial__card__new .outer__card .card__wrapper .card__data .client-name {
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}
.testimonial__card__new .outer__card .card__wrapper .card__data p {
  text-align: center;
  font-weight: 400;
}
.testimonial__card__new .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.testimonial__card__new .owl-nav button.owl-prev,
.testimonial__card__new .owl-nav button.owl-next {
  background-color: #5F432D;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}
.testimonial__card__new .owl-nav button.owl-prev:hover,
.testimonial__card__new .owl-nav button.owl-next:hover {
  background-color: #5F432D;
  transform: scale(1.1);
}
.testimonial__card__new .owl-nav i {
  font-size: 16px;
  color: #ffffff;
}

.delivery_item .delivery__box {
  border: 1px solid #5F432D;
  border-radius: 25px;
  padding: 30px;
  text-align: center;
}
.delivery_item .delivery__box h6 {
  font-size: 16px;
  line-height: 26px;
}
.delivery_item .delivery__box img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured__product h3 {
  text-align: center;
  color: #000000;
  font-size: 28px;
  text-transform: uppercase;
}
.featured__product p {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
  line-height: 25px;
  padding-bottom: 20px;
}
.featured__product .outer__card {
  display: flex;
  justify-content: center;
  align-items: start;
}
.featured__product .outer__card .card__wrapper .card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  max-width: 407px;
  border-radius: 20px;
}
.featured__product .outer__card .card__wrapper .card__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.4s ease-in-out;
}
.featured__product .outer__card .card__wrapper .card__image .hover-img {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.featured__product .outer__card .card__wrapper .card__image:hover .hover-img {
  opacity: 1;
}
.featured__product .outer__card .card__wrapper .card__image:hover .default-img {
  opacity: 0;
}
.featured__product .outer__card .card__wrapper .card__image .hover__icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  cursor: pointer;
}
.featured__product .outer__card .card__wrapper .card__image:hover .hover__icon {
  opacity: 1;
}
.featured__product .outer__card .card__wrapper .card__data {
  padding-top: 1rem;
}
.featured__product .outer__card .card__wrapper .card__data h4 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 400;
}
.featured__product .outer__card .card__wrapper .card__data .product__price {
  display: flex;
  gap: 20px;
}
.featured__product .outer__card .card__wrapper .card__data .product__price p {
  color: #000000;
}
.featured__product .outer__card .card__wrapper .card__data .product__price i {
  color: #000000;
}
.featured__product .outer__card .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.featured__product .outer__card .owl-nav button.owl-prev,
.featured__product .outer__card .owl-nav button.owl-next {
  background-color: #5F432D;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}
.featured__product .outer__card .owl-nav button.owl-prev:hover,
.featured__product .outer__card .owl-nav button.owl-next:hover {
  background-color: #5F432D;
  transform: scale(1.1);
}
.featured__product .outer__card .owl-nav i {
  font-size: 16px;
  color: #ffffff;
}

.call__to__action {
  background-image: url(../images/callbanner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0rem;
}
.call__to__action .call__content {
  text-align: center;
  color: #ffffff;
}

.explore .outer__card {
  display: flex;
  justify-content: center;
  align-items: start;
}
.explore .outer__card .card__wrapper .card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  max-width: 407px;
  border-radius: 20px;
}
.explore .outer__card .card__wrapper .card__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.4s ease-in-out;
}
.explore .outer__card .card__wrapper .card__image .hover-img {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.explore .outer__card .card__wrapper .card__image:hover .hover-img {
  opacity: 1;
}
.explore .outer__card .card__wrapper .card__image:hover .default-img {
  opacity: 0;
}
.explore .outer__card .card__wrapper .card__image .hover__icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  cursor: pointer;
}
.explore .outer__card .card__wrapper .card__image:hover .hover__icon {
  opacity: 1;
}
.explore .outer__card .card__wrapper .card__data {
  padding-top: 1rem;
}
.explore .outer__card .card__wrapper .card__data h4 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 400;
}
.explore .outer__card .card__wrapper .card__data .product__price {
  display: flex;
  gap: 20px;
}
.explore .outer__card .card__wrapper .card__data .product__price p {
  color: #000000;
}
.explore .outer__card .card__wrapper .card__data .product__price i {
  color: #000000;
}

.about__banner {
  position: relative;
  background-image: url(../images/banner/abt-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
}
.about__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(95, 67, 45, 0.6);
  z-index: 1;
}
.about__banner .about__banner__heading {
  position: relative;
  z-index: 2;
}
.about__banner .about__banner__heading h2 {
  text-align: center;
  color: #ffffff;
}

.about__main__wrapper .left_about_image img {
  height: 600px;
  width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 20px;
}
.about__main__wrapper .right_about__data h6 {
  font-weight: 600;
  color: #000;
  font-size: 18px;
}
.about__main__wrapper .right_about__data h3 {
  font-weight: 700;
  font-size: 35px;
}
.about__main__wrapper .right_about__data h3 span {
  color: #5F432D;
}
.about__main__wrapper .right_about__data p {
  font-size: 15px;
  line-height: 25px;
}

.contact-info-area {
  padding: 6rem 0rem;
}
.contact-info-area .contact-info .item {
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  padding: 50px 30px;
  text-align: center;
  background: var(--white) none repeat scroll 0 0;
  border-radius: 20px;
}
.contact-info-area .contact-info .item .icon i {
  font-size: 20px;
  background-color: #5F432D;
  color: #ffffff;
  padding: 20px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-area .contact-info .item .info h4 {
  font-size: 20px;
  padding-top: 10px;
}

.map-form-wrapper {
  padding: 0rem 0rem 6rem 0rem;
}
.map-form-wrapper .maps-form form {
  background-color: #5F432D;
  padding: 50px 30px 30px 30px;
  border-radius: 15px;
}
.map-form-wrapper .maps-form form .form-group {
  margin-bottom: 15px;
}
.map-form-wrapper .maps-form form .form-group .form-control {
  border-radius: 5px;
  border: 1px solid #ffffff;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
}
.map-form-wrapper .maps-form form .form-group .form-control::-moz-placeholder {
  color: #ffffff;
  font-size: 15px;
}
.map-form-wrapper .maps-form form .form-group .form-control::placeholder {
  color: #ffffff;
  font-size: 15px;
}
.map-form-wrapper .maps-form form .form-group .form-control:focus {
  box-shadow: none;
}
.map-form-wrapper .maps-form form button {
  background: #ffffff;
  color: #5F432D;
  padding: 10px 40px;
  border: none;
  border-radius: 25px;
}
.map-form-wrapper .maps-form .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-form-wrapper .maps-form .social-icon i {
  background-color: #5F432D;
  padding: 0.4rem;
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  height: 32px;
  width: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yarn__banner img {
  border-radius: 30px;
  max-width: 100%;
  position: relative;
  display: block;
  margin: 0 auto;
}
.yarn__banner .data p {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 36px;
}
.yarn__banner .data p:first-child {
  padding-top: 50px;
}/*# sourceMappingURL=style.css.map */