@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Marcellus", serif;
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
}

/* =======================================
Header section styling
==========================================*/
.navbar {
  z-index: 100;
  padding: 10px 0;
  background-color: #ffffff;
  border-radius: 0;
  border: none;
  margin: 0;
  box-shadow: 0px 0px 20px 0px rgba(7, 20, 52, 0.1);
}
.navbar-brand > img {
  display: block;
  height: 60px;
}
.nav .nav-link {
  font-size: 17px;
  font-weight: 600;
  line-height: 31px;
  padding: 28px 15px;
  color: #232323;
}
.attr-box ul {
  display: flex;
  /* height: 20vh; */
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
  list-style: none;
}
.attr-box ul .dropdown a {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: black;
  padding: 15px;
  border-radius: 50%;
}
.attr-box ul a i {
  font-size: 20px;
  color: white;
}
.attr-box ul .badge {
  position: absolute;
  top: 2px;
  right: -8px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  color: white;
  background-color: #e7272d;
  border-radius: 50%;
}

.attr-box ul .button a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background-color: #e7272d;
  border-radius: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.attr-box ul .button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 110%;
  height: 100%;
  background-color: #232323;
  color: #ffffff;
  transform: translateX(-50%) scaleX(0) skewX(20deg);
  transform-origin: center;
  transition: transform 0.3s ease-out;
  z-index: -1;
}

.attr-box ul .button a:hover::before {
  transform: translateX(-50%) scaleX(1) skewX(20deg);
  color: #fff;
}

.attr-box ul .button a span {
  position: relative;
  z-index: 1;
}

.attr-box ul .button a:hover {
  color: #ffffff;
  z-index: 3;
}

/* =======================================
Banner section styling
==========================================*/
.banner {
  width: 100%;
  height: 100vh;
  margin-top: 10px;
  padding: 0 70px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}
