body {
	font-family: "IBMPlexSansArabic-Regular", sans-serif;
	
	overflow-x: hidden;
	padding-top: 162px;
	
  }
  .inner-body{
	padding: 0;
  }
  .overflow {
	overflow: hidden;
  }
  
  :root {
	--main-color: rgba(33, 37, 41, 1);
	
	--main-hover: rgba(95, 170, 217, 1);
  }
  .show {
	display: block;
  }
  .map-div{
	z-index: 9;
	position: relative;
	margin-top: 100px;
	margin-inline-end: 92px;
  }
  @keyframes pulsate {
	0% {
	  transform: scale(0.1, 0.1);
	  opacity: 0;
	}
  
	50% {
	  opacity: 1;
	}
  
	100% {
	  transform: scale(1.2, 1.2);
	  opacity: 0;
	}
  }
  
  img {
	image-rendering: -webkit-optimize-contrast;
  }
  
  /*style scroll bar*/
  /* width */
  ::-webkit-scrollbar {
	width: 6px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: #fff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: var(--main-color);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: var(--main-hover);
  }
  
  /*preloader*/
  .preloader {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
  }
  
  .progress {
	position: fixed;
	z-index: 99999;
	top: 0;
	width: 100%;
	height: 5px;
	background-color: #f7f7f7;
	background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
	background-repeat: repeat-x;
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
	overflow: hidden;
  }
  
  .progress-bar {
	animation: progress 6s ease infinite;
	padding: 1px;
	color: rgba(255, 255, 255, 100);
	background-image: linear-gradient(
	  135deg,
	  var(--main-hover),
	  var(--main-color)
	);
	/* border-radius: 4px 4px 4px 4px; */
  }
  
  html[dir="ltr"] .progress-bar {
	background-image: linear-gradient(
	  135deg,
	  var(--main-color),
	  var(--main-hover)
	);
  }
  
  @keyframes progress {
	from {
	  width: 0;
	  color: rgba(255, 255, 255, 0);
	}
  
	to {
	  width: 100%;
	  color: rgba(255, 255, 255, 1);
	}
  }
  
  /*preloader*/
  
  /*                          header section                     */
  /*                          dropdown                            */
  .dropdown-div {
	position: relative;
	display: inline-block;
  }
  .dropbtn {
	background-color: transparent;
	border: 0;
	outline: none;
	padding: 0;
	font-size: 18px;
	color: var(--main-color);
	flex-direction: row-reverse;
	display: flex;
	align-items: center;
	gap:5px;
  }
  .dropbtn i{
	font-size: 13px;
  }
  .cart{
	padding: 0;
	background-color: transparent;
	font-size: 30px;
	color: var(--main-color);
	border: 0;
	outline: none;
	transition: 0.5s;
  }
  .cart:hover{
	color: var(--main-hover);
  }
  .cart:focus{
	color: var(--main-hover);
	outline: none;
	border: 0;
  }
  .dropbtn:focus {
	border: 0;
	outline: none;
	color: var(--main-hover);
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
	/* display: none; */
	visibility: hidden;
	opacity: 0;
	position: absolute;
	background-color: #fff;
	color: var(--sec-color);
	text-align: center;
	min-width: 120px;
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.11);
	border-radius: unset;
	z-index: 300;
	top: 32px;
	left: 50%;
	transform: translateX(-50%);
	padding: 7px 0;
	transition: all 0.3s ease-in-out;
  }
  
  /* Links inside the dropdown */
  .dropdown-link {
	color: var(--main-color);
	padding: 5px 15px;
	text-decoration: none;
	display: block;
  
	font-size: 14px;
	transition: all 0.3s ease-in-out;
  }
  .menu-item-has-children {
	position: relative;
  }
  .menu-item-has-children:after{
	content: "";
	font: var(--fa-font-light);
	font-size: 12px;
  }
  .dropdown-link:hover {
	color: var(--main-hover);
  }
  
  /* Show the dropdown menu on hover */
  .dropdown-div:hover .dropdown-content {
	/* display: block; */
	visibility: visible;
	opacity: 1;
  }
  
  /*                          dropdown                            */
  /*top header*/
  header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
  }
  .top-header{
	border-bottom: 0.5px solid rgba(33, 37, 41, 0.2);
  }
  .nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0 ;
	transition: all 0.3s ease-in-out;
	
	
  }
  .logo-section{
	display: flex;
	gap:30px;
	align-items: center;
  }
  
  .big-menu li a {
	color: var(--main-color);
	font-size: 16px;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
  }
  .big-menu li a:hover{
	color: var(--main-hover);
  }
  .active a{
	font-family: "IBMPlexSansArabic-Bold";
  }
  .user-img{
	border-radius: 50%;
  }
  .reserve-link{
	color: #fff;
	background-color: var(--main-hover);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 50px;
	transition: 0.5s;
	font-size: 14px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .reserve-link:hover{
color: #fff;
background-color: var(--main-color);
  }
  .top-header-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 30px;
  }
  
  .search-btn {
	background-color: transparent;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
  
	border: 0;
	outline: none;
  
	transition: 0.5s;
  }
  .search-btn:after {
	content: "";
	font: var(--fa-font-light);
	font-size: 24px;
	color: var(--main-color);
  
	transition: 0.5s;
  }
  .search-btn:hover:after {
	color: var(--main-hover);
  }
  .search-btn:after:focus {
	border: 0;
	outline: none;
	color: var(--main-hover);
  }
  .close-search:after {
	content: "X";
	font: var(--fa-font-light);
	font-size: 24px;
  
	transition: 0.5s;
  }
  .small-note{
	color: var(--main-hover);
	display: block;
	text-align: center;
	margin: 0 0 25px;
	font-size: 20px;
	font-family: "IBMPlexSansArabic-Medium";
  }
  .values-grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 37px 8px;
  }
  .value-block{
	background-color: rgba(249, 249, 249, 1);
	border-radius: 30px;
	padding: 39px 27px;
	display: flex;
	gap:40px;
  }
  .value-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 160px;
	height: 129px;
	border-radius: 23px;
	background-color: rgba(95, 170, 217, 0.9);
	font-size: 59px;
	flex-shrink: 0;
  }
  .value-title{
	color: var(--main-color);
	text-align: start;
	margin: 0 0 16px;
	font-size: 30px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .value-p{
	text-align: start;
	color: rgba(121, 121, 121, 1);
	font-size: 22px;
	line-height: 157%;
	margin: 0;
  }
  .search-content {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	background: #fff;
	padding: 0;
	display: flex;
	justify-content: center;
	top: 85px;
	transition: 0.5s;
	height: 0;
	visibility: hidden;
	opacity: 0;
  }
  .fixed-header .search-content {
	top: 65px;
  }
  .height-when-close {
	height: 0;
  }
  .height-when-open {
	height: 65px;
	padding: 5px 0 0;
	visibility: visible;
	opacity: 1;
  }
  
 
  
  .big-menu {
	display: flex;
	align-items: center;
	gap: 35px;
	margin: 0;
	padding: 0;
  }
  
 
  @media (min-width: 992px) {
	.menu-item-has-children:hover .sub-menu {
	  opacity: 1;
	  visibility: visible;
	  z-index: 99;
	}
  
	.menu-item-has-children:hover a {
	  color: var(--main-color);
	}
  }
  
  .sub-menu {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% + 8px);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	width: max-content;
	min-width: 185px;
	list-style: none;
	max-width: 185px;
	background-color: var(--sec-color);
	color: #fff;
	display: flex;
  
	text-align: start;
	border: none;
	padding: 8px 15px;
	transition: all 0.3s ease-in-out;
  
	flex-direction: column;
  }
  
  .sub-menu li {
	padding: 2px 0;
  }
  
  .sub-menu li a {
	color: #fff !important;
  
	text-decoration: none;
	line-height: 2.143;
	display: block;
  
	font-size: 14px;
	text-align: start;
  
	width: 100%;
  
	transition: all 0.3s ease-in-out;
  }
  .sub-menu li a:hover {
	color: var(--main-hover) !important ;
  }
  .sub-menu li:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.102);
  }
  
  .menu-item-has-children a.active::after {
	transform: rotate(180deg);
  }
  .services-title{
	text-align: center;
	margin: 0 auto 20px;
	color: var(--main-color);
	font-size: 56px;
	max-width: 890px;
	
	font-family: "IBMPlexSansArabic-Medium";
  }
  .service-note{
	color: rgba(134, 134, 134, 1);
	font-size: 20px;
	text-align: center;
	margin: 0 0 40px;
  }
  @media (max-width: 991px) {
	.search-content {
	  top: 69px;
	}
	.menu-item-has-children a::after {
	  font-size: 10px;
	
	}
  
	.height-when-open {
	  height: 57px;
	}
  
	.hidden-in-mobile-icon {
	  display: none;
	}
  
	.sub-menu {
	  align-items: start;
	  padding: 0;
	  width: unset;
	  margin-inline-start: 13px;
	}
  
	.sub-menu::before {
	  display: none;
	}
  
	.sub-menu {
	  min-width: unset;
	  z-index: 99;
	  padding: 0;
	  height: unset;
	  justify-content: flex-start;
	  max-width: 100%;
	}
  
	.sub-menu li a {
	  line-height: 20px;
  
	  color: var(--main-color) !important;
	}
  
	.sub-menu {
	  position: static;
	  display: none;
	  opacity: 1;
	  visibility: visible;
	  transition: none;
	  box-shadow: none;
	  border-radius: 0;
	  left: 0;
	  right: 0;
	  transform: translateX(0);
	  background-color: transparent;
	}
  
	.sub-menu li a:hover,
	.sub-menu li:hover > a {
	  color: var(--main-hover);
	}
  }
  
  .fixed-nav {
	margin-top: -150px;
	transition: all 0.3s ease-in-out;
  }
  
  
  
  .fixed-header {
	position: fixed;
	top: 0;
  }
  
  .fixed-header .fixed-nav {
	margin: 0;
  }
  .img-logo {
	width: 117px;
  }
  .reserve-content{
	display: flex;
	gap:30px;
	position: relative;
	box-shadow: 0px 141px 200px -80px rgba(25, 58, 75, 0.3);
margin-bottom: 106px;
border-radius: 50px;
  }
  .text-start{
	text-align: start;
  }
  .mb-50{
	margin-bottom: 50px;
	display: block;
  }
  .reserve-content .reserve-link{
	width: 100%;
	border: 0;
	outline: none;
  }
  .reservation{
	display: flex;
	justify-content: space-between;
	margin-top: 54px;
  }
  .reserve-content:after{
	content: "";
	width: 419px;
	background-color: rgba(223, 232, 255, 1);
	position: absolute;
	top:0;
	bottom: 0;
	inset-inline-end: 0;
	border-radius: 50px 0 0 50px;
  }
  .reserve-form{
	width: 589px;
	
	
	padding: 30px;
  }
  .reserve-form form{
	width: 100%;
  }
  .form-label{
	font-size: 16px;
	color: var(--main-color);
	text-align: start;
	margin: 0 0 7px;
  }
  .required:after{
	content: "*";
	color: red;
  }
  .form-input{
	width: 100%;
	height: 56px;
	border-radius: 10px;
	border: 1px solid var(--main-color) ;
	
	display: flex;
	align-items: center;
	padding: 0 15px;
	color: var(--main-color);
	margin-bottom: 16px;
	font-size: 16px;
	outline: none;
	transition: 0.5s;

  }
  .left-reserve-section{
	width: 503px;
  }
  .reserve-labels{
	display: flex;
	gap:15px;
	

  }
  .reserve-iconn{
	color: var(--main-hover);
	
	font-size: 28px;
	
  }
  .test{
	padding: 135px 0 0;
  }
  .mt-0{
	margin-top: 0 !important;
  }
  .text-center{
	text-align: center;
  }
  .test-slider{
	position: relative;
	margin: 100px 0 150px;
  }
  .test-slider .swiper-pagination{
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 5px;
}
  .about-note{
	color: var(--main-hover);
	display: block;
	text-align: start;
	font-size: 24px;
	margin: 0 0 20px;
	font-family: "IBMPlexSansArabic-Medium";
  }
  .test-slider .swiper-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  }
  
  .test-slider .swiper-btn {
	position: absolute;
	z-index: 1;
	top: 42%;
  
	transform: translateY(-50%);
  
	font-size: 25px;
	color: #b6b6b6;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .test-block{
	position: relative;

	border-radius: 10px;
	background-color: #fff;
	padding: 30px;
  }
  .test-block i{
	position: absolute;
	top:48px;
	inset-inline-end: 48px;
	color: var(--main-hover);
	font-size: 44px;
  }
  .user-bar{
	display: flex;
	align-items: center;
	gap:20px;
	margin: 0 0 30px;
  }
  .user-image{
	width: 70px;
	height: 70px;
	border-radius: 50%;
  }
  .user-info{
	display: flex;
	flex-direction: column;
	gap:10px;
  }
  .user-name{
	color: var(--main-color);
	text-align: start;
	margin: 0;
	font-size: 24px;
  }
  .rate{
	display: flex;
	align-items: center;
	gap:2px;
	margin: 0;
	padding: 0;
	list-style: none;
  }
  .rate li i{
	color: rgba(236, 148, 44, 1);
	font-size: 20px;
  }
  .test-p{
	color: var(--main-color);
	text-align: center;
	margin: 0;
	font-size: 16px;
	line-height: 155%;
  }
  .test-slider .swiper-btn:hover {
	color: var(--main-hover);
  }
  
  .test-slider .swiper-btn.swiper-btn-next {
	left: -37px;
  }
  
  .test-slider .swiper-btn.swiper-btn-prev {
	right: -37px;
  }
  .reserve-text{
	display: flex;
	flex-direction: column;
	gap:10px;
  }
  .reserve-title{
	color: var(--main-color);
	text-align: start;
	margin: 0;
	font-size: 13px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .reserve-p{
	color: rgba(33, 37, 41, 0.6);
	text-align: start;
	margin: 0;
	font-size: 13px;
  }
  .form-input:focus{
	border: 1px solid var(--main-hover);
	outline: none;
  }
  .form-input::placeholder{
	color: var(--main-color);
	font-size: 16px;
  }
  .forget-password-div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 31.5px;
  }
  .login-form-2 input[type="radio"], .login-form-2 input[type="checkbox"]{
	width: 24px;
	height: 24px;
  }
  .checkbox-div{
	display: flex;
	align-items: center;
	margin: 0;
	gap:5px;
  }
  .login-form-2 .reserve-link{
	width: 100%;
	outline: none;
	border: 0;
	font-size: 16px;
  }
  .h-185{
	height: 185px;
  }
  .search-section {
	position: relative;
  }
  
  .search-input {
	position: relative;
	background-color: #f7f7f7;
	max-width: 100%;
	width: 100%;
	height: 0;
	padding: 0 16px;
	padding-inline-end: 45px;
	border-radius: 20px;
	font-size: 14px;
	color: var(--main-color);
  
	border: 1px solid transparent;
	outline: none;
	transition: all 0.3s ease-in-out;
  }
  .height-when-open .search-input {
	height: 40px;
  }
  
  .search-input:focus {
	outline: none;
	border: 1px solid var(--main-hover);
  }
  .top-header-list li {
	font-size: 24px;
	transition: 0.5s;
	color: var(--main-color);
  }
  .top-header-list li:hover {
	color: var(--main-hover);
  }
  .top-header-list-icon {
	font-size: 24px;
	transition: 0.5s;
	color: var(--main-color);
  }
  .top-header-list-icon:hover {
	color: var(--main-hover);
  }
  
  .search-input::placeholder {
	color: var(--main-color);
	font-size: 14px;
  }
  
  .search-button {
	position: absolute;
	top: 50%;
	inset-inline-end: 18px;
	outline: none;
	transform: rotate(0deg) translateY(-50%);
  
	color: var(--main-color);
	background-color: transparent;
	border: none;
	font-size: 18px;
	padding: 0;
	transition: 0.5s;
  }
  
  .search-button:hover {
	color: var(--main-color);
	opacity: 0.7;
  }
  
  .search-button:focus {
	outline: none;
  }
  
  
  /*                          header section                     */
  
  /*    about-section     */
  .about-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 100px;
  }
  .about-img{
	width: 500px;
  }
  .about-text{
	width: 554px;
  }
  .about-title{
	color: var(--main-color);
	text-align: start;
	font-size: 56px;
	font-family: "IBMPlexSansArabic-SemiBold";
	position: relative;
	margin: 0 0 15px;
  }
 .about-b{
	color: var(--main-hover);
 }
  .about-p{
	color: rgba(109, 115, 122, 1);
	font-size: 24px;
	text-align: start;
	margin: 0 0 40px ;
  }
  .contact-info{
	display: flex;
	align-items: center;
	gap:15px;
	justify-content: flex-end;
  }
  .contact-text{
	display: flex;
	flex-direction: column;
	gap:5px;
  }
  .contact-p{
	color: var(--sec-color);
	font-size: 14px;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0;
	text-align: start;
  }
  .phone{
	color: var(--main-color);
	display: block;
	text-align: end;
	font-size: 14px;
	color: var(--main-color);
	font-family: "IBMPlexSansArabic-Bold";
  }
  .call{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border: 1px solid;
border-radius: 10px;
border: 1px solid var(--main-color);
font-size: 24px;
color: var(--main-color);
padding: 0;
outline: none;
	background-color: #E6F6FE;
	transition: 0.5s;
  }
  .call:hover{
	background-color: var(--main-color);
	color: #fff;
  }
  .call:focus{
	outline: none;
	background-color: var(--main-color);
	color: #fff;
  }
  
  /*    about-section     */
  
  /*                      banner-section                      */
  
  .banner-block {
	
	overflow: hidden;
	transition: 0.5s;
	display: flex;
	
  }
  .banner-block:hover .banner-img {
	transform: scale(1.05);
  }
 
  
  .banner-img {
	transition: 0.5s;
	
	object-fit: cover;
  }
  
  /*                     banner-section                      */
  /*                      best-seller-section                      */
  .services-section{
	padding: 0 0 100px;
  }
  .service-content{
	display: flex;
	justify-content: space-between;
	
	gap:30px;
	
  }
  .service-block{
	background-color: rgba(250, 250, 255, 1);
	border-radius: 16px;
	
	display: flex;
	flex-direction: column;
	padding: 28px;
	gap:15px;
	
	width: 387px;
  }
 
  .service-icon{
	background-color: var(--sec-color);
	color: #fff;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 45px;
	border-radius: 50%;
  }
  .service-title{
	color: var(--main-color);
	margin: 0;
	font-size: 24px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .service-p{
	font-size: 18px;
	color: var(--main-color);
	text-align: center;
	max-width: 318px;
	line-height: 155%;
	margin: 0;
  }
  .pro-icons {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 6px;
	inset-inline-end: 5px;
	gap: 5px;
	list-style: none;
	margin: 0;
	padding: 0;
  }
  .pro-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	transition: 0.5s;
	background-color: #fff;
	color: var(--main-color);
	font-size: 16px;
  }
  .pro-icon:hover {
	background-color: var(--main-hover);
	color: var(--main-color);
  }
  
  .product-figure:hover .product-img {
	transform: scale(1.05);
  }
  
  a:hover {
	text-decoration: none;
  }
  a:focus {
	text-decoration: none;
  }
  .product-name-div{
	height: 47px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
	width: 100%; 
  }
  .product-name {
	font-size: 15px;
	color: var(--main-color);
	text-align: start;
	text-transform: capitalize;
	transition: 0.5s;
	padding: 7px 0 0;
	width: max-content;
	margin: 0;
	
	
  }
  
  .product-name:hover {
	color: var(--main-hover);
  
	text-decoration: none;
  }
  
  .product-block:hover .product-name {
	color: var(--main-hover);
  }
  
  .product-text {
	display: flex;
  
	flex-direction: column;
  
	gap: 5px;
  }
  .order-block{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 24px;
	padding: 16.5px 0;
  }
  .order-block .cart-block{
	padding: 0;
  }
  .order-block .cart-pro-img{
	width: 80px;
  }
  .order-block .cart-pro-details{
	width: 500px;
  }
  .order-block .pro-name-bar{
	margin-bottom: 8px;
  }
  .cart-note{
	color: var(--main-color);
	font-size: 16px;
	display: block;
	text-align: start;
	margin: 0 0 14px;
  }
  .order-block .product-name{
	font-size: 16px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .order-state-bar{
	display: flex;
	gap: 10px;
	align-items: center;
  }
  .order-state{
	width: 81px;
	height: 30px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
  }
  .order-done{
	color: rgba(60, 209, 57, 1);
	background-color: rgba(60, 209, 57, 0.1);
  }
  .m-0{
	margin: 0;
  }
  .order-btns{
	display: flex;
	flex-direction: column;
	gap: 10px;
  }
  .order-btn{
	display: flex;
	align-items: center;
	
	justify-content: center;
	border: 1px solid var(--main-hover);
	border-radius: 4px;
	transition: 0.5s;
	font-size: 14px ;
	width: 127px;
	height: 40px;
	
  }
  .show-order-btn{
	background-color: #fff;
	color: var(--main-hover);
  }
  .cancel-order-btn{
	border: 1px solid var(--main-hover);
	background-color: var(--main-hover);
	color: #fff;
  }
  .cancel-order-btn:hover{
	background-color: #fff;
	color: var(--main-hover);
  }
  .order-under-progress{
	color: rgba(227, 178, 49, 1);
	background-color: rgba(227, 178, 49, 0.1);
  }
  .show-order-btn:hover{
	border: 1px solid var(--main-hover);
	background-color: var(--main-hover);
	color: #fff;
  }
  .order-list-content{
	padding: 0;
	padding-inline-start: 72px;
	width: 100%;
  }
  .add-cart-div {
	display: flex;
	gap: 5px;
	align-items: center;
	padding: 0 9px;
	margin-bottom: 12px;
  }
  .cart-icon {
	color: #fff;
	font-size: 16px;
  }
  .fc-btn {
	padding: 0;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	border: 0;
	outline: none;
	width: 32px;
	height: 32px;
  
	font-size: 16px;
	flex-shrink: 0;
	transition: 0.5s;
  }
  .fc-btn:hover {
	background-color: var(--main-hover);
	color: #fff;
  }
  .fc-btn:focus {
	background-color: var(--main-hover);
	color: #fff;
	outline: none;
	border: 0;
  }
  .price {
	display: flex;
	align-items: flex-start;
	gap: 0px;
	flex-direction: column;
  }
  .new-price {
	color: var(--main-color);
	
	font-size: 18px;
	font-family: "IBMPlexSansArabic-Bold";
	text-transform: uppercase;
  }
  .old-price {
	color: #888;
	
	
	font-size: 16px;
	text-decoration: line-through;
	text-transform: uppercase;
  }
  
  /*                      best-seller-section                      */
  
  .new-arrivals-slider {
	position: relative;
  }
  
  .new-arrivals-slider .swiper-btn {
	position: absolute;
  
	display: none;
  
	font-size: 24px;
	color: rgb(189, 189, 189);
	top: 37%;
  
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .new-arrivals-slider .swiper-btn:hover {
	opacity: 1;
	color: rgb(28, 28, 27) !important;
  }
  
  @media (min-width: 1320px) {
	.new-arrivals-slider .swiper-btn {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	}
  }
  
  .new-arrivals-slider .swiper-btn i {
	z-index: 2;
  }
  
  .new-arrivals-slider .swiper-btn.swiper-btn-next {
	left: -49px;
  }
  
  .new-arrivals-slider .swiper-btn.swiper-btn-prev {
	right: -49px;
  }
  
  .new-arrivals-slider .swiper-pagination {
	width: 100%;
  
	display: none;
  
	justify-content: center;
	bottom: -40px;
  }
  
  @media (max-width: 1320px) {
	.new-arrivals-slider .swiper-pagination {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	}
  }
  
  .new-arrivals-slider .swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background-color: rgb(0, 0, 0);
	opacity: 0.4;
	margin: 0 3px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	outline: none !important;
  }
  
  .new-arrivals-slider .swiper-pagination .swiper-pagination-bullet:hover {
	background-color: var(--main-hover);
  }
  
  .new-arrivals-slider
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--main-hover);
	opacity: 1;
  }
  
  .new-arrivals-slider .swiper-btn:hover {
	color: rgb(38, 55, 45);
  }
  .reserve-2-section{
	background-color: var(--main-color);
	padding: 40px 0;
	margin-bottom: 100px;
  }
  .reserve-2-content{
	display: flex;
	align-items: center;
	gap:60px;
  }
  .reserve-2-form{
	background-color: #fff;
	width: 414px;
	border-radius: 10px;
	padding: 30px;
  }
  .reserve-2-title{
	color: var(--main-color);
	text-align: center;
	margin: 0 0 30px;
	font-size: 24px;
  }
  .reserve-form-2{
	width: 100%;
  }
  .centerr{
	margin-left: auto;
	margin-right: auto;
  }
  .reserve-2-titlee{
	color: #fff;
	text-align: center;
	max-width: 571px;
	margin: 0 0 30px;
	font-size: 42px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .reserve-2-p{
	color: #fff;
	text-align: center;
	font-size: 14px;
	color: #fff;
	max-width: 508px;
	margin: 0;
  }
  /*                                   footer                            */
  .footer-section {
	padding: 115px 0 30px;
	position: relative;
	background-color: var(--main-hover);
  }
  
  .footer-links-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
  }
  
  .social-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	
	align-items: center;
	gap: 8px;
  }
 .copy-flex{
	border-top: 1px solid rgba(255,255,255,0.4);
	padding: 30px 0 0;
	margin-top: 30px;
	display: flex;
	justify-content: center;
 }

  .mb-24 {
	margin-bottom: 24px !important;
  }

  
  
  .nav-foot-header {
	color: #fff;
	text-transform: uppercase;
	text-align: start;
	font-size: 20px;
	font-family: "IBMPlexSansArabic-SemiBold";
	margin: 0 0 28px;
	white-space: nowrap;
  }
  .nav-foot-header-2 {
	color: var(--main-color);
	text-transform: uppercase;
	text-align: center;
	font-size: 28px;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0 0 28px;
	white-space: nowrap;
  }
  html[dir="rtl"] .nav-foot-header,
  html[dir="rtl"] .nav-foot-header-2 {
	font-family: "IBMPlexSansArabic-Bold";
  }
  .footer-note {
	text-align: center;
	font-size: 16px;
	color: var(--main-color);
	line-height: 155%;
	margin: 0;

  }
  @media (min-width: 991px) {

	
	.footer-note{
		margin-bottom: 20px;
	}

  }
  .footer-accordion.nav-foot-header {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }


  .nav-foot {
	list-style: none;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	gap: 12px;
  }
  .nav-foot-link {
	color: #fff;
	font-size: 16px;
	transition: 0.5s;
	text-transform: capitalize;
	
  }
  .social-list{
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap:24px;
  }
  .social-list li a{
	color: #fff;
	transition: 0.5s;
	font-size: 24px;
  }
  .social-list li a:hover{
	color: var(--main-color);
  }
  .nav-foot-link:hover {
	color:var(--main-color);
  }

  
  .newsletter-bar {
	display: flex;
	justify-content: space-between;
	padding: 36px;
	padding-inline-start: 50px;
	background-color: #4c34bc;
	margin-top: 52px;
	margin-bottom: 40px;
  }
  .newsletter {
	display: flex;
	align-items: center;
	gap: 15px;
  }
  .env-icon {
	color: #fff;
	font-size: 44px;
  }
  .newsletter-section {
	display: flex;
	flex-direction: column;
	gap: 5px;
  }
  .newsletter-title {
	color: #fff;
	font-size: 22px;
	text-align: start;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0;
  }
  .newsletter-note {
	color: #fff;
	text-align: start;
	font-size: 16px;
	display: block;
  }
  .newsletter-input-div {
	width: 65%;
	height: 55px;
	position: relative;
  }
  .newsletter-input {
	width: 100%;
	display: flex;
	height: 55px;
	border: 1px solid transparent;
  
	transition: 0.5s;
	align-items: center;
	padding: 0 32px;
	padding-inline-end: 60px;
	outline: none;
	color: var(--main-color);
	font-size: 15px;
  }
  .newsletter-input::placeholder {
	font-size: 15px;
	color: rgb(127, 127, 127);
  }
  .newsletter-input:focus {
	border: 1px solid var(--main-hover);
	outline: none;
  }
  .newsletter-btn {
	padding: 0;
	outline: none;
	border: 0;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--main-color);
	font-size: 30px;
  
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	inset-inline-end: 23px;
	transition: 0.5s;
  }
  .newsletter-btn:hover {
	color: var(--main-hover);
  }
  .newsletter-btn:focus {
	color: var(--main-hover);
	border: 0;
	outline: none;
  }
  .text-center {
	text-align: center !important;
  }
  
  .copy-flex-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-between;
  }
  
  .copy-right {
	text-align: start;
	font-size: 16px;
  
	color: #fff;
	
  }
  .cart-success{
	box-shadow: 0px 32px 48px -48px rgba(18, 18, 18, 0.1);
display: flex;
flex-direction: column;
align-items: center;
gap:15px;
height: 534px;
}
.account-list-section{
	padding: 70px 0 120px;
}
.account-list-section-content{
	display: flex;
	gap: 7px;

}
.my-account-list{
	background-color: rgba(243, 245, 247, 1);
	border-radius: 8px;
	padding: 40px 16px;
	height: max-content;
}
.user-img-div{
	position: relative;
	
	width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    text-align: center;
}
.logoContainer{
	width:80px;
	height:80px;
	margin: 0 auto ;
	border-radius: 50%;
	text-align: center;
	
}
.user-img{
	max-width:100%;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
    object-fit: cover;
}
.fileContainer{
	background:transparent;
	width: 30px;
	height: 30px;
	overflow:hidden;
	position: relative;
	position:absolute;
	bottom: 0;
	cursor: pointer !important;
}
.fileContainer img{
	
	cursor: pointer;
}
.fileContainer input[type="file"]{
	opacity:0;
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 0;
	inset-inline-start: 0;
	cursor: pointer;
}
.username{
	color: var(--main-color);
	text-align: center;
	font-size: 20px;
	font-family: "IBMPlexSansArabic-Medium";
	margin: 0 0 40px;
}
.account-list{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 262px;
}
.account-list li{
	padding: 8px 0;
}
.account-list li a{
	color: rgba(108, 114, 117, 1);
	font-size: 16px;
}
.sign-out-btn{
	color: rgba(108, 114, 117, 1);
	font-size: 16px;
	background-color: transparent;
	padding: 0;
	border: 0;
	outline: none;
}
.account-list-active{
	border-bottom: 1px solid rgba(95, 170, 217, 1);
}
.account-list-active a{
	color: var(--main-color);
	font-family: "IBMPlexSansArabic-Bold";
   
}
.account-list-content{
	padding: 0 72px;
	width: 100%;
}
.account-list-title{
	font-size: 20px;
	color: var(--main-color);
	font-family: "IBMPlexSansArabic-Medium";
	margin: 0 0 24px;
	text-align: start;
   
}
  /*                                   footer                            */
  
  /*   features section    */
  .location-section {
	padding: 66px 0;
	background-color: rgba(245, 248, 255, 1);
	margin-top: 100px;
  }
 .location-content{
	display: flex;
	gap:68px;
 }
  .hello2-title{
	color: var(--main-color);
	text-align: start;
	font-size: 42px;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0 0 30px;
	max-width: 629px;
	line-height: 155%;
	
  }

  .hello2-p{
	text-align: center;
	margin: 0 auto 25px;
	font-size: 18px;
	color: rgba(60, 73, 89, 1);
	line-height: 155%;
	max-width: 463px;
  }
  .mb-30{
	margin-bottom: 30px !important;
  }
  .verification-code-list{
	list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex
;
    direction: ltr;
	display: flex;
	gap:20px;
    justify-content: center;
  }
  .service-block-list{
	list-style: disc;
	margin: 0;
	padding: 0;
	padding-inline-start: 15px;
  }
  .service-block-list li{
	color: var(--main-color);
	font-size: 16px;
  }
  .verification-no{
	border: 1px solid var(--main-color);
    border-radius: 10px;
    outline: none;
    width: 60px;
    height: 60px;
    display: flex
;
    justify-content: center;
    align-items: center;
    color: var(--main-hover);
    font-size: 24px;
	font-family: "IBMPlexSansArabic-Bold";
    transition: 0.5s;
    padding-inline-start: 20px;
  }
  .verification-no:focus {
    border: 1px solid var(--main-hover);
    outline: none;
}
  .hello-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .hello-img{
	width: 443px;
  }
  .hello-text{
	width: 531px;
  }
  .hello-title{
	color: var(--main-color);
	text-align: start;
	font-size: 42px;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0 0 40px;
	line-height: 125%;
  }
  .hello-p{
	font-size: 18px;
	color: var(--main-color);
	text-align: start;
	margin: 0;
	line-height: 155%;
  }
  .footer-accordion.nav-foot-header{
	margin-bottom: 28px;
  }
  .feature-block {
	display: flex;
	align-items: center;
	gap: 15px;
  }
  .feature-icon {
	color: var(--main-hover);
	font-size: 36px;
  }
  .feature-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
  }
  .feature-title {
	color: var(--main-color);
	text-align: start;
	text-transform: capitalize;
	font-size: 19px;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0;
  }
  .feature-note {
	font-size: 17px;
	text-align: start;
	margin: 0;
	color: var(--main-color);
  }
  .service-section-2{
	padding: 63px 0 97px;
	background-color: rgba(245, 248, 255, 1);
  }
  .mb-60{
	margin-bottom: 60px;
  }
  .mb-20{
	margin-bottom: 20px;
  }
  .services-grid{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap:15px;
  }
  .service-block-2{
	background-color: #fff;
	padding: 16px;
	width: auto;
  }
  .serv-title2{
	color: var(--main-color);
	text-align: start;
	font-size: 25px;
	margin-bottom: 15px;
	display: block;
  }
  .writer-name{
	text-align: start;
	display: block;
	color: rgba(0, 0, 0, 0.6);
	font-size: 16px;
	margin: 0 0 17px;
  }
  .rating-div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 17px;
  }
  .rating-list{
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap:3px;
  }
  .rating-list li i{
	font-size: 12px;
  }
  .gray{
	color: rgba(222, 222, 222, 1);
  }
  .gold{
	color: rgba(255, 151, 29, 1);
  }
  .vote{
	color: rgba(0, 0, 0, 0.3);
	font-size: 16px;
	display: block;
	text-align: start;
  }
  .serv-p{
	text-align: start;
	margin: 0 0 37px;
	text-align: start;
	color: rgba(0, 0, 0, 0.3);
	font-size: 16px;
	line-height: 25px;
  }
  .service-block .reserve-link{
	outline: none;
	width: 100%;
	font-size: 16px;
	border: 0;
  }
  .serv-block-content{
	display: flex;
	align-items: center;
	gap:23px;
	
  }
  .dr-information-section{
	padding: 0 0 100px;
  }
  .dr-name{
	color: var(--main-color);
	text-align: start;
	margin: 0 0 30px;
	font-size: 42px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .justify-start{
	justify-content: flex-start;
	gap:120px;
	padding: 40px 0 0;
  }
  .dr-information-list{
	list-style: disc;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap:5px;
  }
  .dr-information-list li{
	color: var(--main-color);
	text-align: start;
	font-size: 22px;
	font-family: "IBMPlexSansArabic-Bold";
  }
  .blog-title-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
  }
  .blog-title-text{
	width: 455px;
  }
  .blog-title{
	text-align: start;
	color: var(--main-color);
	font-size: 42px;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0 0 15px;
  }
  .blog-note{
	font-size: 18px;
	line-height: 155%;
	color: var(--main-color);
	text-align: start;
	margin: 0;
  }
  .blog-grid{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap:15px;
  }
 .blog-note-div{
	display: flex;
	align-items: flex-end;
	
 }
 .blog-note-text{
	background-color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	color: 16px;
	font-family: "IBMPlexSansArabic-Bold";
	width: 97px;
	height: 35px;
	border-radius: 5px;
 }
 .mb-20{
	margin-bottom: 20px;
 }
 .login-content{
	display: flex;
	gap:78px;
	align-items: center;
 }
 .login-note{
	text-align: start;
	display: block;
	font-size: 16px;
	margin: 0 0 30px;
	color: rgba(164, 161, 170, 1);
 }
 .login-form-content{
	width: 50%;
	padding-inline-start: 72px;
 }
 .login-form-2{
	width: 100%
 }
 .fs-30{
	font-size: 30px;
	text-align: start;
 }
 .login-form{
	width: 50%;
	padding-inline-start: 72px;
 }
 .google-btn{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	padding: 0;
	outline: none;
	border: 1px solid var(--main-color);
	border-radius: 10px;
	gap:10px;
	font-size: 14px;
	margin-bottom: 30px;
	background-color: #fff;
	height: 60px;
 }
 .google-btn:focus{
	border: 0;
	outline: none;
 }
 .or{
	display: flex;
	margin-bottom: 30px;
	color: var(--main-color);
	font-size: 18px;
	justify-content: center;
	white-space: nowrap;
 }
 .forget-link{
	color: var(--main-color);
	display: flex;
	text-align: start;
	margin: 0 ;
	font-size: 14px;
 }
 .text-center{
	margin: 0 auto 30px;
 }
 .login-img{
	width: 50%;
 }
 .not-found{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 276px;
 }
 .counter-section{
	display: flex;
	background-color: rgba(249, 249, 249, 1);
	padding: 93px 0;
	justify-content: space-around;
	border-radius: 50px;
	margin-bottom: 81px;
 }
 .counter-number{
	font-size: 75px;
	color: var(--main-color);
	font-family: "IBMPlexSansArabic-Bold";
	position: relative;
	margin: 0 0 8px;
	
 }
 .counter-1:before{
	content: "+";
	color: var(--main-hover);
	font-size: 75px;
	font-family: "IBMPlexSansArabic-Bold";
 }
 .counter-2:after{
	content: "k";
	color: var(--main-hover);
	font-size: 75px;
	font-family: "IBMPlexSansArabic-Bold";
 }
 .counter-3:after{
	content: "h";
	color: var(--main-hover);
	font-size: 75px;
	font-family: "IBMPlexSansArabic-Bold";
 }
 .counter-4:after{
	content: "M";
	color: var(--main-hover);
	font-size: 75px;
	font-family: "IBMPlexSansArabic-Bold";
 }
 .counter-name{
	color: var(--main-color);
	font-size: 25px;
 }
 .counter-div{
	width: 103px;
    display: flex
;
    background: transparent;
    border: 1px solid rgba(108, 114, 117, 1);
	align-items: center;
 }
 .plus{
	font-size: 15px;
    color: #4B5256;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #E3E3E3;
    width: 23px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
    margin-inline-start: 4px;
 }
 .cart-input {
    background-color: transparent;
    border: 0;
    outline: none;
    color: #4B5256;
    font-size: 14px;
    width: 45px;
    text-align: center;
}
.minus {
    font-size: 15px;
    color: #4B5256;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #E3E3E3;
    width: 23px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    margin-inline-end: 8px;
    transition: 0.5s;
}
.plus:hover{
	background-color: var(--main-hover);
	color: #fff;
}
.minus:hover{
	background-color: var(--main-hover);
	color: #fff;
}
.pay-block{
	border: 1px solid rgba(108, 114, 117, 1);
	padding: 24px;
}
.address-block label {
    margin: 0;
}
input[type="radio"], input[type="checkbox"] {
    margin: 0;
    outline: none;
	display: none;
}
.discount-input-block{
	position: relative;
}
.apply-btn{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	inset-inline-end: 15px;
	background-color: transparent;
	border: 0;
	padding: 0;
	outline: none;
	color: var(--main-color);
	transition: 0.5s;
	font-size: 15px;
}
.apply-btn:hover{
	color: var(--main-hover);
	border: 0;
	outline: none;
}
.apply-btn:focus{
	color: var(--main-hover);
	border: 0;
	outline: none;
}
.total-record{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.total-label{
	font-size: 16px;
	color: var(--main-color);
}
.total-answer{
	color: var(--main-color);
	font-size: 16px;
	font-family: "IBMPlexSansArabic-Medium";
}
.pay-block .reserve-link{
	width: 100%;
	border: 0;
	outline: none;
	margin-top: 30px;
}
.checkmark-2 {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    border: 1px solid #E1E1E1;
    position: relative;
}
.address-type {
    font-size: 16px;
    color: var(--main-color);
    display: flex
;
    text-align: start;
    margin-inline-start: 15px;
}
.address-type-radio:checked~.checkmark-2::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--main-hover);
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.address-block {
    width: 100%;
    height: 52px;
   border: 1px solid rgba(108, 114, 117, 1);
    background-color: #fff;
    position: relative;
    display: flex
;
    align-items: center;
    padding-inline-start: 20px;
    margin-bottom: 10px;
}
 .fs-32{
	font-size: 32px;
 }
 .not-found .reserve-link{
	width: 217px;
 }
 .about-imgs{
	display: flex;
	gap:12px;
	margin: 100px 0 80px;
 }
 .about-img1{
	width: 30%;
 }
 .about-img2{
	width: 70%;
 }
 .about-imgs img{
	width: 100%;
	height: 100%;
 }
 .about-2-section{
	padding: 0 0 50px;
 }
 .about-2-content{
	display: flex;
	justify-content: space-between;
 }
 .about-2-content p{
	max-width: 901px;
 }
 .count{
	display: flex;
	flex-direction: column;
	gap:8px;
	align-items: center;
 }
 .choose-content{
	display: flex
	;
		flex-wrap: wrap;
		box-shadow: 0px 8px 25px 0px rgba(236, 233, 244, 1);
margin-bottom: 199px;
padding: 77px;
 }
 .choose-form{
	display: flex
	;
		max-height: 410px;
		gap: 0 38px;
		flex-wrap: wrap;
		width: 48%;
		flex-direction: column;
 }
 .choose-form .reserve-link{
	width: 100%;
	margin-top: 32px;
 }


 .d-flex{
	display: flex;
}
.justify-content-center{
	justify-content: center;
}
.align-items-center{
	align-items: center;
}

