@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#content{
  display: hidden;
}

:root {
  --pink-color: #f3e5e4;
  --brown-color: #42210b;
  --gray-color: #d4d4d4;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Playfair Display", serif;
}
html,
body {
  width: 100%;
  height: 100%;
  text-decoration: none !important;
  background-color: var(--pink-color);
  font-family: var(--main-font);
}
.navbar {
  z-index: 5000;
 /*background-color: #0e04df;*/
}
.navbar-nav {
  gap: 30px;
}
::selection {
  color: var(--white-color);
  background: var(--brown-color);
}
.nav-link {
  font-size: 20px;
  font-weight: 600;
   /*color: white;*/
  color: var(--brown-color);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust this value as needed */
  width: 100%;
  border-bottom: 2px solid var(--brown-color); /* Add underline */
   /*border-bottom: 2px solid white;*/
   color:white !important;
}

.navlinks {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  margin-left: 20px;
  padding-top: 5px; /* Add padding between text and underline */
}
.project_section_started {
  position: relative;
}
.project_detailss {
  width: 80%;
  position: relative;
  top: -100px;
  left: 0;
  padding: 0px 20px;
  background-color: var(--white-color);
}
.project_details img {
  border-radius: 10px;
}
.project_details a {
  text-decoration: none;
}
.project_details p {
  font-size: 24px;
  color: var(--brown-color);
  text-align: center;
  padding: 30px 0px;
  font-weight: 700;
}
.navlinks::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease; /* Add smooth transition */
}

.navlinks:hover::after {
  width: 100%; /* Expand underline on hover */
}

.brand_logo {
  width: 100px;
  height: 100px;
}
.navbar-toggler {
  border: 1px solid var(--brown-color);
}
.project_parent {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.project_heading {
  font-size: 30px;
  text-align: center;
  color: var(--brown-color);
}

.read_color {
  color: var(--brown-color);
  text-decoration: none;
  font-weight: 600;
}
.about_details {
  font-size: 24px;
  font-family: var(--main-font);
}

.middle_banner {
  width: 100%;
  background-image: url("../images/home/middlebanner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.mid {
  height: 50vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.middle_banner_title {
  font-size: 60px;
  color: var(--white-color);
  font-weight: 700;
  font-family: var(--main-font);
}
.inner_title {
  margin: 30px 40px;
  font-size: 60px;
  font-weight: 500;
  color: var(--brown-color);
  padding: 0px 20px;
  border-left: 1px solid var(--brown-color);
  font-family: var(--main-font);
}
.inner_titles {
  font-size: 60px;
  font-weight: 500;
}

.services_list {
  list-style: none;
}
.services_list li {
  padding: 20px 20px;
  border-top: 1px solid black;
  transition: 0.2s all ease-in;
}
.services_list li:hover {
  background-color: var(--brown-color);
}

.services_list li a {
  font-size: 30px;
  font-weight: 500;
  color: var(--brown-color);
  text-decoration: none;
}
.services_list li:hover a {
  color: white;
}

.img_box {
  padding: 0px;
}

.mam_name {
  font-size: 24px;
  font-weight: 700;
  color: var(--brown-color);
}
.mam_name span {
  font-size: 14px;
  font-weight: 300;
  color: var(--brown-color);
}

/* .img_box_one{
    width: 100%;
    height: 100vh;
    background-image: url(../images/home/project_1.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.img_box_three{
    width: 100%;
    height: 100vh;
    background-image: url(../images/home/project_2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.img_box_two{
    width: 100%;
    height: 100vh;
    background-image: url(../images/home/project_3.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.img_box_four{
    width: 100%;
    height: 100vh;
    background-image: url(../images/home/project_4.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
} */
.project_meet {
  height: auto;
  padding: 100px 0px;
}
.project_left {
  display: flex;
  align-items: center;
}
.project_left p {
  font-size: 60px;
  color: var(--brown-color);
}
.hover-underline {
  position: relative;
  display: inline-block;
}
.hover-underline a {
  color: var(--brown-color) !important;
   /*color: white !important;*/
  text-decoration: none;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  /*background-color: var(--brown-color); /* Adjust as needed */
  background-color:white;
  transition: width 0.5s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

.footer_list li a i {
  padding-right: 20px;
}
#goToTopBtn {
  height: 70px;
  width: 70px;
  font-size: 20px;
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--brown-color); /* Button background color */
  color: #fff; /* Button text color */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999; /* Ensure it's above other content */
}

#goToTopBtn:hover {
  background-color: var(--white-color);
  color: var(--black-color);
  border: 1px solid var(--brown-color);
}
#goToTopBtns {
  font-size: 20px;
  display: none;
  position: fixed;
  right: 50%;
  bottom: 0;
  background: transparent;
  color: var(--white-color);
  border: none;
  cursor: pointer;
  z-index: 9999; /* Ensure it's above other content */
}
.nav_social a {
  font-size: 40px;
}
/* footer{
    margin-top: 100px !important;
} */
.footer_logo {
  width: 217px;
  height: 170px;
}
.toggle-line {
  background-color: #fff !important;
  color: #fff !important;
}
.second_line {
  color: var(--white-color) !important;
}
.ri-menu-3-line {
  font-size: 30px;
  color: var(--brown-color);
}
.navbar-toggler:focus {
  box-shadow: 1px solid var(--white-color);
}
.services_section {
  position: relative;
  overflow: hidden;
}
.ol,
ul {
  padding-left: 0;
}

