/*@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");*/
/*@import url("https://fonts.googleapis.com/css2?family=ADLaM+Display&display=swap");*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --background: #fdf7f7;
  --primary: #e4d3b7;
  --primary-70: #f9e7cab2;
  --primary-110: #d3b98c;
  --foreground: #ffffff;
  --black: black;
  --white: white;
  --gray: #494949;
  --button-color: #d3b98c;
  --heading_font: "Montserrat", sans-serif;
  --orange: #ff4900;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  font-family: "Montserrat", sans-serif;
}

svg {
  flex: none;
}

.container-lg,
.container-fluid {
  padding: 0 !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0 !important;
}

p {
  letter-spacing: 0.2px;
  text-wrap-style: balance;
  margin-bottom: 0 !important;
}

body {
  background: var(--background) !important;
}

.text-gray {
  color: var(--gray);
}

/* Navbar css*/
input:focus {
  outline: none !important;
}

nav .search_bar_nav {
  background: #f5f5f6;
}

nav .login_button {
  border: none;
  background: #ff4900;
  color: white;
  font-weight: 450;
}

nav.navbar {
  background: var(--primary);
}

nav .logo_img {
  width: 120px;
}

.logo_img {
  width: 100px;
}

.dropdown-menu[data-bs-popper] {
  margin-top: 10px !important;
}

nav .navbar-toggler:focus {
  box-shadow: none !important;
}

nav .navbar-toggler {
  padding: 0;
}

nav .svg-container {
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
}

nav .svg-container svg {
  width: 40px;
  height: 40px;
  stroke: var(--black);
}

nav .line1 {
  transform-origin: center;
  transition: transform 0.3s ease;
}

nav .line2 {
  transition: opacity 0.3s ease;
}

nav .line3 {
  transform-origin: center;
  transition: transform 0.3s ease;
}

nav .svg-container.active .line1 {
  transform: rotate(45deg) translate(0px, 6px);
}

nav .svg-container.active .line2 {
  opacity: 0;
}

nav .svg-container.active .line3 {
  transform: rotate(-45deg) translate(0px, -6px);
}

/* Navbar Css Ends*/

/*mega Menu Css Starts Ankush*/