/*---------signup-step-------------*/
.bg-color{
	background-color: var(--main-hover);
}
.signup-step-container{
	padding: 50px 0px;
	padding-bottom: 60px;
}

.product-table{
	width: 100%;
}
.table-head th{
	color: var(--main-color);
	font-size: 16px;
	padding-bottom: 24px;
}
.table-head{
	border-bottom: 1px solid rgba(108, 114, 117, 1);
}
.cart-pro-img{
	width: 50px;
}
.table-record{
	padding: 10px 0;
	border-bottom: 1px solid rgba(232, 236, 239, 1);
	
}
.cart-block{
	display: flex
	;
		gap: 10px;
}
.table-record td{
	color: var(--main-color);
	font-size: 18px;
}
.delete-product{
	color: rgba(219, 48, 34, 1);
	font-size: 14px;
	cursor: pointer;
	display: block;
	margin: 10px;
	font-family: "IBMPlexSansArabic-Bold";
}
    .wizard .nav-tabs {
        position: relative;
        margin-bottom: 0;
        border-bottom-color: transparent;
		display: flex;
		justify-content: space-between;
    }

    .wizard > div.wizard-inner {
            position: relative;
    
    text-align: center;
    }

.connecting-line {
    height: 2px;
    background: rgba(177, 181, 195, 1);
    position: absolute;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15px;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
}
span.round-tab i{
    color:#555555;
}
.wizard li.active span.round-tab {
        background: var(--main-hover);
    color: #fff;
    border-color: var(--main-hover);
}
.wizard li.active span.round-tab i{
    color: #5bc0de;
}
.wizard .nav-tabs > li.active > a i{
	color: var(--main-hover);
}







