/*------------------------------------------------------------------
Project:Bermiz
Author: The_Krishna       
Last change: 12 June, 2023  
Primary use: Restarant Template 
-------------------------------------------------------------------*/

/*----------------Table of contents Start---------------------------

1.Default CSS
2.Header CSS
3.Footer CSS
4.Homepage1 CSS
5.Animation CSS
6.Reservation1 CSS
7.Breadcrumbs CSS
8.History CSS
9.About US CSS
10.Contact US CSS
11.404 Error CSS
12.our chef CSS
13.Scroll Bottom to Top CSS
14.Coming soon Page CSS
15.Search Bar
16.Search Item CSS
17.Blogs CSS
18.Widget CSS
19.Commment Box CSS

---------Table of contents End-----------------------------------*/

/*------------------------ [Color codes] ------------------------                    
Background:     #0B1315
Content:        #FFFFFF,#FFDE9F,#99A9AD   
-------------------------------------------------------------------*/

/************************ 1.Default CSS ***************************/

@font-face {
	font-family: 'Elsie';
	src: url('../fonts/Elsie-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Lexend', sans-serif;
	src: url('../fonts/Lexend-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Lexend', sans-serif;
	src: url('../fonts/Lexend-medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}

:root {
	--primary-color: #FFDE9F;
	--secondary-color: #FFFFFF;
	--text-color: #0B1315;
	--accent-color: #99A9AD;
	--black-color: #000000;
}

*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	position: relative;
	font-weight: 400;
}

body,
html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: var(--text-color);
	position: relative;
	scroll-behavior: smooth;
}

::-webkit-scrollbar {
	-webkit-appearance: none;
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}


.mt-100 {
	padding-top: 100px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-60 {
	margin-top: 60px;
}

.ptb-100 {
	padding: 100px 0;
}

img {
	max-width: 100%;
	height: auto;
}

.anchor a {
	color: var(--primary-color);
}

.anchor_second a {
	color: var(--secondary-color);
}

.anchor_second a:hover {
	color: var(--primary-color);
}

.anchor a:hover {
	text-decoration: underline;
}

img,
svg {
	vertical-align: middle;
}

.pr-10 {
	padding-right: 10px;
}

.pf-10 {
	padding-left: 10px;
}

.container {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.custom-line-bg {
	position: absolute;
	max-width: 1170px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0%);
}

.line::before,
.line::after,
.line-3,
.line-4,
.line-5 {
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	top: 0;
	background: rgb(217 217 217 / 10%);
}


.line::before {
	left: 0;
	z-index: -1;
}

.line::after {
	left: 25%;
	z-index: -2;
}

.line-3 {
	left: 50%;
	z-index: -1;
}

.line-4 {
	left: 75%;
	z-index: -1;
}

.line-5 {
	left: 100%;
	top: 0;
	background: rgb(217 217 217 / 10%);
	z-index: -1;
}

.custome-container {
	max-width: 100%;
	width: 100%;
	height: auto;
	z-index: 1;
}

/************************ 2.Header CSS ****************************/

header {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border-bottom: 1px solid rgb(153 169 173 / 10%);
	/*position: sticky;
	top: 0;*/
	background: var(--text-color);
	z-index: 2;
}

.sub-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 40px;
}

.menu-bar {
	margin: 0 auto;
	z-index: 1;
}

.menu-bar ul {
	display: flex;
	gap: 0px 40px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.menu-bar ul li.menu-item {
	margin: 0;
	padding: 27px 0px;
}

.menu-bar ul a {
	color: var(--secondary-color);
	;
	font-size: 20px;
	line-height: 28px;
	font-family: system-ui, sans-serif;
	cursor: pointer;
}

.menu-bar ul li.menu-item-has-children>a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.menu-bar ul li.menu-item-has-children>a::after {
	content: url(../images/Homepage1/up-arrow.svg);
	width: 24px;
	height: 24px;
	display: block;
	vertical-align: middle;
	text-align: center;
	margin-top: 2px;
}

.menu-bar ul .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.menu-bar ul .menu-item-has-children>.sub-menu {
	left: 0;
	top: 100%;
	border: 1px solid var(--primary-color);
	color: var(--secondary-color);
	padding: 0;
	margin: 0;
	border-radius: 0;
	min-width: 220px;
	width: max-content;
	text-align: left;
}

.menu-bar ul .sub-menu .sub-menu {
	left: 100%;
	top: 0;
}

.menu-bar ul .sub-menu li {
	position: relative;
	padding: 0;
}

.menu-bar ul .sub-menu li a {
	text-decoration: none;
	color: var(--secondary-color);
	font-family: 'Lexend', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding: 10px 15px;
	border-bottom: 2px solid rgb(217 217 217 / 10%);
	background: var(--text-color);
	text-align: left;
	display: block;
}

.sub-menu li a:hover {
	background-color: var(--primary-color);
	color: black;
}

.menu-bar ul .sub-menu li.menu-item-has-children>a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.menu-bar ul .sub-menu li.menu-item-has-children>a:after {
	transform: rotate(-90deg);
}

.head-cart {
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	border-radius: 100%;
}

.header-cart-sec .mobile-menu {
	display: none;
	color: #293a46;
	padding: 9px 10px;
	background-color: transparent;
	background-image: none;
	border-radius: 4px;
}

.mobile-menu span {
	background: var(--primary-color);
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 1px;
}

.mobile-menu span+span {
	margin-top: 4px;
}

.menu-bar .close {
	position: absolute;
	right: 32px;
	top: 32px;
	width: 32px;
	height: 32px;
	display: none;
	z-index: 1;
}

.close:hover {
	opacity: 1;
}

.close:before,
.close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 30px;
	width: 2px;
	background-color: var(--secondary-color);
}

.close:before {
	transform: rotate(45deg);
}

.close:after {
	transform: rotate(-45deg);
}

header .site-title a {
	font-size: 30px;
	font-family: 'Elsie';
	line-height: 36px;
	color: var(--primary-color);
	text-transform: capitalize;
}

/************************** 4.Footer CSS *************************/

footer {
	width: 100%;
	height: auto;
	border-top: 1px solid rgb(217 217 217 / 10%);
}

.from-newsletter input[type="email"] {
	outline: none;
	background-color: transparent;
	border: none;
	max-width: 320px;
	width: 100%;
	padding: 0;
	padding-bottom: 15px;
	font-family: 'Lexend', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: var(--primary-color);
}

.from-newsletter input[type="email"]::placeholder {
	color: var(--primary-color);
}

.from-newsletter button[type="submit"] {
	background: transparent;
	border: none;
	outline: transparent;
	padding: 0;
}

.from-newsletter button[type="submit"]:hover {
	border: 0;
}

.from-newsletter .sub-from-newsletter p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid #808080;
	margin-top: 20px;
}

.footer-checkbox-sec input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	background-color: #1a1a1a;
	border: 1px solid var(--secondary-color);
	width: 20px;
	height: 20px;
	border-radius: 2px;
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.footer-checkbox-sec input[type="checkbox"]:checked {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.footer-checkbox-sec input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 30%;
	width: 5px;
	height: 10px;
	border: solid var(--text-color);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-50%, -50%);
}