.full-width-nav.show {
    width: 94%;
    position: fixed !important;
    top: 15% !important;
    left: 47px !important;
    max-height: 78vh;
    overflow-y: auto;
    background: #eee5d6;
    padding: 2rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.full-width-nav {
    display: none;
}

.full-width-nav.show {
    display: flex;
}

/* Transition effects */
.wraper, .wraper2 {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.wraper.show, .wraper2.show {
    opacity: 1;
    visibility: visible;
}
.submenu-section {
    opacity:0.8;
   font-weight: 600 !important;
}
.dropdown-item a{
    font-weight:500 !important;
    color:#494949 !important;
    opacity:0.7;
}
.dropdown-item:hover a{
    color:#ff4900 !important;
}
.submenu-item a{
    font-weight:500;
    color:#494949;
    opacity:0.7;
    text-decoration:none;
}
.submenu-item:hover a{
    color:#ff4900;
}
.custom-border{
    border-left:1px solid #00000021;
}

.offcan-color{
    background:#e4d3b7 !important;
}
.off-canvas-wrap{
    background:#e4d3b7 !important;
}
.btn{
    border:none !important;
}
/*Mega Menu Css Ends */
/*Shop By category css Starts*/

/* Ensure the dropdown container has relative positioning */
.category-dropdown {
    position: relative;
}

/* Hide sidemenu by default */
.sidemenu {
    display: none;
    margin-top: 1rem;
}

/* Show sidemenu when it is toggled */
.sidemenu.show {
    display: block;
}

/* Add some padding to the sidemenu items */
.side-menu-item {
    padding: 0.5rem 1rem;
}

/* Style for the category dropdown button */
.btn.dropdown-toggle {
    color: #495057;
    border: 1px solid #ced4da;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.side-menu-item {
    text-decoration:none !important;
    font-size:0.8rem;
    color: #495057;
}
.dropdown-item {
    padding: 0.5rem 1rem;
    color: #495057;
    font-size: 0.9rem;
    cursor: pointer;
}

.side-menu-section {
    position: relative;
    padding: 0.5rem 0;
}

.side-menu-section:hover .sidemenu {
    display: block;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    color: #007bff;
}


/*Shop By category css Ends*/

/*hero slider Css Start*/
.home{
    height:75vh;
}
.home_banners{
    width:100%;
    height:100%;
}
.home-banners-wrap {
    position: relative;
    width:100%;
    height:100%;
}

.banner-image {
    position: relative;
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    object-position:center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Places the overlay above the image */
    /*background: linear-gradient(90deg, rgba(228, 211, 183, 1) 51%, rgba(255, 255, 255, 1) 100%);*/
    background:black;
    opacity: 0.4;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Places the text above the overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Ensures the text is visible */
}
.text-with-shadow{
    text-shadow: 8px 8px 12px rgba(0, 0, 0, 0.8);
}

/*hero slider Css Ends*/
 /*Image Gallery modal Starts*/
.modal-body img {
 height: 45vh;
  width: 100%;
  object-fit: contain;
}
/*Image Gallery Modal ends*/
.hero_video{
    height:600px;
    width:100%;
    object-fit: cover;
    object-position: center;
}

.overly_video_bg{
    backdrop-filter: blur(1px);
    background: linear-gradient(90deg, rgba(195, 144, 71, 0.7) 1.02%, rgba(207, 204, 204, 0.7) 43.95%, rgba(218, 215, 215, 0.504) 50.67%, rgba(255, 255, 255, 0) 74.55%);
}

.form_section button.dropdown-toggle{
    background: white;
    border: 2px solid #00000036 !important;
    color: black;
}

.hero_heading{
    font-size: 3.4rem;
}

.estimate_btn{
    color:white;
    background: #ff4900;
    border: none;
    padding: 13px 45px;
    border-radius: 10px;
    transform: translateY(-50%);
}

.banner_slides {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.banner_slides img {
  width: 100%;
  height: 90vh;
  aspect-ratio: 2/1.5;
  object-fit: cover;
}

.banner_slides .banner_overly {
  background: linear-gradient(
    90deg,
    rgba(195, 144, 71, 0.7) 1.02%,
    rgba(207, 204, 204, 0.7) 43.95%,
    rgba(218, 215, 215, 0.504) 50.67%,
    rgba(255, 255, 255, 0) 74.55%
  );
}

.shop_btn {
  background: var(--button-color);
  padding: 10px 20px;
  border-radius: 7px;
  color: var(--black);
  font-weight: 550;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  user-select: none;
}

.shop_btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  transform-origin: center;
  transform: rotate(0deg);
  transition: all 0.2s linear;
}

.shop_btn:hover svg {
  transform: rotate(-7deg);
}

.gap-6 {
  gap: 3.8rem;
}

.new_batch {
  background: #c5a266;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  user-select: none;
}

.font_heading {
  font-family: var(--heading_font);
}

.product_card {
    background: #E4D3B7;
    border-radius: 10px;
    padding: 10px;
}

.product_card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.product_card p{
    display: -webkit-box; 
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;  
}

.slider_btns {
  border: none;
  background: var(--button-color);
  color: var(--white);
  padding: 8px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery_btns {
  border: none;
  padding: 8px 18px;
  background: transparent;
  border: 2px solid var(--button-color);
  color: var(--black);
  font-weight: 550;
  font-size: 15px;
  border-radius: 5px;
  user-select: none;
}

.gallery_btns.active {
  background: var(--button-color);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 16px;
  width: 100%;
}

.grid-item {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.item1 {
  grid-column: span 4;
  grid-row: span 2;
  background-image: url("../images/gallery/img-1.webp");
}

.item2 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/gallery/img-2.webp");
}

.item3 {
  grid-column: span 3;
  grid-row: span 2;
  background-image: url("../images/gallery/img-3.webp");
}

.item4 {
  grid-column: span 3;
  grid-row: span 2;
  background-image: url("../images/gallery/img-1.webp");
}

.item5 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/gallery/img-2.webp");
}

.item6 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/gallery/img-3.webp");
}
.item7 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/gallery/img-1.webp");
}

.item8 {
  grid-column: span 3;
  grid-row: span 2;
  background-image: url("../images/gallery/img-2.webp");
}

