.header-container {
	position: fixed;
	top: 0;
	width: 100%;
	min-height: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	overflow: hidden;
	box-shadow: 0px 1px 4px 0 #dadada;
}

.logo-box img {
	mix-blend-mode: multiply;
	width: 140px;
}

.header-box {
	width: 100%;
	background-color: rgb(255, 255, 255);
	padding: 20px 0 10px 0;
}

.main-navbar-ul {
	display: flex;
	justify-content: center;
	gap: 50px;
	height: 100%;
	align-items: center;
}

.main-navbar-ul li {
	font-weight: 600;
	transition: all .2s;
}

.main-navbar-ul li:hover {
	color: var(--color-primary);
}

.header-box li {
	cursor: pointer;
	font-size: 18px;
	color: #454545;

}

.nav-buttom-box {
	gap: 15px;
}

.login-register-btn {
	color: var(--color-primary);
	border: 1px solid var(--color-primary);

}

.lang-btn {

	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.logo-box svg>* {
	width: 100%;
}

.header-phone span {
	transition: all .2s;
}

.header-phone:hover span {
	color: var(--color-primary);
}

/* ///////////////////////////////////////////////////////////////      */


.slider-container {
	width: 100%;
	position: relative;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mySwiper img {
	width: 100%;
	height: auto;
	max-height: 614px;
	object-fit: cover;
	filter: brightness(.4);
}

.main-page-body {
	margin-top: 8dvh;

}

.slide-body {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider-content {
	position: absolute;
	;
	color: var(--color-primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: -20px;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
	color: var(--color-primary) !important;
}

.first-box {
	margin-top: 10dvh;
}

.first-box img {
	border-radius: 5px;
	object-fit: cover;

}

.text-box h3 {
	color: var(--color-primary);
}

.about-content-item {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.about-content-item p {
	text-align: center;
	font-size: 16px;
	width: 80%;
	margin-top: 5px;
}

.about-content-item h3 {

	font-size: 20px;
}

.see-package-box h3 {
	margin-top: 10px;
	font-size: 22px;
	font-weight: 700;
}

.about-content-item i {
	margin-bottom: 15px;
	font-size: 23px;
	color: #fff;
	padding: 13px;
	background-color: var(--color-primary);
	border-radius: 50%;
}

.about-hotel-content {
	margin-top: 60px;
	margin-bottom: 80px;
}

.about-parent .about-content-item:not(:first-child) {
	position: relative;
}

.about-parent .about-content-item:not(:first-child)::before {
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	background-color: var(--color-primary);
	right: 0;

}

.custom-container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.second-box {
	margin-bottom: 70px;
	margin-top: 100px;
}

.guest-container {
	margin-bottom: 20px;
}

.second-box img {
	object-fit: cover;
	border-radius: 7px;
}

.see-package-box {
	gap: 15px;
}

footer {
	margin: 30px;
}

.see-more-left {
	gap: 20px;
}

.see-more-box {
	gap: 15px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--color-primary);
}

.see-package-box button {
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	margin: 0 10px;
	box-shadow: 2px 2px 4px 0 var(--color-primary);
	transition: all .2s;
	font-weight: 600;
}

.see-package-box button:hover {
	background-color: var(--color-primary);
	color: #fff;
	box-shadow: unset;
}

.see-more-box button {
	border: 1px solid var(--color-primary);
	color: #fff;
	background-color: var(--color-primary);
	width: max-content;
}


.mySwiper {
	position: relative;
}



.guests-slider {
	padding-inline: 40px;
	direction: rtl;
	overflow-x: hidden;
	overflow-y: initial;
}

.swiper-slide {
	padding: 10px 0;
}

.guest-box {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	padding: 10px;
	aspect-ratio: 1;
	transition: 0.3s;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-right: 2px solid transparent;
}

.guest-box:hover {
	border-right: 2px solid var(--color-primary);
}

.guest-box img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 12px;
	transition: 0.3s;
}

.guest-box:hover img {
	filter: grayscale(0);
}

.texts {
	position: absolute;
	bottom: 12px;
	left: 10px;
	width: 40%;
	border-radius: 0 10px 10px 10px;
	background: rgba(240, 240, 240, 0.9);
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: 0.3s
}

.title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	transition: 0.3s;
}

.job {
	font-size: 14px;
	color: #777;
}

.guest-box:hover .title {
	color: #ff5a3c;
}

/* arrows */
.guests-slider .swiper-button-next,
.guests-slider .swiper-button-prev {
	width: 43px;
	height: 43px;
	background: #fff7f0;
	border: 2px solid var(--color-primary);
	border-radius: 50%;
	transition: all .2s;
}

.guests-slider .swiper-slide {
	scale: .8;
}

.title-container i {
	color: var(--color-primary);
	font-size: 25px
}

.guest-container .title-container i {
	font-size: 25px;
}

.faq-wrapper .title-container i {
	font-size: 25px;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
	color: var(--color-primary);

}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--color-primary);
	color: #fff !important;
	transform: scale(1.2);
}