.wizard .nav-tabs > li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}
.wizard .nav-tabs > li a i{
	position: absolute;
    top: -15px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 700;
    color: rgba(177, 181, 195, 1);
	padding-bottom: 10px;
}

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 20px;
}


.wizard h3 {
    margin-top: 0;
}
.prev-step,
.next-step{
    font-size: 13px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
}

.skip-btn{
	background-color: #cec12d;
}
.step-head{
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}
.pay-block .counter-div{
	margin-top: 15px;
}
.pro-name-bar{
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}
.cart-pro-details{
	width: 100%;
}
.pay-block .cart-block{
	padding: 10px 0;
}
.term-check{
	font-size: 14px;
	font-weight: 400;
}
.small-title{
	color: var(--main-color);
	font-size: 20px;
	font-family: "IBMPlexSansArabic-Medium";
}
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    margin: 0;
    opacity: 0;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 2;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 38px;
    padding: .375rem .75rem;
    line-height: 2;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}
.footer-link{
	margin-top: 30px;
}
.all-info-container{

}
.list-content{
	margin-bottom: 10px;
}
.list-content a{
	padding: 10px 15px;
    width: 100%;
    display: inline-block;
    background-color: #f5f5f5;
    position: relative;
    color: #565656;
    font-weight: 400;
    border-radius: 4px;
}
.list-content a[aria-expanded="true"] i{
	transform: rotate(180deg);
}
.list-content a i{
	text-align: right;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: 0.5s;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fdfdfd;
}
.list-box{
	padding: 10px;
}
.signup-logo-header .logo_area{
	width: 200px;
}
.signup-logo-header .nav > li{
	padding: 0;
}
.signup-logo-header .header-flex{
	display: flex;
	justify-content: center;
	align-items: center;
}
.list-inline li{
    display: inline-block;
}
.pull-right{
    float: right;
}
/*-----------custom-checkbox-----------*/
/*----------Custom-Checkbox---------*/
input[type="checkbox"]{
    position: relative;
    display: inline-block;
    margin-right: 5px;
}
.notification-block .cart-pro-img{
	width: 64px;
	border-radius: 50%;
}
.notification-block .cart-pro-img img{
border-radius: 50%;
}
.notification-block{
border-bottom: 1px solid rgba(212, 212, 212, 1);
}
.not-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba(243, 245, 247, 1);
	color: var(--main-color);
	font-size: 24px;
	flex-shrink: 0;
}