.item9 {
  grid-column: span 3;
  grid-row: span 2;
  background-image: url("../images/gallery/img-1.webp");
}

.item10 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/gallery/img-3.webp");
}

.item11 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/gallery/img-2.webp");
}

.item12 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/gallery/img-1.webp");
}

.gallery_item {
  display: none;
}

.gallery_item.active {
  display: block;
}

.cta_section {
  background: var(--primary);
}

.arrival_card .img_holder img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}

.arrival_card .img_holder {
  position: relative;
}

.overly_shop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.588);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overly_shop svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.overly_shop > a > p {
  color: white;
  font-weight: 500;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
}

.arrival_card .img_holder .overly_shop {
  left: -100%;
  animation: sliding_end 0.2s forwards linear;
  transition: all 0.01s ease-in-out;
}

.arrival_card:hover .img_holder .overly_shop {
  animation: sliding_start 0.2s forwards linear;
}

@keyframes sliding_start {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

@keyframes sliding_end {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

.new_arrival_scrollbar {
  top: 50% !important;
  left: 0 !important;
  transform: translate(0, -50%) !important;
}

.design_gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 16px;
  width: 100%;
}

.designed_items {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.item_1 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/designs/design-1.webp");
}

.item_2 {
  grid-column: span 4;
  grid-row: span 2;
  background-image: url("../images/designs/design-2.webp");
}

.item_3 {
  grid-column: span 4;
  grid-row: span 2;
  background-image: url("../images/designs/design-3.webp");
}

.item_4 {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url("../images/designs/design-4.webp");
}

.picks_btns {
  border: none;
  padding: 8px 18px;
  background: transparent;
  border: 2px solid var(--button-color);
  color: var(--black);
  font-weight: 550;
  font-size: 15px;
  border-radius: 5px;
  user-select: none;
}

.picks_btns.active {
  background: var(--button-color);
}

.picks_item {
  display: none;
}

.picks_item.active {
  display: block;
}

.testimonial_slider_item {
  user-select: none;
}

.testimonial_slider_item img.user_img {
  width: 60px;
}

.testimonial_slider_item .svg_rating {
  width: 90px;
  height: 20px;
}

.test_prev_div {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 1;
}

.test_next_div {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 1;
}

.swiper-pagination-bullet-active {
  background: #e6b86c !important;
  width: 30px !important;
  border-radius: 10px !important;
}

.fs-7 {
  font-size: 14px;
}

.blog_card img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}

.line_limit_2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line_limit_3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.accordion-button {
  background: var(--background) !important;
  font-weight: 500;
  font-size: 18px !important;
  padding: 25px 20px !important;
}

.accordion-button:focus,
.btn-close:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  color: var(--black) !important;
  box-shadow: none !important;
}

.accordion-item {
  background: #f0e8db !important;
  border: none !important;
  border-radius: 15px !important;
  margin-bottom: 10px !important;
}

.footer_links {
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer_links svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
}

.form-control:focus {
  box-shadow: none !important;
}

.footer_socials a svg {
  width: 40px;
  height: 40px;
  transition: all 0.2s linear;
}

.footer_socials a:hover svg {
  transform: scale(1.1);
}

.shadow-custom {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.banner_section {
  height: 400px;
  width: 100%;
}

.banners_overly {
  background: #e4d3b780;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
}

.square_img {
  width: 75%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.overly_img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 60%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 1;
}

.w-75-custom {
  width: 75% !important;
}

.aspect_square {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: bottom center;
}

.text-justify {
  text-align: justify;
}

.tiles_card {
  padding: 0px 14px;
}

.whatsapp_anchor{
    display:inline-block;
    position:absolute;
    top: 5%;
    right: 8%;
    z-index: 3;
}

.whatsapp_img{
    width: 35px;
    object-fit: contain;
}

.tiles_card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

.pagination li a {
  color: var(--black) !important;
  font-weight: 500;
}

.line_clamp_4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.size_btn {
  background: var(--black);
  padding: 7px 15px;
  border-radius: 5px;
  color: var(--white);
  font-weight: 450;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  pointer-events: none;
  user-select: none;
}

.enquiry_btn {
  background: var(--button-color);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  user-select: none;
}

.related_card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.login_button {
  border: none;
  background: #ff4900;
  color: white;
  font-weight: 450;
}
.blog_cards{
    border:1px solid #d3b98c;
    display:inline-block !important;
    text-decoration:none !important;
    color:inherit !important;
    user-select:none;
}

.blog_cards .blog_img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    object-position:center;
}