.footer-checkbox-sec .first {
	margin: 0;
	margin-top: 40px;
}

.footer-checkbox-sec label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.footer-checkbox-sec label {
	font-family: 'Lexend', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--accent-color);
}

.sub-from-newsletter .wpcf7-not-valid-tip {
	position: absolute;
	margin-top: 5px;
}

.newsletter .wpcf7-response-output {
	margin: 0;
	margin-top: 10px;
	font-size: 16px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	color: var(--secondary-color);
	border-color: var(--primary-color) !important;
}

/********************** 5.Homepage1 CSS **************************/

.hero-img-sec img {
	animation: rotate 15s linear infinite;
}

.video-modal-content {
	height: 100%;
}

.video_button {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	transition: 0.5s;
}

.video_sec_play {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

div.modal {
	max-width: 100%;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 50%);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

.homepage-video-modal .modal-dialog {
	max-width: 1170px;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.homepage-video-modal {
	display: none !important;
}

.homepage-video-modal.show {
	display: flex !important;
}

.modal-content {
	width: 100%;
	pointer-events: auto;
	background-color: var(--secondary-color);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.175);
	border-radius: 0.5rem;
	outline: 0;
}

.modal-header {
	padding: 20px;
	border: 1px solid #dee2e6;
	border-top-left-radius: calc(0.5rem - 1px);
	border-top-right-radius: calc(0.5rem - 1px);
}

.modal-body {
	width: 100%;
	padding: 20px;
}

.modal-content .close-btn {
	text-decoration: none;
	border-radius: 10px !important;
	border: 1px solid transparent;
	transition: 0.5s;
	cursor: pointer;
	width: 25px;
	height: 25px;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: auto;
}

.video-sec {
	width: 100%;
}

.txt-img {
	animation: rotate 15s linear infinite;
}

.pbmit-animation-style1 {
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	position: relative;
	overflow: hidden;
	-webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
	-o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
	transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.pbmit-animation-style1.active {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	z-index: -1;
}

.pbmit-animation-style1 img {
	-webkit-transform: scale(1.5) translate(-100px, 0px);
	-ms-transform: scale(1.5) translate(-100px, 0px);
	transform: scale(1.5) translate(-100px, 0px);
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
	-o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
	transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.pbmit-animation-style1.active img {
	transform: scale(1) translate(0px, 0px);
	-webkit-transform: scale(1) translate(0px, 0px);
	-ms-transform: scale(1) translate(0px, 0px);
}

.pbmit-animation-style2 {
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	position: relative;
	overflow: hidden;
	transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.pbmit-animation-style2.active {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.pbmit-animation-style2 img {
	transform-origin: 50% 50%;
	transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
	transform: scale(1.5) translate(100px, 0px);
}

.pbmit-animation-style2.active img {
	transform: scale(1) translate(0px, 0px);
}

.marquee_group .slick-track {
	display: flex;
	align-items: center;
}

.marquee_group .slick-slide {
	margin-right: 80px;
}

.counter-wrap {
	transform: translateY(0px) scale();
	transition: all 0.5s ease;
}

.counter-wrap:hover {
	-webkit-transform: translateY(-16px) scale(1.02);
	-ms-transform: translateY(-16px) scale(1.02);
	transform: translateY(-16px) scale(1.02);
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.book_table_main {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.book_table_main input,
.book_table_main select {
	max-width: 370px;
	width: 100%;
	height: 64px;
	border: 1px solid var(--primary-color);
	color: var(--secondary-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	padding: 20px;
	background-color: rgb(11 19 21 / 20%);
}

.book_table_main input::placeholder {
	color: var(--secondary-color);
}

.book_table_main input:focus-visible,
.book_table_main input:focus,
.book_table_main textarea:focus-visible,
.book_table_main textarea:focus {
	outline: 0 !important;
	outline-width: 0 !important;
}

.book_table_main select option {
	color: var(--secondary-color);
	background-color: var(--text-color);
}

.book_table_main select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('arrow-icon.png');
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 30px;
}

.book_table_main select::-ms-expand {
	display: none;
}

.book_table_main input.name {
	background: url(../images/menupage-1/name-icon.png) no-repeat;
	background-position: 96% center;
}

.book_table_main input.email {
	background: url(../images/menupage-1/email-icon.png) no-repeat;
	background-position: 96% center;
}

.book_table_main input.phone-number {
	background: url(../images/menupage-1/mobile-icon.png) no-repeat;
	background-position: 96% center;
}

.book_table_main select.person-menu {
	background: url(../images/Homepage3/form-arrow.svg) no-repeat;
	background-position: 96% center;
	font-size: 18px;
	appearance: none;
}

.book_table_main select.person-time {
	background: url(../images/Homepage3/form-arrow.svg) no-repeat;
	background-position: 96% center;
	font-size: 18px;
	appearance: none;
}

.book_table_main input.datepicker::-webkit-calendar-picker-indicator {
	filter: brightness(0) saturate(100%) invert(92%) sepia(4%) saturate(4603%) hue-rotate(324deg) brightness(103%) contrast(105%);
}

.book_table {
	display: grid;
	grid-template-columns: repeat(3, 3fr);
	gap: 30px;
}

.book_input {
	width: 100%;
}

.submit_book_table {
	width: fit-content;
	margin: 0 auto;
}

.submit_book_table input[type="submit"] {
	width: fit-content;
	margin: 60px auto 0px;
	background: var(--primary-color);
	color: var(--text-color);
	transition: all 0.3s linear;
	cursor: pointer;
	font-family: 'Lexend', sans-serif;
}

.submit_book_table input[type="submit"]:hover {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

.submit_book_table .wpcf7-spinner {
	display: none;
}

.wpcf7-response-output {
	border-color: var(--primary-color) !important;
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	color: var(--secondary-color);
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450 !important;
}

.tesimonial-slider-section .slick-track {
	display: flex;
}

.tesimonial-slider-section .slick-dots button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 100%;
	text-indent: -9999px;
	background: var(--accent-color);
	margin-left: 15px;
	cursor: pointer;
}

.tesimonial-slider-section .slick-dots {
	display: flex;
	justify-content: center;
	margin: 0;
	margin-top: 60px;
	list-style-type: none;
	column-gap: 10px;
	padding: 0;
}

.tesimonial-slider-section .slick-dots li.slick-active button {
	outline: 2px solid var(--primary-color);
	outline-offset: 5px;
	background: var(--secondary-color);
}

.tesimonial-slider-section .slick-dots button:hover {
	outline: 2px solid var(--primary-color);
	outline-offset: 5px;
	background: var(--secondary-color);
}

.tesimonial-slider-section .slick-list {
	width: 100%;
}

/************************ 6.Animation CSS ***************************/

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes floating {
	from {
		transform: translate(0, 0px);
	}

	65% {
		transform: translate(0, 15px);
	}

	to {
		transform: translate(0, -0px);
	}
}

.floating {
	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.cup {
	animation: cup-rotate 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
	transform-origin: top left;
	transform-box: fill-box;
}

@keyframes cup-rotate {
	50% {
		transform: rotate(-5deg)
	}
}

/************************** 7.Reservation1 CSS *****************************/

.reservation2-right::before {
	backdrop-filter: blur(5px);
}

.reservation-right-form .book_table {
	grid-template-columns: repeat(1, 3fr);
}

.book_table_main.reservation-right-form select {
	max-width: 100%;
}

.reservation-right-form .submit_book_table input[type="submit"] {
	width: 100%;
	max-width: 100%;
	margin: 30px auto 0px;
}

.reservation-right-form .submit_book_table {
	width: 100%;
}

.reservation3-form .book_table {
	grid-template-columns: repeat(4, 4fr);
}

.reservation3-form .submit_book_table {
	max-width: 370px;
	width: 100%;
}

.reservation3-form .submit_book_table input[type="submit"] {
	margin: 0;
	width: 100%;
}

.opentable-reservation .light-standard-theme {
	padding: 0;
}

.opentable-reservation h1.ot-title,
.opentable-reservation .ot-dtp-picker.wide .ot-powered-by {
	display: none;
}

.opentable-reservation .ot-dtp-picker.wide {
	width: 100%;
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-form {
	background: transparent;
	border: 0;
	height: 100% !important;
	display: grid;
	grid-template-columns: repeat(4, 4fr);
	gap: 30px;
}

.opentable-reservation2 .ot-dtp-picker .ot-dtp-picker-form {
	grid-template-columns: repeat(1, 1fr);
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-form .ot-dtp-picker-selector {
	border: 0;
	max-width: 100%;
	width: 100% !important;
	height: 64px;
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-selector .ot-dtp-picker-selector-link {
	height: 100%;
	border: 1px solid var(--primary-color);
	color: var(--secondary-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	padding: 20px;
	background-color: rgb(11 19 21 / 20%);
	text-align: center;

	background: url(../images/Homepage3/form-arrow.svg) no-repeat;
	background-position: 96% center;
	font-size: 18px;
	appearance: none;
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-selector .ot-dtp-picker-selector-link:before {
	color: var(--primary-color);
	line-height: 30px;
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-selector .ot-dtp-picker-selector-link:after {
	content: '';
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-selector:hover .ot-dtp-picker-selector-link,
.opentable-reservation .ot-dtp-picker .ot-dtp-picker-selector .ot-dtp-picker-selector-link.ot-select-label.highlighted {
	color: var(--secondary-color);
	outline: 0 !important;
	box-shadow: unset !important;
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-form .ot-dtp-picker-selector select option {
	color: var(--secondary-color);
	background-color: var(--text-color);
	padding: 0px 10px;
}

.opentable-reservation .ot-dtp-picker.wide .ot-dtp-picker-form .ot-dtp-picker-selector+.ot-dtp-picker-selector {
	border-left: 0;
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-form input[type="submit"].ot-button {
	max-width: 100%;
	width: 100%;
	height: 64px;
	border: 1px solid var(--primary-color);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
	padding: 20px;
	background-color: rgb(11 19 21 / 20%);
	outline: none;
	box-shadow: none;
	background: var(--primary-color);
	cursor: pointer;
	color: var(--text-color);
	transition: all 0.3s linear;
}

.opentable-reservation .ot-dtp-picker .ot-dtp-picker-form input[type="submit"].ot-button:hover {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

/************************** 8.Breadcrumbs CSS  *****************************/

.breadcrumb-section {
	padding: 20px 0;
	background: var(--text-color);
	border-bottom: 1px solid rgb(153 169 173 / 10%);
}

.breadcrumb-item {
	max-width: 1170px;
	margin: 0 auto;
	width: 100%;
}

.breadcrumbs {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;

}

.breadcrumbs .home {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.breadcrumbs .home svg {
	margin-right: 10px;
}

.breadcrumbs a,
.breadcrumbs span {
	font-family: 'Lexend', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--secondary-color);
}

.breadcrumbs span {
	color: var(--secondary-color);
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--primary-color);
}

.breadcrumbs .current {
	color: var(--primary-color);
}

/************************** 9.History CSS *****************************/

.home2-test-bottom-full .slick-custom-arrow {
	position: absolute;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border: 2px solid var(--secondary-color);
	border-radius: 30px;
	cursor: pointer;
	color: var(--black-color);
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.home2-test-bottom-full .slick-custom-arrow-left {
	left: -10%;
	top: 50%;
}

.home2-test-bottom-full .slick-custom-arrow-right {
	right: -10%;
	top: 50%;
}

.home2-test-bottom-full .slick-custom-arrow-right:hover,
.home2-test-bottom-full .slick-custom-arrow-left:hover {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.home2-test-bottom-full .slick-custom-arrow-right svg,
.home2-test-bottom-full .slick-custom-arrow-left svg {
	width: 24px;
	height: 24px;
}

.home2-test-bottom-full .slick-custom-arrow-right:hover svg path,
.home2-test-bottom-full .slick-custom-arrow-left:hover svg path {
	fill: var(--black-color);
}

/************************** 10.About Us CSS *****************************/

.tesimonial-slider-section2 .slick-list {
	width: 100%;
}

.tesimonial-slider-section2 .slick-custom-arrow {
	position: absolute;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border: 2px solid var(--secondary-color);
	border-radius: 30px;
	cursor: pointer;
	color: var(--black-color);
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.tesimonial-slider-section2 .slick-custom-arrow-left {
	left: 35%;
	bottom: -35%;
}

.tesimonial-slider-section2 .slick-custom-arrow-right {
	right: 35%;
	bottom: -35%;
}

.tesimonial-slider-section2 .slick-custom-arrow:hover {
	background: var(--text-color);
	border: 1px solid transparent;
}

/************************** 11.Contact Us CSS *****************************/

.about-us-form .book_table {
	grid-template-columns: repeat(1, 3fr);
}

.book_table_main.about-us-form input,
.book_table_main.about-us-form select {
	max-width: 100%;
}

.book_table_main.about-us-form .Message {
	background: url(../images/menupage-1/message-icon.svg) no-repeat;
	background-position: 96% 20px;
	width: 100%;
	height: 128px;


	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	color: var(--secondary-color);
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding: 20px;
	border: 1px solid var(--primary-color);
}

.book_table_main.about-us-form .Message::placeholder {
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	color: var(--secondary-color);
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.book_table_main.about-us-form .submit_book_table {
	margin: 0;
}

/************************** 11.404 Error CSS *****************************/

.error-section-img {
	background-image: url(../images/404-error/header-img.png);
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	max-width: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
}

.menupage-1-overlay {
	position: absolute;
	background: rgb(11 19 21 / 40%);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.menupage-1-conten {
	position: relative;
}

.menupage-1-hero-txt1 {
	font-family: 'Elsie', sans-serif;
	font-weight: 400;
	font-size: 96px;
	line-height: 111px;
	text-align: center;
	color: var(--secondary-color);
}

.error-top-sec {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}

.error-top-sec svg {
	width: 100%;
	margin: 0 auto;
}

.star-animation {
	animation: mover 1s infinite alternate;
}

.error-bottom-sec {
	margin-top: 60px;
}

.error-txt1 {
	color: var(--secondary-color);
	text-align: center;
	font-size: 60px;
	font-family: 'Elsie', sans-serif;
	line-height: 70px;
}

.error-txt2 {
	color: var(--accent-color);
	text-align: center;
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 30px;
	margin-top: 20px;
}

.error-home-btn {
	height: 64px;
	width: 237px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
}

.error-home-btn a {
	color: var(--text-color) !important;
	text-align: center;
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	line-height: 24px;
	transition: all 0.3s linear;
}

.error-home-btn:hover {
	border: 1px solid var(--primary-color);
	background: transparent;
}

.error-home-btn:hover a {
	color: var(--primary-color) !important;
}

#menupage-1-testimonials-sec {
	background-image: url(../images/Homepage2/testimonial-1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	max-width: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.menupage-1-testimo-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	background: rgb(11 19 21 / 80%);
	top: 0;
}

.home2-testimonials-sec-full {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}

p.homemenu-txt1 {
	text-align: center;
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--primary-color);
}

.homemenu-txt2 {
	font-family: 'Elsie', sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 70px;
	color: var(--secondary-color);
	margin-top: 20px;
	text-align: center;
}


.home2-testimonials-sec-full .home2-test-bottom {
	max-width: 970px;
	margin: 0 auto;
	padding-top: 80px;
}

.home2-test-txt1 {
	font-family: 'Elsie', sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	color: var(--secondary-color);
}

.home2-test-txt2 {
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	text-align: center;
	color: var(--primary-color);
	margin-top: 40px;
}

/****************12.our chef CSS*******************/

.custom-product-grid.chef-post-container {
	display: block;
}

.chef-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
	row-gap: 60px;
}

.chef-contents {
	margin-top: 40px;
}

.chef-item,
.chef2-item {
	overflow: hidden;
	width: 100%;
	height: auto;
}

.chef-list .chef-item h2,
.chef-list h2.chef2-title {
	font-size: 24px;
	line-height: 28px;
}

.chef-list .chef-item:hover h2,
.chef-list h2.chef2-title:hover {
	color: var(--primary-color);
}

.chef-list .chef-item .chef-excerpt {
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: var(--accent-color);
	margin-top: 20px;
}

.chef-item .chef-thumbnail {
	position: relative;
	max-width: 400px;
	overflow: hidden;
}

.chef-overlay {
	position: absolute;
	height: calc(100% - 60px);
	width: calc(100% - 60px);
	background: rgb(11 19 21 / 80%);
	left: 50%;
	top: 50%;
	opacity: 0;
	transform: scale(0) translate(-50%, -50%);
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.chef-item:hover .chef-overlay {
	opacity: 1;
	z-index: 1;
	transform: scale(1) translate(-50%, -50%);
}

.chef2-thumbnail img {
	border-radius: 100%;
}

.chefs1-social-media-overlay {
	background: rgb(11 19 21 / 80%);
	position: absolute;
	height: calc(100% - 60px);
	width: calc(100% - 60px);
	left: 50%;
	top: 50%;
	border-radius: 150px;
	right: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.4s ease-in-out 0s;
}

.chefspage2-overlay-content {
	position: absolute;
	width: 100%;
	top: 200%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease-in-out 0s;
}

.chef2-item:hover .chefs1-social-media-overlay,
.chef2-item:hover .chefspage2-overlay-content,
.chef-item:hover .chefspage2-overlay-content {
	opacity: 1;
	z-index: 1;
	top: 50%;
	transition: all 0.4s ease-in-out 0s;
}

.chef3-thumbnail .chefs3-social-media-overlay {
	background: var(--text-color);
}

.chef-social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 36px;
	position: absolute;
	width: 100%;
}

.chef-social-icons a.social-icon-link {
	background: var(--secondary-color);
	border-radius: 100%;
	padding: 8px;
	transform: scale(1);
	transition: all 0.3s linear;
}

.chef-social-icons a.social-icon-link img {
	max-width: 24px;
	width: 100%;
	height: 24px;
}

.chef-social-icons a.social-icon-link:hover {
	background: var(--primary-color);
	transform: scale(1.2);
}

.pagination .nav-links {
	display: flex;
	width: 100%;
	height: auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 60px;
}

.pagination .page-numbers {
	border: 2px solid #99A9AD;
	background: #0B1315;
	border-radius: 100%;
	padding: 19px 24px;
	color: #FFFFFF;
	font-weight: 400;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 0;
	transition: all 0.3s linear;
	font-family: 'Lexend', sans-serif;
	width: 62px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: #FFFFFF;
	border: 2px solid #FFFFFF;
	color: #0B1315;
}

.load-more-btn {
	margin: 0 auto;
	margin-top: 60px;
}

.load-more-btn button {
	cursor: pointer;
}

.chef-thumbnail .chefspage2-overlay-content .chef-social-links {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.chef-thumbnail .chefspage2-overlay-content .chef-social-links a {
	font-weight: 400;
	font-size: 24px;
	line-height: 48px;
	letter-spacing: 0%;
	text-align: center;
	vertical-align: middle;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-offset: 0%;
	text-decoration-thickness: 0%;
	color: #FFFFFF;
	transform: scale(1);
	transition: all 0.3s linear;
}

.chef-thumbnail .chefspage2-overlay-content .chef-social-links a:hover {
	color: #FFDE9F;
	transform: scale(1.2);
}

.pagination .page-numbers.dots {
	padding: 15px 19px 23px;
}

.chef-list-slider {
	display: block;
}

.chef-list-slider .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.chef-list-slider .slick-dots button {
	font-size: 0;
	line-height: 0;
	padding: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: #99A9AD;
	cursor: pointer;
	position: relative;
	border: 0;
	outline: 0;
	transition: all 0.3s linear;
}

.chef-list-slider .slick-dots button:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 2px solid transparent;
	border-radius: 100%;
	transition: all 0.3s linear;
}

.chef-list-slider .slick-dots button:hover:before,
.chef-list-slider .slick-dots .slick-active button:before {
	border: 2px solid #FFDE9F;
}

.chef-list-slider .slick-dots button:hover,
.chef-list-slider .slick-dots .slick-active button {
	background-color: #FFFFFF;
}

.chef-list-slider .chef2-item,
.chef-list-slider .chef-item {
	max-width: 390px;
	width: 100%;
	height: auto;
	padding: 0px 10px;
}

/* home page product slider  */

.custom-gallery-slider {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.custom-gallery-slider .gallery-item {
	max-width: 480px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0px 15px;
	margin: 0px auto;
	position: relative;
}

.custom-gallery-slider .gallery-item .item-image {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

.custom-gallery-slider .gallery-item .item-image img {
	max-width: 100%;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.custom-gallery-slider .gallery-item .image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 222, 159, 0.8);
	opacity: 0;
	visibility: hidden;
	transform: scale(0.98);
	transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
	z-index: 1;
}

.custom-gallery-slider .gallery-item .overlay-content,
.custom-gallery-slider .gallery-item .overlay-content a,
.custom-gallery-slider .gallery-item .insta-link-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	gap: 60px;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.5s ease;
}

.custom-gallery-slider .gallery-item .overlay-title {
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.insta-link-wrapper a {
	width: 140px;
	height: 140px;
	border-radius: 100%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-gallery-slider .gallery-item:hover .overlay-content,
.custom-gallery-slider .gallery-item:hover .overlay-content a,
.custom-gallery-slider .gallery-item:hover .insta-link-wrapper {
	opacity: 1;
	transform: scale(1);
}

.custom-gallery-slider .gallery-item:hover .image-overlay {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.custom-gallery-slider.slider-rtl {
	direction: rtl;
}

.custom-gallery-slider.slider-rtl .slick-slide {
	float: right !important;
}

/****************************** 13.Scroll Bottom to Top CSS ***********************/
.scroll-top {
	position: fixed;
	right: 25px;
	bottom: 25px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	border-radius: 50%;
	display: none;
	background: #FFDE9F;
	z-index: 9;
	animation: scroll_amini linear 2s infinite alternate;
	transition: all linear .3s;
}

.scroll-top img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.scroll-top.active {
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.scroll-top:hover {
	background: white;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
}

/****************************** 14.Coming soon Page CSS ***********************/
.container-soon {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 12px;
	position: relative;
	z-index: 5;
}

.coming-soon-lines {
	z-index: 1;
}

.coming-txt1 {
	color: #FFF;
	text-align: center;
	font-size: 96px;
	font-family: 'Elsie', sans-serif;
	font-weight: 400;
	line-height: normal;
	max-width: 1011px;
	margin: 40px auto 0 auto;
}

.coming-txt2 {
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-family: 'Lexend', sans-serif;
	margin-top: 20px;
	font-weight: 400;
	line-height: normal;
}

.coming-counter-txt1 {
	color: #FFDE9F;
	text-align: center;
	font-size: 96px;
	font-family: 'Lexend', sans-serif;
	font-weight: 700;
	line-height: 100px;
}

.coming-counter-txt2 {
	color: #FFF;
	text-align: center;
	font-size: 24px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	margin-top: 20px;
}

.coming-soon-counter-sec {
	margin-top: 100px;
	padding-bottom: 160px;
}

.coming-soon-logo {
	text-align: center;
}

.coming-soon-full-sec {
	position: relative;
}

#coming-soon-section {
	background-image: url(../images/coming-soon/bg-img.png);
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
	background-size: cover;
}

.coming-soon-overlay {
	position: absolute;
	background: rgb(11 19 21 / 40%);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.coming-soon-social-medial {
	display: flex;
	gap: 20px;
}

.coming-soon-copyright {
	color: #FFF;
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	line-height: 24px;
}

.coming-soon-copyright-full {
	display: flex;
	justify-content: space-between;
}

.coming-soon-counter-sec-full {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	padding-top: 80px;
	padding-bottom: 80px;
}

#timer span {
	display: block;
	color: #FFF;
	text-align: center;
	font-size: 24px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
}

.coming-soon div#timer {
	display: flex;
	line-height: 1;
	flex-wrap: wrap;
	font-size: 40px;
	gap: 30px;
}

.time-label {
	font-family: 'Lexend', sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: white;
	padding-top: 15px;
	text-align: center;
}

#days,
#hours,
#minutes,
#seconds {
	text-align: center;
	color: #ffde9f;
	font-family: 'Lexend', sans-serif;
	font-size: 96px;
	font-weight: 700;
	line-height: 100px;
}

.time-box {
	padding: 40px 40px 40px 40px;
	border: 2px solid #FFF;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.10) 100%);
	backdrop-filter: blur(3px);
}


/****************************** 15.Search Bar CSS ***********************/
.fixed-serach-icon {
	width: 50px;
	height: 50px;
	background: #FFDE9F;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	position: fixed;
	bottom: 25px;
	left: 25px;
	z-index: 99;
	cursor: pointer;
}

.search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
	overflow: hidden;
	transform: scale(0.95);
}

.search-popup .search-back-drop {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #171717;
	opacity: 0.95;
}

.search-popup .close-search {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 26px;
	color: #FFDE9F;
	z-index: 3;
	border-radius: 50%;
	background-color: transparent;
	transition: all 500ms ease;
	border: 0;
	padding: 0;
	width: 50px;
	height: 50px;
	border: 2px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.close-search img {
	width: 30px;
}

.close-search:hover {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	border: 2px solid #FFDE9F;
}

.search-popup .search-inner {
	position: relative;
	display: block;
	top: 40%;
	height: auto;
	z-index: 1;
	width: calc(100% - 60px);
	max-width: 800px;
	margin: auto;
	opacity: 0;
	transform: translateY(-50px);
	transition: all 300ms ease;
}

.search-popup .form-group {
	position: relative;
	display: flex;
	align-items: center;
}

.search-popup .form-group input[type=search] {
	position: relative;
	display: block;
	line-height: 20px;
	font-size: 16px;
	width: 100%;
	height: 50px;
	border: 1px solid #e1e6dc;
	padding: 15px 20px;
	color: black;
	background: #ffffff;
	border-radius: 5px;
	transition: all 500ms ease;
	font-family: 'Lexend', sans-serif;
}

.search-popup .form-group input[type=search]:focus-visible {
	outline-width: 0 !important;
}

#search-input {
	font-size: 16px;
	font-weight: 500;
	font-family: 'Lexend', sans-serif;
}

.search-popup .form-group button {
	position: absolute;
	right: 5px;
	top: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	background: #FFDE9F;
	transition: all 500ms ease;
	border: 0;
	cursor: pointer;
	padding: 9px 12px;
}

.search-popup .form-group button:hover {
	background: #FFDE9F;
	border: none;
}

.search-popup input::placeholder {
	color: #000;
}

.search-popup.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	border-radius: 0%;
}

.search-popup .search-inner.active {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 500ms;
}

.search-popup.active .search-inner {
	opacity: 1;
}

/****************************** 16.Search Item CSS ***********************/
.thumnail-img {
	width: 100%;
	border-radius: 15px;
}

.results {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 100px 15px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}

.sub-results {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 60px;
	max-width: 770px;
	width: 100%;
	height: auto;
}

.meta-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin: 20px 0;
}

.author,
.comments,
.date {
	color: var(--4, #99A9AD);
	font-family: 'Lexend', sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.search-item-name {
	padding-bottom: 10px;
}

.search-item-name a {
	transition: all 0.3s ease-in-out;
}

.search-item-name a:hover {
	color: #FFDE9F;
}

.search-item-descrip {
	color: #99A9AD;
	font-family: 'Lexend', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.search-item-readmore {
	color: var(--1, #FFDE9F) !important;
	font-family: 'Lexend', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding-top: 20px;
	display: block;
	transition: all 0.3s ease-in-out;
}

.search-item-readmore:hover {
	color: #FFF !important;
}

.search-item-readmore img {
	transition: all 0.3s ease-in-out;
}

.search-item-readmore:hover img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(149deg) brightness(101%) contrast(101%);
}

.nothing-found {
	color: var(--1, #FFDE9F);
	font-family: 'Lexend', sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding-bottom: 20px;
}

.not-found-text {
	font-family: 'Lexend', sans-serif;
	color: #FFF;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.results .pagination {
	margin: 0;
	padding: 0;
	justify-content: flex-start;
}

.results .results-sidebar {
	max-width: 370px;
	width: 100%;
	height: auto;
}

/****************************** 17.Blogs CSS ***********************/

.custom-blog-container {
	max-width: 1200px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 100px 15px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}

.sub-custom-blog-container {
	max-width: 770px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
}


.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 60px;
}

.blog-posts-grid .blog-post-card,
.blog-posts-grid .blog-post-card a {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.blog-posts-grid .blog-post-card a .post-thumbnail {
	max-width: 1170px;
	width: 100%;
	position: relative;
	aspect-ratio: 1170 / 750;
	overflow: hidden;
}

.blog-posts-grid .blog-post-card a .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.blog-posts-grid .blog-post-card .post-meta-info span {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0;
	color: #FFDE9F;
	margin: 20px 0px;
	padding: 0;
	display: block;
}

.blog-posts-grid .blog-post-card .post-info .post-title {
	font-family: "Elsie", sans-serif;
	font-weight: 400;
	font-size: 40px;
	line-height: 100%;
	letter-spacing: 0;
	color: #FFFFFF;
	margin: 20px 0px;
	padding: 0;
}

.blog-posts-grid .blog-post-card .post-info .post-excerpt p {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	color: #99A9AD;
}

.blog-posts-grid .blog-post-card .read-more-wrapper a span {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0;
	color: #FFFFFF;
}

.blog-posts-grid .blog-post-card .read-more-wrapper a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	transition: all 0.3s linear;
}

.blog-posts-grid .blog-post-card .read-more-wrapper {
	margin: 0;
	padding: 0;
	margin-top: 40px;
}

.blog-posts-grid .blog-post-card .read-more-wrapper a:hover span,
.blog-posts-grid .blog-post-card a:hover .post-info h2 {
	color: #FFDE9F;
}

.blog-posts-grid .blog-post-card .read-more-wrapper a:hover svg g path {
	stroke: #FFDE9F;
}

.custom-blog-container .blog-pagination {
	padding: 0;
	margin: 0;
	margin-top: 60px;
}

.custom-blog-container .blog-pagination .pagination {
	margin: 0;
	padding: 0;
}

.custom-blog-container .blog-pagination .nav-links {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 20px;
}

.custom-blog-container .blog-pagination-2 .nav-links {
	justify-content: flex-start;
}

.custom-blog-container .blog-pagination .page-numbers {
	padding: 18px 22px;
}

.custom-blog-container .blog-pagination .prev,
.custom-blog-container .blog-pagination .next {
	padding: 16px;
}

.custom-blog-container .blog-pagination .prev svg {
	transform: rotate(180deg);
}


.blog-sidebar-container {
	max-width: 370px;
	width: 100%;
	height: auto;
}

.custom-blog-container .blog-pagination .page-numbers:hover svg path {
	stroke: #0B1315;
}

.custom-blog-container.blogs-style-1 .sub-custom-blog-container {
	max-width: 100%;
}

.custom-blog-container.blogs-style-3,
.custom-blog-container.blogs-style-9,
.custom-blog-container.blogs-style-11 {
	flex-direction: row-reverse;
}

.custom-blog-container.blogs-style-4 .sub-custom-blog-container {
	max-width: 100%;
}

.custom-blog-container.blogs-style-4 .blog-post-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.custom-blog-container.blogs-style-4 .blog-post-card .blog-post-card-image {
	max-width: 100%;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	overflow: hidden;
}

.custom-blog-container.blogs-style-4 .blog-post-card .blog-post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
	will-change: transform;
}

.custom-blog-container.blogs-style-4 .blog-post-card .blog-post-card-image img:hover {
	transform: scale(1.05);
}

.custom-blog-container.blogs-style-4 .blog-post-card .blog-post-card-image .post-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.custom-blog-container.blogs-style-4 .blog-post-card .blog-post-card-content {
	max-width: 570px;
	width: 100%;
	height: auto;
}

.custom-blog-container.blogs-style-4 .blog-post-card .blog-post-card-content .post-title:hover {
	color: #FFDE9F;
}

.custom-blog-container.grid-blog-style .blog-posts-grid .blog-post-card .post-meta-info span {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.custom-blog-container.grid-blog-style .blog-posts-grid .blog-post-card .post-meta-info span span {
	color: #99A9AD;
	margin: 0;
	padding: 0;
}

.custom-blog-container.grid-blog-style .blog-posts-grid .blog-post-card .read-more-wrapper .read-more-button {
	border: 2px solid #FFDE9F;
	padding: 20px 32px;
	font-family: "Lexend", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0;
	text-align: center;
	color: #FFDE9F;
	width: fit-content;
	margin-right: auto;
	margin-left: 0;
}

.custom-blog-container.grid-blog-style .blog-posts-grid .blog-post-card .read-more-wrapper .read-more-button:hover {
	background: #FFDE9F;
	color: #0B1315;
}

.custom-blog-container.grid-blog-style .blog-posts-grid .blog-post-card .read-more-wrapper .read-more-button:hover span {
	color: #0B1315;
}

.custom-blog-container.grid-blog-style .sub-custom-blog-container {
	max-width: 100%;
	width: 100%;
}

.custom-blog-container.grid-blog-style .sub-custom-blog-container .blog-posts-grid {
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 60px 30px;
}

.custom-blog-container.grid-blog-style .blog-post-card a .post-thumbnail {
	aspect-ratio: 570 / 570;
}

.custom-blog-container.blogs-style-6 .sub-custom-blog-container .blog-posts-grid,
.custom-blog-container.blogs-style-7 .sub-custom-blog-container .blog-posts-grid {
	grid-template-columns: repeat(3, 1fr);
}

.custom-blog-container.blogs-style-6 .blog-posts-grid .blog-post-card .post-info .post-title,
.custom-blog-container.blogs-style-7 .blog-posts-grid .blog-post-card .post-info .post-title,
.custom-blog-container.blogs-style-8 .blog-posts-grid .blog-post-card .post-info .post-title,
.custom-blog-container.blogs-style-9 .blog-posts-grid .blog-post-card .post-info .post-title {
	font-size: 30px;
	line-height: normal;
}

.custom-blog-container.blogs-style-7 .blog-post-card {
	position: relative;
}

.custom-blog-container.blogs-style-7 .blog-post-card .post-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	z-index: 1;
}

.custom-blog-container.blogs-style-7 .blog-post-card .post-content-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(11, 19, 21, 0.00) 0%, #0B1315 100%);
	z-index: 1;
}

.custom-blog-container.blogs-style-7 .blog-post-card a .post-thumbnail {
	aspect-ratio: 370 / 550;
}

.custom-blog-container.blogs-style-10 .sub-custom-blog-container .blog-posts-grid,
.custom-blog-container.blogs-style-11 .sub-custom-blog-container .blog-posts-grid {
	grid-template-columns: repeat(2, 1fr);
}

.single-post .single-blog-header {
	background-image: url(../images/single-blogpage1/single-blogpage-header.png);
}

.post-container {
	width: 100%;
	height: auto;
}

.post-container h1.post-title {
	font-family: "Elsie", sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: normal;
	letter-spacing: 0;
	color: #FFFFFF;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

.post-container .post-meta-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 10px 20px;
	margin-bottom: 20px;
}

.post-container .post-meta-icons .meta-author,
.post-container .post-meta-icons .meta-comments,
.post-container .post-meta-icons .meta-date {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.post-container .post-meta-icons .meta-author img,
.post-container .post-meta-icons .meta-comments img,
.post-container .post-meta-icons .meta-date img {
	width: 24px;
	height: 24px;
}

.post-container .post-meta-icons .meta-author span,
.post-container .post-meta-icons .meta-comments span,
.post-container .post-meta-icons .meta-date span {
	font-family: Lexend;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0;
	color: #99A9AD;
}

.single-post-container {
	max-width: 1170px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.single-post-container.single_right_sidebar,
.single-post-container.single_left_sidebar {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 30px;
}

.single-post-container.single_right_sidebar .main-content,
.single-post-container.single_left_sidebar .main-content,
.single-post-container.single_no_sidebar .main-content {
	max-width: 770px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.single-post-container.single_right_sidebar .sidebar-right,
.single-post-container.single_left_sidebar .sidebar-left {
	max-width: 370px;
	width: 100%;
	height: auto;
}

.related-posts-section {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.section-header .label {
	font-family: "Lexend", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #FFDE9F;
}

.section-header h2 {
	margin: 20px 0px 40px;
	padding: 0;
}

.related-posts-section .related-posts-grid {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.related-posts-section .related-posts-grid .related-post-card {
	width: 100%;
	height: auto;
	transition: all 0.3s linear;
}

.related-posts-section .related-posts-grid .related-post-card .related-posts-grid-images {
	width: 100%;
	height: auto;
	overflow: hidden;
	transition: all 0.3s linear;
}

.related-posts-section .related-posts-grid .related-post-card .related-posts-grid-images img {
	aspect-ratio: 370 / 370;
	object-fit: cover;
	max-width: 100%;
	width: 100%;
	height: auto;
	transition: all 0.3s linear;
}

.related-posts-section .related-posts-grid .related-post-card .post-info p {
	font-family: "Lexend", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0;
	color: #FFDE9F;
	margin: 20px 0px;
}

.related-posts-section .related-posts-grid .related-post-card .post-info p span {
	color: #99A9AD;
}

.custom-blog-container.grid-blog-style .sub-custom-blog-container .blog-posts-grid .no-posts {
	font-family: "Elsie", sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: normal;
	letter-spacing: 0;
	vertical-align: middle;
	text-align: center;
	color: #FFFFFF;
	grid-column: 1 / -1;
	text-align: center;
	width: 100%
}

.related-posts-section .related-posts-grid .related-post-card:hover .related-posts-grid-images img {
	transform: scale(1.2);
}

.related-posts-section .related-posts-grid .related-post-card:hover .post-info h3 {
	color: #FFDE9F;
}


/****************************** 18.Widget CSS ***********************/

.widget_search {
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}

.widget_search form.search-form {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border: 1px solid #FFDE9F;
	height: 60px;
}

.widget_search form.search-form input.search-field {
	background: transparent;
	border: 0;
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0;
	color: #FFFFFF;
	width: 100%;
}


.widget_search form.search-form input.search-field:placeholder {
	color: #99A9AD;
}

.widget_search form.search-form input.search-field:focus,
.widget_search form.search-form input.search-field:focus-visible {
	border: 0;
	outline: 0;
}

.widget_search form.search-form input.search-field::-webkit-search-cancel-button {
	color: #FFFFFF;
}

.widget_search form.search-form label {
	max-width: 100%;
	width: 100%;
	height: 100%;
	padding: 18px 0px 18px 20px;
}

.widget_search form.search-form .search-submit-btn {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	cursor: pointer;
}

.widget_search form.search-form .search-submit-btn:hover {
	background: #FFDE9F;
}

.popular-feeds-list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 20px;
	margin: 40px 0px;
}

.popular-feeds-list .popular-feed-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
}

.popular-feeds-list .popular-feed-item .feed-thumbnail {
	max-width: 100px;
	width: 100%;
	height: 75px;
}

.popular-feeds-list .popular-feed-item .feed-thumbnail a,
.popular-feeds-list .popular-feed-item .feed-thumbnail a img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.popular-feeds-list .popular-feed-item .feed-thumbnail a img {
	object-fit: cover;
	height: 100%;
}

.popular-feeds-list .popular-feed-item .feed-content .feed-title {
	font-family: "Elsie", sans-serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.popular-feeds-list .popular-feed-item .feed-content .feed-date {
	font-family: "Lexend", sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
	color: #FFDE9F;
}

.popular-feeds-list .popular-feed-item:hover .feed-content .feed-title {
	color: #FFDE9F;
}

.widget_categories.widget .widget-title {
	border-bottom: 0px;
}

.widget_categories ul li a,
.widget_categories ul li {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	color: #FFFFFF;
}

.widget_categories ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.widget_categories ul li:not(:last-child) {
	border-bottom: 1px solid rgb(153 169 173 / 10%);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.widget_categories ul li:hover,
.widget_categories ul li:hover a {
	color: #FFDE9F;
}

.widget_categories {
	margin: 40px 0;
}

.widget_tag_cloud {
	margin: 40px 0px;
	margin-bottom: 0;
}

.widget_tag_cloud .tagcloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}

.widget_tag_cloud .tagcloud a {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px !important;
	line-height: 24px;
	letter-spacing: 0;
	text-align: center;
	color: #FFFFFF;
	background: rgb(153 169 173 / 20%);
	padding: 8px;
	margin: 0;
}

.widget_tag_cloud .tagcloud a:hover {
	background: #FFDE9F;
	color: #0B1315;
}

.results .results-sidebar .tg-container .tg-column-wrapper .tg-column .collection-thumb-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	max-width: 100%;
}

.results .results-sidebar .tg-container .tg-column-wrapper .tg-column a {
	width: 100%;
	max-width: 100%;
}

.autoplay-slider {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
}

.autoplay-slider .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column;
	width: 20px;
}

.autoplay-slider .slick-list {
	max-width: 300px;
	width: 100%;
	height: auto;
}

.autoplay-slider .slick-dots button {
	padding: 0;
	font-size: 0;
	line-height: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: #99A9AD;
	border: 0;
	cursor: pointer;
	position: relative;
}

.autoplay-slider .slick-dots button:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 2px solid transparent;
	border-radius: 100%;
	transition: all 0.3s linear;
}

.autoplay-slider .slick-dots button:hover:before,
.autoplay-slider .slick-dots .slick-active button:before {
	border: 2px solid #FFDE9F;
}

.autoplay-slider .slick-dots button:hover,
.autoplay-slider .slick-dots .slick-active button {
	background-color: #FFFFFF;
}

.bermiz-about-widget p {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	color: #99A9AD;
	margin: 20px 0px;
}

.bermiz-about-widget .bermiz-btn {
	font-family: "Lexend", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0;
	color: #0B1315;
	background-color: #FFDE9F;
	border: 2px solid #FFDE9F;
	padding: 20px 32px;
	display: block;
	width: fit-content;
	cursor: pointer;
	transition: all 0.3s linear;
}

.bermiz-about-widget .bermiz-btn:hover {
	background-color: transparent;
	color: #FFFFFF;
}


.widget_bermiz_about_widget {
	margin-bottom: 40px;
}


/****************************** 19.Commment Box CSS ***********************/


.comment_box {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.comment_box .comments-title {
	margin-bottom: 40px;
}

.comment_box .comment-list li .comment-avatar img {
	max-width: 100px;
	width: 100%;
	height: 100px;
	border-radius: 100%;
}

.comment_box .comment-list li .comment-body {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: flex-start;
}

.comment_box .comment-list li .comment-body .comment-content {
	max-width: calc(100% - 130px);
	width: 100%;
	height: auto;
}

.comment-list,
.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list>li.single-comment {
	border-bottom: 2px solid rgb(153 169 173 / 40%);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.comment-list>li.single-comment:last-child {
	border-bottom: 0 solid rgb(153 169 173 / 40%);
	padding-bottom: 0;
	margin-bottom: 0;
}


.comment-list>li>ol>li.single-comment {
	border-top: 2px solid rgb(153 169 173 / 40%);
	padding-top: 20px;
	margin-top: 20px;
	margin-left: 130px;
}

.comment_box .comment-list li,
.comment_box .comment-list li .comment-meta h3 {
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	vertical-align: middle;
	letter-spacing: 0;
	margin-bottom: 18px;
	color: #FFFFFF;
}


.comment_box .comment-list li .comment-text {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	margin-bottom: 20px;
	color: #99A9AD;
}

.comment_box .comment-list li .comment-reply span {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #99A9AD;
}

.comment_box .comment-list li .comment-reply .comment-reply-link span {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #FFDE9F;
}


.comment-form-wrapper .leave-comment-title {
	margin-bottom: 20px;
}

.comment-form-wrapper .comment-note {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #99A9AD;
	margin: 20px 0px 10px;
}

.comment-form-wrapper .comment-respond form input,
.comment-form-wrapper .comment-respond form textarea {
	border: 0;
	background-color: transparent;
	outline: 0;
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #FFFFFF;
}

.comment-form-wrapper .comment-respond form input::placeholder,
.comment-form-wrapper .comment-respond form textarea::placeholder {
	color: #99A9AD;
}

.comment-form-wrapper .comment-respond form#commentform {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0;
}

.comment-form-wrapper .comment-respond form .form-group {
	border-bottom: 2px solid rgb(153, 169, 173, 40%);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 15px;
	padding-bottom: 15px;
	margin-bottom: 30px;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.comment-form-wrapper .comment-respond form textarea {
	width: 100%;
	height: 50px;
}

.comment-form-wrapper .comment-respond form .form-group.half {
	max-width: 370px;
	width: 100%;
	height: auto;
}

.comment-form-wrapper .comment-respond form .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: auto;
	gap: 15px;
	margin-bottom: 30px;
}

.comment-form-wrapper .comment-respond form .comment-form-cookies-consent input {
	border: 2px solid #99A9AD;
	border-radius: 2px;
	max-width: 16px;
	width: 100%;
	height: 16px;
}

.comment-form-wrapper .comment-respond form .comment-form-captcha {
	width: 100%;
	height: auto;
	line-height: normal;
}

.comment-form-wrapper .comment-respond form input#captcha_code {
	border: 2px solid rgb(153, 169, 173, 40%);
	padding: 15px;
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #FFFFFF;
	margin: 10px 0px;
	max-width: 100%;
	width: 20%;
	margin-right: auto;
	margin-left: 30px;
}

.comment-form-wrapper .comment-respond form .form-submit {
	width: 100%;
	display: block;
	margin-top: 60px;
}

.comment-form-wrapper .comment-respond form .form-submit input {
	background-color: #FFDE9F;
	border: 1px solid #FFDE9F;
	color: #0B1315;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	font-size: 18px;
	letter-spacing: 0;
	line-height: normal;
	cursor: pointer;
}

.comment-form-wrapper .comment-respond form .form-submit input:hover {
	background-color: transparent;
	color: #FFFFFF;
}

.comment-form-wrapper .comment-respond form img {
	margin: 10px 0px;
	max-width: 100%;
	height: 50px;
	width: 100%;
	object-fit: contain;
	object-position: left
}

.comment-form-wrapper .logged-in-as {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #99A9AD;
	margin-bottom: 10px;
}

.comment-form-wrapper .logged-in-as a {
	color: #FFDE9F;
	text-decoration: underline;
}

.comment-form-wrapper .comment-reply-title {
	font-family: "Elsie", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #FFFFFF;
	margin-bottom: 20px;
}

.comment-form-wrapper .comment-reply-title a {
	color: #FFDE9F;
}