/* pagination */
.swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	background: #ccc;
	border-radius: 10px;
}

.swiper-pagination-bullet-active {
	width: 22px;
	background: var(--color-primary);
}

.swiper-pagination.guests-pagination {
	bottom: -20px !important;
}











.accordion-header {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 12px;
}

/* دکمه */
.accordion-button {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	height: 72px;
	padding: 6px 54px 6px 22px;
	border-left: 2px solid transparent;
	display: flex;
	align-items: center;
	overflow: hidden;
	transition: 0.3s;
	width: 100%;
}

/* حذف فلش بوت‌استرپ */
.accordion-button::after {
	display: none !important;
}

/* آیتم */
.accordion-item {
	border: none;
	padding-block: 12px;
}

/* بادی */
.accordion-body {
	padding: 16px 22px;
	background: var(--color-primary);
	color: #fff !important;
	border-radius: 8px;
	font-weight: 600;
}

/* آیکن */
.accordion-header .icon {
	position: relative;
	padding-top: 8px;
	padding-inline-start: 8px;
	margin-top: 11px;
	filter: grayscale(1);
	transition: 0.3s;
}

.icon .bac {
	width: 37px;
	height: 37px;
	background: #feecdb;
	position: absolute;
	border-radius: 50%;
	top: 0;
	right: 0;
}

.icon .img {
	position: relative;
	z-index: 2;
}

.icon svg {
	width: 41px;
	height: 41px;
}

/* وقتی باز میشه */
.accordion-button:not(.collapsed) {
	border-left: 2px solid var(--color-primary);
}

.accordion-button:not(.collapsed)~.icon {
	filter: grayscale(0);
}

.faq-wrapper {
	padding: 20px;
}

.accordion-item {
	position: relative;
	margin-bottom: 15px;
	border: none;
}

.accordion-button {
	background: #fff;
	border-radius: 12px !important;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.193);
	padding: 18px 50px 18px 20px;
	font-size: 14px;
	transition: 0.3s;
}

.accordion-button:not(.collapsed) {
	background: #f9f9f9;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.193);
}

.accordion-button:focus {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.193) !important;
}

.accordion-body {
	padding: 15px 20px;
	line-height: 1.9;
	color: #555;
}

/* آیکن سمت راست */
.faq-icon {
	position: absolute;
	right: 15px;
	top: 18px;
	width: 30px;
	height: 30px;
}

.faq-icon .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #f1f1f1;
	border-radius: 50%;
	transition: 0.3s;
}

.faq-icon .svg {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.accordion-button:not(.collapsed)+.faq-icon .bg {
	background: #e0e0e0;
}

/* تغییر آیکن به ضربدر */
.accordion-button:not(.collapsed) svg {
	transform: rotate(45deg);
	transition: 0.3s;
}

svg {
	transition: 0.3s;
}

/* : /////////////////////////////////////////////////////////             footer             */

.footer {
	margin: 0;
	margin-bottom: auto;
}

.footer .row {
	margin: 0;
}


.background-container {
	position: relative;
	height: 450px;
	width: 100%;
}

.background-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	position: absolute;
	filter: brightness(.4);
}

.footer-second-container {
	background-color: #333;
	color: #fff;

}

.footer-second-container .row {
	padding: 40px 20px;
}

.footer-second-container h3 {
	color: var(--color-primary);
	margin-bottom: 15px;
}



.footer-icon-box i {
	font-size: 24px;
}

.footer-icon-box {
	display: flex;
	justify-content: center;
	gap: 15px;
	padding-top: 10px;
}

.footer-second-container ul li {
	margin-top: 5px;
}

.bottom-nav-container {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	z-index: 100;
	padding: 12px 0;
}

.btnNav-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	visibility: hidden;
	pointer-events: none;
}