.blog_cards .blog_title{
    color:black;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_cards .blog_date{
    font-size:14px;
    font-weight:500;
    color:#d3b98c;
}

.blog_cards .blog_para{
    text-align: justify;
    text-wrap-style: pretty;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navigation_bar{
    display:flex;
    justify-content:start;
    align-items:center;
    user-select:none;
    gap:6px;
}

.navigation_bar svg{
    stroke:#d3b98c;
    width:18px;
    height:18px;
}

.navigation_bar a{
    color:#d3b98c !important;
    font-weight:500;
    font-size:14px;
    text-decoration:none !important;
}

.line_limit_1{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content_beautify{
    text-align: justify;
    text-wrap-style: pretty;
}

.blog_ul{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:10px;
}

.blog_ul li{
    list-style:disc !important;
}

.blog_image{
    width:100%;
    object-fit:cover;
    aspect-ratio:16/9;
}

.related_blogs{
    display:block;
    color:inherit;
    text-decoration:none;
    user-select:none;
}

.related_blogs img{
    width: 110px;
    aspect-ratio:1/1;
    object-fit:cover;
}

.related_blogs_title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related_blogs p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*style Start Ankush*/
.aspect-image{
    width:100%;
    object-fit:cover;
    object-position:center;
    aspect-ratio: 1/1;
}
/*giving height to slider above testimonial because of overflowing*/
.swiper-wrapper{
    height:auto !important;
}
/*style End Ankush*/

.contact_form_img{
    background: url(../images/contact_form_img.webp);
    background-size: cover;
    background-position: center;
}

.mega_menu{
    background:var(--primary);
}

.suggestion a, .related_card a{
    text-decoration: none;
    color: black;
}

.category_option{
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    user-select: none;
    background: #e4d3b7;
    padding: 10px;
    border-radius: 10px;
    width:100%;
    transition:all 0.1s linear;
}

.category_option:focus{
    outline:none !important;
}

.category_option:hover{
    transform:scale(1.03);
}

.category_option img{
    width: 60px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.category_option h5{
    font-size:18px;
    font-weight:550;
    display: -webkit-box;      /* needed for -webkit-line-clamp to work */
      -webkit-line-clamp: 1;     /* number of lines to show */
      -webkit-box-orient: vertical; /* sets the box to a vertical layout */
      overflow: hidden;
}

.category_option h5,.category_option p{
    color:black !important;
}

.category_option .category_title{
    font-size: 15px;
    font-weight: 500;
    display:flex;
    align-items:center;
    color: #000000bf !important;
}

.category_option .category_title svg{
    width: 18px;
    height: 18px;
    margin-bottom: 2px;
}

.estimate_card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    object-position:center;
}

.explore_btn{
    border: 2px solid var(--orange);
    padding: 5px 25px;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 550;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 0px var(--orange);
    transition:all 0.2s linear;
}

.explore_btn:hover{
    box-shadow: 0px 0px 5px 2px var(--orange);
}

.estimate_title{
    font-size:18px;
    font-weight:550;
    color:black;
}

.estimate_value{
    font-size:16px;
    font-weight:450;
    color: #000000a1;
}

.estimate_value svg{
    width:17px;
    height:17px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--orange) !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color:white !important;
    background-color: var(--orange) !important;
}

.line_limit{
    display: -webkit-box;      /* establishes a flex‑box for webkit */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;     /* number of visible lines */
  overflow: hidden; 
}

.active>.page-link, .page-link.active {
    background-color:#ff4900 !important;
    border-color: #ff4900 !important;
}

.page-link:focus{
    box-shadow:none !important;
}

.mob_static.show{
   min-width: 220px;
}

.mob_static li a{
    white-space:wrap !important;
}

.image-wrapper img{
    border-radius:100% !important;
}

.youtube_videos iframe{
    overflow:hidden;
    border-radius:10px;
    width:100%;
    height:400px;
}