.banner .banner-items {
  background-image: url(./assets/images/banner/9.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

.banner .banner-items .item1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  opacity: 1; /* always visible */
  transform: none; /* no animation */
}

.banner .banner-items .item2 {
  position: absolute;
  top: 50%; /* vertically center */
  left: 30%; /* horizontally center */
  transform: translate(-50%, -50%); /* perfectly centered */
  opacity: 1; /* always visible */
  z-index: 2;
  color: #fff; /* visible text color */
  font-size: 3rem; /* adjust as needed */
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

/* =======================================
About section styling
==========================================*/
.about {
  padding: 100px 0;
}

.sub-title {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 20px;
  padding: 0 10px;
  color: #e7272d;
}
.sub-title img {
  height: 15px;
  padding: 0 10px;
}
.title {
  font-size: 50px;
  color: #232323;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 15px;
  text-align: center;
}
.about-four-thumb {
  display: flex;
}

.about-four-thumb .left {
  width: 400px;
  height: 428px;
  margin-right: 15px;
}
.about-four-thumb .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-four-thumb .right {
  margin-left: 15px;
  width: 350px;
}
.about-four-thumb .right img {
  width: 285px;
  height: 265px;
  border-radius: 10px;
  margin-top: 5px;
}
.about-four-thumb .fun-fact {
  background: #e7272d;
  color: #ffffff;
  text-align: center;
  padding: 30px;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-four-thumb .fun-fact .counter {
  display: flex;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 15px;
}
.about-four-thumb .fun-fact .medium {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

.about-four-info {
  margin: 0 0 0 40px;
}
.about-four-info p {
  font-size: 16px;
  line-height: 29px;
  color: #515151;
}
ul.list-style-one {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-one li {
  border-top: 1px solid #dddddd;
  display: flex;
  border-bottom-left-radius: 30px;
  border-left: 1px solid #dddddd;
  padding: 35px;
  border-top-left-radius: 30px;
  position: relative;
  z-index: 1;
}

.bg-dark ul.list-style-one li {
  border-color: rgba(255, 255, 255, 0.2);
}

ul.list-style-one li .icon {
  background: #232323;
  height: 90px;
  width: 90px;
  line-height: 90px;
  min-width: 90px;
  text-align: center;
  display: inline-block;
  margin-right: 30px;
  border-radius: 50%;
}

ul.list-style-one li .icon img {
  width: 100%;
  padding: 20px;
}

ul.list-style-one li:nth-child(2n) {
  border-left: none;
  border-radius: 0 30px 30px 0;
  border-right: 1px solid #dddddd;
  border-top: none;
  border-bottom: 1px solid #dddddd;
}

.bg-dark ul.list-style-one li:nth-child(2n) {
  border-color: rgba(255, 255, 255, 0.2);
}

ul.list-style-one li p {
  margin: 0;
}

ul.list-style-one li:nth-child(2n)::after {
  position: absolute;
  right: 0;
  content: "";
  height: 30px;
  border-top: 1px solid #dddddd;
  top: 0;
  border-top-right-radius: 30px;
  width: 50%;
}

.bg-dark ul.list-style-one li:nth-child(2n)::after {
  border-color: rgba(255, 255, 255, 0.2);
}

ul.list-style-one li::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 30px;
  width: 50%;
  border-bottom: 1px solid #dddddd;
  border-bottom-left-radius: 30px;
}

.bg-dark ul.list-style-one li::before {
  border-color: rgba(255, 255, 255, 0.2);
}

ul.list-style-one li:nth-child(2n)::before {
  display: none;
}

/* <!--====================================
        Special section
    ==================================== --> */
.special {
  padding: 100px 0;
  background-color: #ebe9e6;
}
.special .item-card {
  border-radius: 15px;
  height: 475px;
  /* background-color: #ffffff; */
  padding: 50px 50px 0;
  transition: all 0.5s linear;
}
.special .item-card:hover {
  background-color: #ffffff;
}
.special p {
  color: #515151;
}

.special .item-card .thumb img {
  width: 150px;
}
.special .item-card .info > h4 > a {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: #04000b !important;
}

.best-food-style-one-item .price-rate {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  max-width: 300px;
  margin: 25px auto 15px;
}

.best-food-style-one-item .price-rate h5 {
  margin: 0;
  background: #e7272d;
  color: #ffffff;
  padding: 10px 5px;
}

.best-food-style-one-item .price-rate .rating {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #ffb300;
  border: 1px solid #cccccc;
  border-radius: 10px 0 0 10px;
  border-right: none;
  padding-top: 8px;
}

/* <!--====================================
        deal section
    ==================================== --> */

.default-padding {
  padding: 120px;
  color: #ffffff;
}

.best-deal-style-one-item {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  padding: 60px;
}

.best-deal-style-one-item > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

.best-deal-style-one-item .info {
  position: relative;
  padding-right: 30%;
}

.best-deal-style-one:nth-child(2) .best-deal-style-one-item .info {
  padding-left: 30%;
  padding-right: 0;
  text-align: right;
}

.best-deal-style-one-item .info h4 {
  font-family: var(--font-optional);
  font-size: 28px;
  margin-bottom: 10px;
}

.best-deal-style-one-item .info h2 {
  font-size: 65px;
  text-transform: uppercase;
  line-height: 1;
}

.best-deal-style-one-item .offer {
  position: absolute;
  right: 25%;
  top: 30px;
}

.best-deal-style-one-item .offer h2 {
  position: relative;
  font-size: 30px;
  right: 60px;
  font-family: var(--font-default);
  font-weight: 800;
}

.best-deal-style-one-item .item-discount {
  position: absolute;
  left: 60px;
  height: 150px;
  width: 150px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  top: 30px;
  clip-path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
  z-index: 1;
}

.best-deal-style-one-item .item-discount h2 {
  margin: 0;
  color: #e7272d;
  font-size: 50px;
  line-height: 1.1;
}

.best-deal-style-one-item .item-discount h2 strong {
  display: block;
  text-transform: uppercase;
  font-size: 26px;
  color: #04000b;
}
.btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
  border: none;
  transition: all 0.3s ease-out;
}
.btn-light {
  border-radius: 25px;
  color: black;
}
.btn-light:hover {
  color: white;
  background-color: #e7272d;
}

.btn-theme {
  color: white;
  border-radius: 25px;
  background-color: #e7272d;
}
.btn-theme:hover {
  color: black;
  background-color: white;
}

/* ============================================================== 
    Menu
=================================================================== */
.menu {
  padding: 100px 0;
  background-color: #ffffff;
}
.meal-items-three {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px dashed #dddddd;
  overflow: hidden;
  border-radius: 30px;
}

.bg-dark .meal-items-three {
  border-color: rgba(255, 255, 255, 0.2);
}

.menu .meal-items-three li {
  padding: 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #dddddd;
  margin-right: 0;
}
.menu .meal-items-three li .content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.menu .meal-items-three li .thumbnail {
  width: 85px;
  height: 85px;
}
.menu .meal-items-three li .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meal-items-three li:last-child {
  margin: 0;
  border: none;
}

.meal-items-three li .title {
  margin-top: 0;
}
.meal-items-three li .thumbnail {
  margin-right: 40px;
}

.meal-items-three li .content h4 a {
  font-size: 24px;
  font-weight: 600;
  color: #04000b;
  transition: all 0.4s ease;
}
.meal-items-three li .content h4 a:hover {
  font-size: 24px;
  font-weight: 600;
  color: #e7272d;
}

ul.meal-items-three li .content .top h4 {
  margin: 0;
}

ul.meal-items-three li .content .top .price {
  margin: 0;
}

ul.meal-items-three li .content .top .price span {
  font-size: 24px;
  font-weight: 900;
}

.food-menu-style-three-area .col-xl-6:first-child ul {
  border-right: none;
}

ul.meal-items-three li p {
  margin: 0;
}

ul.meal-items-three li .content h4 .badge {
  background: #e7272d;
  text-transform: uppercase;
  font-size: 15px;
  margin-left: 15px;
}

ul.meal-items-three li .content h4 {
  display: flex;
  align-items: center;
}

ul.meal-items-three li .content .right h3 {
  margin: 0;
  font-weight: 800;
}

.row.gutter-none {
  --bs-gutter-x: 0;
}

.color-style-two .fun-facts-area .item .fun-fact::after,
.color-style-two .fun-facts-area .item:nth-child(2n) .fun-fact::after {
  background: #e7272d;
}

/* ============================================================== 
    Bannere
=================================================================== */
.Banner {
  padding: 100px 0;
  background-image: url(./assets/images/shape/6.jpg);
  background-size: cover;
  color: white;
}
.Banner .compbo-offer {
  padding: 10px 20px;
}

.Banner h4 {
  font-size: 40px;
  margin-bottom: 30px;
}
.Banner .title {
  text-align: left;
  color: white;
  font-size: 70px;
  text-transform: uppercase;
}
.comob-thumb {
  position: relative;
  padding: 60px;
}

.comob-thumb img {
  width: 415px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.1);
}

.comob-thumb img:nth-child(2) {
  width: 250px;
  height: 250px;
  border: none;
  border-radius: inherit;
  position: absolute;
  right: 0;
  bottom: 0;
}

.comob-thumb .item-price {
  position: absolute;
  left: 0;
  top: 0;
  height: 230px;
  width: 230px;
  text-align: center;
  background: #e7272d;
  clip-path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================== 
    Blog
=================================================================== */
.Blog {
  padding: 100px 0;
}
.blog-item {
  position: relative;
}
.blog-item img {
  max-width: 100%;
}
.blog-content{
  position: relative;
  top: -70px;
  right: -40px;
  width: 470px;
  height: 304px;
}
.blog-item .content {
	padding: 30px 37px;
	position: relative;
	top: -100px;
	margin-bottom: -80px;
}

.blog-item .info {
  padding: 30px;
  background: white;
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}


.blog-item .info ul.blog-meta {
	margin: 0;
	padding: 0;
	margin-bottom: 25px;
}

.blog-item .info ul.blog-meta li {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding-right: 15px;
	text-transform: uppercase;
	font-size: 14px;
}

.blog-item .info .date{
	height: 80px;
	width: 80px;
	text-align: center;
	background-color: #E7272D;
	color: white;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-transform: uppercase;
	position: absolute;
	left: 23rem;
	top: -40px;
}


.blog-item .info .date strong {
	display: block;
	font-size: 30px;
	font-weight: 800;
}

.blog-item .info ul.blog-meta li::after {
	position: absolute;
	right: 4px;
	top: 50%;
	content: "";
	height: 5px;
	width: 5px;
	background: white;
	border-radius: 50%;
	margin-top: -1px;
}

.blog-item .info ul.blog-meta li::after {
	background: #E7272D
}

.blog-item .info ul.blog-meta li:last-child::after {
	display: none;
}

.blog-item .info ul.blog-meta li, 
.blog-item .info ul.blog-meta li a {
	font-weight: 600;
	color: #515151;
}


.blog-item .info .blog-meta li a:hover {
	color: #e7272d;
}

a.btn-read-more {
	text-transform: uppercase;
	display: inline-block;
	margin-top: 5px;
	color: #E7272D;
	font-size: 17px;
}

.blog-item a.btn-read-more {
	color: #e7272d;
}

a.btn-read-more i {
	transform: rotate(-45deg);
	font-size: 14px;
	margin-left: 4px;
}

.blog-item .info .title {
  text-align: left;
  color: black;
	padding: 0;
	font-size: 32px;
}
.blog-item .info .title a{
  text-align: left;
  color: black;
  line-height: 10px;
  transition: all 0.4s ease;
}
.blog-item .info .title a:hover{
  text-align: left;
  color: #E7272D;
}

.blog-item .info .date {
	right: auto;
}

.blog-item .info {
	padding-top: 60px;
}


/* ============================================================== 
    Footer
=================================================================== */

.footer-style-one {
  padding: 80px;
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

.footer-style-one::after {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  height: 30px;
  background: url(./assets/images/shape/8.png);
  top: -11px;
  background-size: 500px;
  background-repeat: repeat-x;
  background-position: top center;
}

footer .about {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 30px;
}

footer .widget-title {
  margin-bottom: 30px;
  font-weight: 700;
}

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

footer .contact ul li {
  display: flex;
  margin-top: 20px;
}

footer .contact ul li i {
  display: inline-block;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  background: #232323;
  border-radius: 5px;
  margin-right: 15px;
  color: white;
}

.color-style-two footer .contact ul li i {
  background: #e7272d;
}

footer .contact ul li a {
  font-weight: 400;
}

footer .contact ul li a:hover {
  color: white;
}

footer .contact ul li .content {
  position: relative;
  top: -7px;
}

footer .contact ul li:last-child {
  align-items: center;
}

footer .contact ul li:last-child .content {
  top: 0;
}

footer .link li {
  margin-top: 10px;
}

.color-style-two footer .link li a:hover {
  color: white;
}

footer .link li:first-child {
  margin-top: 0;
}

footer a {
  font-weight: 400;
}

footer .bg-dark,
footer .bg-dark li,
footer .bg-dark a,
footer .bg-dark p,
footer.bg-dark,
footer.bg-dark li,
footer.bg-dark a,
footer.bg-dark p {
  color: #cccccc;
}

footer .bg-dark a:hover {
  color: white;
}

ul.footer-social li {
  display: inline-block;
}

ul.footer-social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: #333333;
  text-align: center;
  margin-right: 8px;
  margin-top: 10px;
  color: white;
}

ul.footer-social li a:hover {
  background: #826a45;
}

.color-style-two ul.footer-social li a:hover {
  background: #e7272d;
  color: white;
}

.f-item.newsletter form {
  position: relative;
}

.f-item.newsletter form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 0;
  color: white;
}

.f-item.newsletter form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.f-item.newsletter form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.f-item.newsletter form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.f-item.newsletter form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.f-item.newsletter form button {
  padding: 0;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 50px;
}

.f-item.newsletter form button i {
  font-weight: 900;
  color: white;
  position: absolute;
  left: -15px;
}

.footer-item fieldset {
  display: flex;
  align-items: center;
}

.footer-item fieldset input {
  min-height: auto;
  position: relative;
  margin-right: 10px;
}

.footer-item fieldset label {
  margin: 0;
}

.footer-bottom img {
  height: 60px;
}

.footer-bottom {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 200%;
  width: 100%;
  background: #262525;
  z-index: -1;
}

.footer-bottom .row {
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: #cccccc;
}

.footer-bottom-two ul li {
  display: inline-block;
}

.footer-bottom-two .text-end ul li {
  margin-left: 20px;
}

.footer-bottom-two {
  background: #262525;
  padding: 19px 0;
}

.footer-bottom-two p {
  margin: 0;
}

.footer-bottom-two ul li a:hover {
  color: white;
}

.footer-top img {
  height: 60px;
}

.footer-top {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.footer-top::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.footer-top a {
  display: inline-block;
  background: var(--dark);
  padding: 0 30px;
}

.footer-bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-style-two .footer-bottom-shape {
  z-index: -1;
}

.footer-bottom-shape img {
  height: auto;
  max-width: 35%;
  opacity: 0.4;
}

.footer-style-two {
  position: relative;
  z-index: 1;
}

.footer-logo {
  position: relative;
  z-index: 1;
}