.btnNav-modal.active {
	visibility: visible;
	pointer-events: auto;
}

.btnNav-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btnNav-modal.active .btnNav-overlay {
	opacity: 1;
}

.btnNav-menuPanel {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-radius: 20px 20px 0 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.btnNav-modal.active .btnNav-menuPanel {
	transform: translateY(0);
}

.btnNav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #eee;
}

.btnNav-header h3 {
	margin: 0;
	font-size: 18px;
	color: #333;
}

.btnNav-closeBtn {
	font-size: 20px;
	cursor: pointer;
	color: #999;
	transition: color 0.2s;
}

.btnNav-closeBtn:hover {
	color: #333;
}

.btnNav-menuList {
	padding: 10px 0 20px;
}

.btnNav-menuItem {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	transition: background 0.2s;
	border-bottom: 1px solid #f5f5f5;
}

.btnNav-menuItem:active {
	background: #f5f5f5;
}

.btnNav-menuItem i {
	width: 24px;
	font-size: 18px;
	color: #EEAF42;
}

.btnNav-menuItem span {
	font-size: 16px;
}

.main-action-btn{
	color: var(--color-primary);
	background-color: #fff;
	border: 2px solid var(--color-primary);
	transition: all .3s;
}

.main-action-btn:hover{
	background-color: var(--color-primary);
	color: #fff;
}

@media (max-width:992px) {
	.mySwiper {
		overflow: hidden;
	}

	.see-more-box {
		flex-direction: column;
	}

	.about-content-item {
		width: 50%;
	}

	.about-parent {
		flex-wrap: wrap;
	}

	.about-parent .temp::before {
		display: none;
	}

	.guests-slider .swiper-button-next,
	.guests-slider .swiper-button-prev {
		width: 32px;
		height: 32px;
	}

	.guests-slider .swiper-slide {
		scale: 1;
		width: calc(50% -5px) !important;
	}

	.texts {
		width: 83%;
		bottom: 0;
		left: 1px;
	}

	.title {
		font-size: 12px !important;
	}

	.job {
		font-size: 12px;
	}

	.guest-box {
		min-height: 144px;
	}

	.guest-container p {
		font-size: 13px;
	}

	.faq-wrapper p {
		font-size: 13px;
	}

	.accordion-button {
		padding: 15px 20px;
		font-size: 13px;
		line-height: 1.5rem;
		height: max-content;

	}

	.accordion-body {
		font-size: 14px;
	}

	.about-content-item h3 {
		font-size: 16px;
	}

	.about-content-item p {
		font-size: 13px;
		margin-bottom: 30px;
	}

	.second-box {
		margin-top: 0;
	}

	.about-hotel-content {
		margin-bottom: 40px;
	}

	.see-package-box h3 {
		font-size: 16px;
	}

	.see-package-box p {
		font-size: 15px;
	}

	.see-more-box h3 {
		font-size: 16px;
	}

	.see-more-box p {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.footer-second-container .row {
		flex-direction: column-reverse;
	}

	.footer-second-container .row>* {
		margin-bottom: 30px;
	}

	.footer-second-container .row * {
		text-align: center;
	}

	.mySwiper img {
		min-height: 380px;
	}

	.mySwiper h1 {
		font-size: 20px;
	}

	.mySwiper h2 {
		font-size: 17px;
		text-align: center;
	}

	.mySwiper .swiper-button-next,
	.mySwiper .swiper-button-prev {
		top: 60% !important;
	}

	.mobile-logo {
		max-width: 100px;
	}

	.mobile-header {
		background-color: #fff;
	}

	.footer-logo {
		max-width: 200px;
	}

}

@media (min-width:992px) and (max-width:1799px) {
	.header-box li {
		font-size: 14px;
	}

	.nav-buttom-box {
		font-size: 14px;
		text-wrap-mode: nowrap;
	}




}

@media (min-width:992px) {


	.text-box p {
		line-height: 2.3rem;
		font-size: 18px;
	}

	.footer-logo {
		max-width: 120px;
	}

	.footer-enamad{
		max-width: 70px;
	}

	.footer-second-container .col-md-3 {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-second-container .col-md-3:not(:first-child) {
		position: relative;
	}

	.footer-second-container .col-md-3:not(:first-child)::before {
		position: absolute;
		content: "";
		width: 2px;
		height: 80%;
		background-color: var(--color-primary);
		right: 0;
		top: 10%;
	}
}