.h2,
.text-h2 {
  color: var(--brown-color);
}
.web_banner {
  width: 100%;
  height: 500px;
}
.web_project {
  background-image: url("../images/projects/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project1 {
  background-image: linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)), url("../images/projects/banner1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project2 {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)), url("../images/projects/banner2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project3 {
  background-image: linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)), url("../images/projects/banner3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project4 {
  background-image: linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)), url("../images/projects/banner4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project5 {
  background-image: linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)), url("../images/projects/banner5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project6 {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/projects/banner6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project7 {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/projects/banner7.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project8 {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/projects/banner8.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project9 {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/projects/banner9.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project10 {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/projects/banner10.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_project11 {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/projects/banner11.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_achivements {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/achivements/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_about {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/about/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_contact {
  background-image: linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)), url("../images/contact/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_services {
  background-image:linear-gradient(rgba(0,0,0.5), rgba(0,0,0,0.5)),  url("../images/services/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner_title {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner_title p {
  font-size: 50px;
  font-weight: 600;
  padding-bottom: 20px;
  color: var(--white-color);
}
.banner_title p a {
  font-size: 50px;
  padding-bottom: 20px;
  color: var(--white-color);
}
.section_start {
  margin-top: 50px;
}

.project_work {
  margin-top: 300px;
}
.project_line {
  padding: 0px;
  margin: 0px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--brown-color) !important;
}
.form-control {
  border: none;
  border-bottom: 1px solid var(--brown-color);
  border-radius: 0px;
  background: none !important;
}
.form-control:placeholder-shown {
  font-size: 20px;
}
.submit_btn {
  padding: 15px;
  background-color: transparent;
  border: 1px solid var(--brown-color);
  border-radius: 30px;
  transition: 0.3s all ease-in;
}
.submit_btn:hover {
  background-color: var(--brown-color);
  color: var(--white-color);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
textarea {
  resize: none;
}
.contact_details {
  margin-top: 100px;
}
.contact-link {
  position: relative;
  color: var(--brown-color);
  text-decoration: none;
  font-family: var(--main-font);
  font-size: 24px;
}
.contact_info h4 {
  padding-bottom: 20px;
  line-break: anywhere;
}

.contact-link:hover i {
  background-color: var(
    --brown-color
  ); /* Change the background color of the link on hover */
  color: white; /* Change the text color to white on hover */
  transition: background-color 0.3s, color 0.3s; /* Add transition for smooth effect */
  border-radius: 50%;
}

.contact-link i {
  margin-left: 5px; /* Adjust the spacing between the text and the arrow icon */
}

.services_heading p {
  font-weight: 600;
  font-size: 80px;
  line-height: 120px;
  text-align: center;
  line-break: auto;
  color: var(--brown-color);
}

.list p {
  font-size: 30px;
  font-family: var(--main-font);
  color: var(--brown-color);
  font-weight: 600;
}
.menulist li {
  list-style: none;
  padding-bottom: 20px;
}
.menulist li a {
  text-decoration: none;
  color: var(--brown-color);
  font-size: 18px;
  font-weight: 500;
}
.menulist li a i {
  padding-right: 20px;
}
.last {
  background-color: #42210b;
  /*background-color:#0e04df;*/
  width: fit-content;
  margin: auto;
  color: #fff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  margin-top: 30px;
  text-decoration: none;
  padding: 10px 20px 0px 20px;
  font-family: var(--main-font);
}
.last_line {
  text-decoration: none;
  font-family: var(--main-font);
  color: var(--white-color);
  font-weight: 600;
}
.video_section {
  width: 100%;
  height: 700px;
  background-color: #42210b;
  object-fit: cover;
}
.videoss {
  height: 100%;
  width: 100%;
  background: #000;
  object-fit: cover;
}
.carousel-item {
  position: relative;
}
.slider_text {
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); /* Move back by half of its own width and height */
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  font-family: var(--main-font);
  text-transform: uppercase;
}
.slides {
  height: 1080px;
  width: 100%;
}
.follow_box p {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 24px;
  color: var(--brown-color);
}
.follow_list {
  list-style: none;
  display: flex;
  gap: 20px;
}
.follow_list li a {
  text-decoration: none;
  color: var(--brown-color);
  font-size: 20px;
}
.whatsapp {
  position: fixed;
  right: 20px !important;
  top: 85%;
  z-index: 100000;
}
.whatsapp a {
  text-decoration: none;
}
.whatsapp h5 {
  text-decoration: none;
  font-size: 80px;
  color: #31ba44;
}
.footer_section {
  margin-top: 100px;
}
.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  z-index: 999;
}
.white-heading {
  color: #ffffff;
}
.heading:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png);
  background-repeat: no-repeat;
  background-position: center;
}
.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}
.white-heading span {
  color: #ffffff;
}
/*-----Testimonial-------*/
.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
    background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
        background-size: cover;
}
#testimonial4 .carousel-inner:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control{
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right{
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header{
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
    object-fit: scale-down;
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}
.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel {
	padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}
/* ------testimonial  close-------*/
/* ------testimonial  close-------*/


.featured {
	padding-top: 80px;
	padding-bottom: 40px;
}

.featured__controls {
	text-align: center;
	margin-bottom: 50px;
}

.featured__controls ul li {
	list-style: none;
	font-size: 18px;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 25px;
	position: relative;
	cursor: pointer;
}

.featured__controls ul li.active:after {
	opacity: 1;
}

.featured__controls ul li:after {
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #42210b;
	content: "";
	opacity: 0;
}

.featured__controls ul li:last-child {
	margin-right: 0;
}

.featured__item {
	margin-bottom: 50px;
}

.featured__item:hover .featured__item__pic .featured__item__pic__hover {
	bottom: 20px;
}

.featured__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
	background-position: center center;
}

.featured__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.featured__item__pic__hover li:last-child {
	margin-right: 0;
}

.featured__item__pic__hover li:hover a {
	background: #7fad39;
	border-color: #7fad39;
}

.featured__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.featured__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.featured__item__text {
	text-align: center;
	padding-top: 15px;
}

.featured__item__text h6 {
	margin-bottom: 10px;
}

.featured__item__text h6 a {
	color: #252525;
}

.featured__item__text h5 {
	color: #252525;
	font-weight: 700;
}
/*.navcontainer{*/
/*    max-width: 1680px!important;*/
/*}*/

@media only screen and (max-width: 600px) and (min-width: 426px){
 
 #testimonial4 .carousel-inner{
     height:315px;
 }
 
    
}
#spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner-video {
  width: 100% !important; /* Adjust size as needed */
  height: auto !important;
  object-fit: cover;
}

.hidden {
  display: none;
}