@media (max-width: 767px){
	.sign-content h3{
		font-size: 40px;
	}
	.wizard .nav-tabs > li a i{
		display: none;
	}
	.signup-logo-header .navbar-toggle{
		margin: 0;
		margin-top: 8px;
	}
	.signup-logo-header .logo_area{
		margin-top: 0;
	}
	.signup-logo-header .header-flex{
		display: block;
	}
}
.cart-success{
	box-shadow: 0px 32px 48px -48px rgba(18, 18, 18, 0.1);
display: flex;
flex-direction: column;
align-items: center;
gap:15px;
height: 534px;
}
.address-block-2{
	border-bottom: 1px solid rgba(212, 212, 212, 1);
	padding: 24px 0 32px;
	display: flex;
	justify-content: space-between;
}
.address-title{
	color: var(--main-color);
	font-size: 16px;
	text-align: start;
	font-family: "IBMPlexSansArabic-Bold";
	margin: 0 0 8px;
}
.address-text{
	color: var(--main-color);
	text-align: start;
	margin: 0 0 4px;
	font-size: 14px;
}
.address-btns{
	display: flex;
	gap:  22px;
}
.address-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 91px;
	height: 42px;
	padding: 0;
	border: 0;
	outline: none;
	outline: none;
	border-radius: 6px;
	font-size: 16px;
	transition: 0.5s;
}
.edit-address-btn{
	background-color: rgba(246, 246, 246, 1);
	color: var(--main-color);
}
.edit-address-btn:hover{
	background-color: var(--main-color);
	color: #fff;
}
.delete-address-btn{
	color: rgba(219, 48, 34, 1);
	background-color: rgba(255, 190, 183, 1);
}
.delete-address-btn:hover{
	background-color: var(--main-color);
	color: #fff;
}
.modal-title{
	text-align: center;
	margin: 15px auto ;
	color: var(--main-color);
	font-size: 24px;
	font-family: "IBMPlexSansArabic-Bold";
}
.modal-footer{
	display: flex;
	justify-content: center;
	gap:15px;
}
.new-address-btn{
	border: 0;
	outline: none;
	margin: 43px 0 0;
	width: 212px !important;
	height: 50px !important;
}
.switch-btn {
    width: 50px;
    height: 28px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.switch-btn .knobs, #button-1 .knobs:before, .switch-btn .layer {
    transition: 0.3s ease all;
}
.knobs, .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.knobs {
    z-index: 2;
    width: 50px;
    height: 28px;
    border-radius: 14px;
    background-color: #C5C5C5;
}
.switch-btn .knobs:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
.switch-btn .switch-checkbox:checked+.knobs:before {
    content: "";
    left: 25px;
    background-color: #fff;
}
.switch-checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    background-color: rgba(52, 199, 89, 1);
}
.switch-btn .switch-checkbox:checked+.knobs {
    background-color: rgba(52, 199, 89, 1);
}
.values-section{
	padding: 0 0 81px;
}

  /*    features section */
  
  /*                                    media query                                    */
  /*                    menu in phone size                      */
  
  @media (max-width: 991px) {
	body {
	  padding-top: 86px;
	}
	.account-list-section-content{
		flex-wrap: wrap;
		gap:30px;
	}
	.values-grid {
		display: flex
	;
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
	}
	
	.value-block{
		flex-wrap: wrap;
		gap:30px;
		justify-content: center;
	}
	.value-title{
		text-align: center;
	}
	.value-p{
		text-align: center;
	}
	.order-list-content{
		padding-inline-start: 0;
	}
	.counter-1:before{
		font-size: 40px;
	}
	.counter-2:after{
		font-size: 40px;
	}
	.counter-3:after{
		font-size: 40px;
	}
	.counter-4:after{
		font-size: 40px;
	}
	.counter-name{
		font-size: 20px;
	}
	.counter-section{
		display: grid
;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);

	}
	.counter-number{
		font-size: 40px;
	}
	.order-block{
		flex-wrap: wrap;
		gap:15px;
	}
	.order-block .cart-block {
		padding: 0;
		justify-content: space-between;
		width: 100%;
	}
	.order-btns{
		margin: 0 auto;
	}
	.my-account-list{
		width: 100%;
		padding: 20px;
	}
	.reserve-content{
		flex-wrap: wrap;
	}
	.reserve-content:after{
		width: 0;
		height: 0;
	}
	.next-step{
		width: 100% !important;
	}
	.not-found{
		margin-bottom: 50px;
	}
	.reservation{
		flex-wrap: wrap;
		justify-content: center;
	}
	.map-div{
		margin-top: 0;
		margin-inline-end: 0;
		padding: 0 20px 20px;
	}
	.footer-section{
		padding: 50px 0 30px;
	}
	.blog-grid{
		grid-template-columns: repeat(1,1fr);
	}
	.about-imgs{
		margin: 30px 0 50px;
	}
	.test {
		padding: 50px 0 80px;
	}
	.location-content{
		flex-wrap: wrap;
		
	}
	.about-2-content{
		flex-wrap: wrap;
		gap:30px;
	}
	.about-2-content .hello2-title{
		text-align: center;
		width: 100%;
	}
	.about-2-content p{
		max-width: 100%;
	}
	.location-section{
		margin-top: 50px;
	}
	.location-content .reserve-link{
		width: 100%;
	}
	.reserve-2-content{
		flex-wrap: wrap;
		gap:30px;
	}
	.blog-title-bar{
		flex-wrap: wrap;
		gap:15px;
	}
	.blog-title-text{
		width: 100%;
	}
	.choose-content{
		padding: 20px;
		margin-bottom: 70px;
	}
	.choose-form {
		
		max-height: max-content;
		gap: 0;
		flex-wrap: nowrap;
		width: 100%;
		
	}
	.reserve-2-form{
		width: 100%;
	}
	.reserve-2-titlee{
		font-size: 30px;
		max-width: 100%;
	}
	.reserve-2-p{
		max-width: 100%;
	}
	.reserve-2-section{
		margin-bottom: 50px;
	}
	.test-slider .swiper-btn{
		display: none;
	}
	
	.test-slider{
		margin: 50px 0;
	}
	.reserve-form{
		width: 100%;
	}
	.left-reserve-section{
		width: 100%;
	}
	.reserve-labels{
		width: 100%;
	}
	.hello-content{
		flex-wrap: wrap;
		gap:20px;
	}
	.services-grid{
		display: flex
		;
			flex-wrap: wrap;
			gap: 15px;
	}
	.service-section-2{
		padding: 50px 0 ;
	}
	.login-content{
		flex-wrap: wrap;
		gap:50px;
	}
	.login-form-content{
		width: 100%;
		padding-inline-start: 0;
		padding: 0 20px 50px;
	}
	.login-form{
		width: 100%;
	}
	.hello2-title{
		font-size: 30px;
		max-width: 100%;
		margin: 0 0 15px;
	}
	.hello2-p{
		max-width: 100%;
	}
	.hello-img{
		width: 100%;
	}
	.hello-text{
		width: 100%;
	}
	.hello-title{
		font-size: 30px;
		margin: 0 0 15px;
	}
	.justify-start {
		
		gap: 30px;
		padding: 20px;
	}
	.dr-name{
		font-size: 30px;
	}
	.dr-information-list li{
		font-size: 17px;
	}
	.dr-information-list{
		padding-inline-start: 20px;
	}
	.services-title{
		font-size: 30px;
	}
	.dr-information-section{
		padding: 0 0 50px;
	}
	.hello-section{
		padding: 0 0 50px;
	}
	.footer-accordion {
		cursor: pointer;
		width: 100%;
		transition: 0.4s;
		
	  }
	  .service-content{
		flex-wrap: wrap;
	  }
	  .services-section{
		padding: 0 0 50px;
	  }
	  .service-block{
		width: 100%;
	  }
	.about-content{
		flex-wrap: wrap;
		padding: 50px 0 ;
		gap:15px;
	}
	.about-img {
		width: 100%;
	}
	.about-text {
		width: 100%;
	}
	.about-title{
		font-size: 30px;
	}
	.about-title:after{
		content: "";
	}
	.call{
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	.phone{
		text-align: start;
	}
	  .footer-accordion.nav-foot-header{
		margin-bottom: 0;
	}
	  .footer-accordion:after {
		content: "";
		font-family: "Linearicons-Free";
	  
		font-size: 13px;
		transition: all 0.5s ease-out;
	  }
	  .footer-panel {
		max-height: 0;
		overflow: hidden;
		transition: all 0.5s ease-out;
		padding: 0 15px;
	  }
	  .login-img{
		width: 100%;
		order: -1;
	  }
	  .footer-accordion.active:after {
		transform: rotate(180deg);
	  }
	.footer-note{
		max-width: 100%;
	}
	.menu-item-has-children:after{
		content: "";
	}
	.sub-menu li a:after{
		content: "" !important;
	}
  .gallery{
	gap:15px;
  }
	.img-logo {
	  width: 65px;
	}
	.lang a {
	  font-size: 15px !important;
	}
  .cart{
	font-size: 23px;
  }
	.top-header-list {
	  gap: 20px;
	}
  
	.search-input {
	  height: 40px;
	  border-radius: 24px;
	}
  
	.top-header-list-icon {
	  font-size: 20px;
	}
  
	.menu-item-has-children a:hover {
	  color: var(--main-hover) !important;
	}
	.menu-item-has-children {
		width: 100%;
		position: unset;
	}
	.menu-item-has-children a:after{
		content: "";
		font: var(--fa-font-light);
		position: absolute;
		inset-inline-end: 0;
        top: 50%;
        transform: translateY(-50%);
		transition: 0.5s;
	}
	.menu-item-has-children.active a:after {
    transform: rotate(180deg);
	top:20%;
	}
	.sub-menu li:not(:last-child) {
	  margin-bottom: 10px;
	}
  
	.sub-menu {
	  margin-top: 15px;
	}
  
	.sub-menu li a {
	  font-size: 16px !important;
	}
	.nav-foot-header {
	  font-size: 16px;
	}
  
	.nav-foot-cont {
	  text-align: start;
	  margin-bottom: 20px;
	}
  
	.copy-right {
	  order: 2;
	}
	.bars-icon {
	  display: flex;
	  flex-direction: column;
	  gap: 5px;
	  cursor: pointer;
	 
	}
	.navgition .bars-icon {
	  position: absolute;
	  top: 37px;
	  inset-inline-end: 20px;
	}
	.line {
	  background-color: var(--main-color);
	  width: 20px;
	  height: 1.3px;
	}
	.navgition .bars-icon .line-2 {
	  display: none;
	}
	.navgition .bars-icon .line-1 {
		transform: translate(0px, 3px) rotate(-45deg);
	}
	.navgition .bars-icon .line-3 {
		transform: translate(0px, -3px) rotate(45deg);
	}
	.discount {
	  font-size: 14px;
	  inset-inline-start: 10px;
	}
	.features-section {
	  margin-bottom: 50px;
	  padding: 30px 20px;
	  padding-inline-start: 20px;
	  margin-top: 50px;
	  flex-wrap: wrap;
	  gap: 30px;
	}
	
	.new-arrivals-section {
	  padding: 0px 0 50px;
	}
	
	
	
	.bannerrs-section {
	  padding-bottom: 50px;
	}
	.nav-header {
	  padding: 24px 0;
	}
	.top-header-list li {
	  font-size: 20px;
	}
	.search-btn:after {
	  font-size: 20px;
	}
  
	.newsletter-bar {
	  justify-content: center;
	  padding: 30px 20px;
	  flex-wrap: wrap;
	  gap: 20px;
	  margin-top: 20px;
	  margin-bottom: 0;
	  padding-inline-start: 20px;
	}
	.copy-flex-content {
	  flex-wrap: wrap;
	  justify-content: center;
	}
	.env-icon {
	  display: none;
	}
	.newsletter-title {
	  font-size: 20px;
	}
	.nav-foot-header-2 {
	  margin: 30px 0 15px;
	  text-align: center;
	}
	.footer-note {
	  margin-bottom: 20px;
	  max-width: 100%;
	}
	footer {
	  padding: 0 0 20px;
	}
  
	.nav-header {
	  padding: 10px ;
	  justify-content: space-between;
	  margin: 10px 0;
	}
	.username{
		margin: 0 0 20px;
	}
	
	footer .img-logo {
	  margin: 0 auto;
	  width: 101px;
	  position: relative;
	  top: 0;
	}
	.account-list-content{
		padding: 0;
	}
 
  .reserve-link{
	width: 100px;
	height: 40px;
	font-size: 14px;
  }
  .account-list{
	flex-direction: row;
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;

  }
	.features-content {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 40px 0;
	}
  
	.search-button {
	  font-size: 16px;
	}
  
	.newsletter-note {
	  font-size: 13px;
	}
	.newsletter-input-div {
	  
	  width: 100%;
	 
	}
	.newsletter {
	  gap: 10px;
	}
  
	.newsletter-input {
	  width: 100%;
	}
  
	.best-seller-section {
	  padding: 0px 0 56px;
	}
  
	.big-title {
	  font-size: 24px;
	  margin: 0 0 22px;
	}
	.fixed-header .search-content {
	  top: 70px;
	}
	.add-cart-btn {
	  font-size: 12px;
	}
	.cart-icon {
	  font-size: 14px;
	}
  
	.product-name {
	  height: 50px;
	  padding: 0;
	  font-size: 13px;
	}
  
	.social-list {
	  flex-direction: row;
	  justify-content: center;
	  margin: 0 0 30px;
	  width: 100%;
	}
	.mb-24 {
	  margin-bottom: 15px !important;
	}
  
	.apps {
	  justify-content: center;
	}
	.copy-flex {
	  margin: 0;
	  padding: 15px 0;
	}
  
	.tk {
	  text-align: start;
	}
	.navgition {
	  display: block;
	  position: fixed;
	  padding: 30px 20px;
	  padding-top: 0;
	  left: 0;
	  top: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  opacity: 0;
	  visibility: hidden;
	  clip-path: circle(10.9% at 16% 16%);
	  background-color: #fff;
	  transition: 0.4s;
	  z-index: 8;
	  overflow-y: auto;
	  transition: all 0.3s ease-in-out;
	  margin-inline-end: 0;
	}
  
	html[dir="ltr"] .navgition {
	  clip-path: circle(11.2% at 86% 14%);
	}
  
	.reset-left {
	  left: 0;
	  top: 0;
	  clip-path: circle(139.6% at 9% 15%);
	  visibility: visible;
	  opacity: 1;
	}
  
	html[dir="ltr"] .reset-left {
	  clip-path: circle(121.2% at 86% 14%);
	}
  
	.big-menu {
	  text-align: start;
	  align-items: flex-start;
	  padding: 128px 0 0;
	  flex-direction: column;
	}
  
	.big-menu li a {
	  font-size: 18px;
     display: flex;
	  width: 100%;
      position: relative;
	  transition: 0.5s;
	  font-family: "IBMPlexSansArabic-Bold";
	}
	.lang {
	  position: absolute;
	  top: 30px;
	}
  
	.big-menu li a:hover {
	  color: var(--main-hover);
	}
  
	/*                    menu in phone size                      */
  }
  
  /*                                    media query                                    */
  
  /*                                 arrow-top                           */
  .arrow-top {
	position: fixed;
	bottom: 15px;
	inset-inline-start: 15px;
	display: none;
	z-index: 10;
	text-decoration: none !important;
  }
  
  .arrow-top-arrow {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
	font-size: 20px;
	color: #808080;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
  }
  
  .arrow-top-arrow:hover {
	background-color: var(--main-color);
	color: #fff;
  }
 
  @media only screen and (max-width: 994px) and (min-width: 768px) {
	
  
	    .gallery__item:nth-of-type(1){
		grid-column-end: 13;
	  }
	  .gallery__item:nth-of-type(2) {
		grid-column-start: 1;
		grid-column-end: 13;
		grid-row-start: 9;
		grid-row-end: 13;
	}
	.gallery__item:nth-of-type(3) {
		grid-column-start: 1;
		grid-column-end: 7;
		grid-row-start: 13;
		grid-row-end: 17;
	}
	.gallery__item:nth-of-type(4) {
		grid-column-start: 7;
		grid-column-end: 13;
		grid-row-start: 13;
		grid-row-end: 17;
	}
	.gallery__item:nth-of-type(5) {
		grid-column-start: 1;
		grid-column-end: 13;
		grid-row-start: 17;
		grid-row-end: 21;
	}
	.gallery__item:nth-of-type(6) {
		grid-column-start: 1;
		grid-column-end: 7;
		grid-row-start: 21;
		grid-row-end: 25;
	}
	.gallery__item:nth-of-type(7) {
		grid-column-start: 7;
		grid-column-end: 13;
		grid-row-start: 21;
		grid-row-end: 25;
	}
	.gallery__item:nth-of-type(9) {
		grid-column-start: 1;
		grid-column-end: 13;
		grid-row-start: 25;
		grid-row-end: 29;
	}
	.gallery__item:nth-of-type(8) {
		grid-column-start: 1;
		grid-column-end: 7;
		grid-row-start: 29;
		grid-row-end: 33;
	}
	.gallery__item:nth-of-type(10) {
		grid-column-start: 7;
		grid-column-end: 13;
		grid-row-start: 29;
		grid-row-end: 33;
	}
	.gallery{
		grid-template-rows: repeat(32, 1fr);
	}
}
