:root {
	--nav-height: 60px;
	--nav-background: #343a40;
	--dropdown-height: 40px;
	--nav-link-color: rgba(255, 255, 255, 0.9);
	--dropdown-color: rgba(0, 0, 0, 0.9);
	--black: #fff;
	--btn-search: #2185d0;
	--btn-search-hover: #1678c2;
}
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "queering";
	padding: 0;
	background: #000000;
	/* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}
/* fonts family for the web */
@font-face {
	font-family: "GeneralSans-Bold";
	src: url("../fonts/General-sans/GeneralSans-Bold.otf");
}
@font-face {
	font-family: "GeneralSans-BoldItalic";
	src: url("../fonts/General-sans/GeneralSans-BoldItalic.otf");
}
@font-face {
	font-family: "GeneralSans-Extralight";
	src: url("../fonts/General-sans/GeneralSans-Extralight.otf");
}
@font-face {
	font-family: "GeneralSans-ExtralightItalic";
	src: url("../fonts/General-sans/GeneralSans-ExtralightItalic.otf");
}
@font-face {
	font-family: "GeneralSans-Italic";
	src: url("../fonts/General-sans/GeneralSans-Italic.otf");
}
@font-face {
	font-family: "GeneralSans-Light";
	src: url("../fonts/General-sans/GeneralSans-Light.otf");
}
@font-face {
	font-family: "GeneralSans-LightItalic";
	src: url("../fonts/General-sans/GeneralSans-LightItalic.otf");
}
@font-face {
	font-family: "GeneralSans-Medium";
	src: url("../fonts/General-sans/GeneralSans-Medium.otf");
}
@font-face {
	font-family: "GeneralSans-MediumItalic";
	src: url("../fonts/General-sans/GeneralSans-MediumItalic.otf");
}
@font-face {
	font-family: "GeneralSans-Regular";
	src: url("../fonts/General-sans/GeneralSans-Regular.otf");
}
@font-face {
	font-family: "GeneralSans-Semibold";
	src: url("../fonts/General-sans/GeneralSans-Semibold.otf");
}
@font-face {
	font-family: "GeneralSans-SemiboldItalic";
	src: url("../fonts/General-sans/GeneralSans-SemiboldItalic.otf");
}
@font-face {
	font-family: "queering";
	src: url("../fonts/Queering/queering.otf");
}

/* fonts family for the web */
/************************* 
    
    global styles

*************************/

.btn {
	padding: 0.5rem 1rem;
	border-radius: 3px;
	border: none;
	outline: none;
	cursor: pointer;
}

.btn-search {
	background-color: var(--btn-search);
	color: #f3f3f3;
}

.btn-search:hover {
	background-color: var(--btn-search-hover);
}
/************************* 
    
    navbar

*************************/
.navbar {
	/* margin-top: 4%; */
	padding: 2% 0% 0% 0%;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: space-between;
	/* background-color: var(--nav-background); */
	/* padding: 0.5rem 1rem; */
}

.logo {
	/* position: absolute;
	margin-right: 1rem; */
}

.logo a {
	text-decoration: none;
	color: var(--nav-link-color);
}

.navbar-content {
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: space-between; */
	width: 100%;
	/* border: 1px solid red; */
	height: auto;
}

.navbar-list {
	display: flex;
	list-style-type: none;
	justify-content: center;
	padding: 0;
	margin: 0px;
}

.nav-item {
	padding: 0rem 1rem;
}

.nav-link {
	padding: 0rem 0.7rem;
	color: #fff;
	font-family: "GeneralSans-Regular";
	text-decoration: none;
}

/************************* 
    
    navbar right

*************************/
.search-input {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 3px;
}

/************************* 
    
    dropdown

*************************/

.dropdown {
	position: relative;
}

.dropdown-btn {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
}

.dropdown-list {
	display: none;
	position: absolute;
	top: 100%;
	background-color: #fff;
	border-radius: 3px;
	width: clamp(160px, 120px, 220px);
	padding: 0.5rem 0;
	border: 1px solid #ccc;
	box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
}

.dropdown-list.show {
	display: block;
}

.dropdown-list a {
	text-decoration: none;
	display: block;

	font-family: "GeneralSans-Regular";
	padding: 0.5rem 1rem;
}

.dropdown-list a:hover {
	font-family: "GeneralSans-Regular";
	background-color: #dededf;
}

.dropdown-inner {
	left: 100%;
	top: 0;
}

.dropdown .dropdown-list .dropdown:hover {
	font-family: "GeneralSans-Regular";
	background-color: #dededf;
}

.dropdown .dropdown-list .dropdown:hover > .dropdown-list {
	display: block;
}

/************************* 
    
    responsive design 

*************************/

/* showcase */

/*========================= start home sec============= */
/* =========================================================== */
/* .banner-home {
	background-image: url("../images/banner-bg.png");
	height: 112vh;
	max-width: 100%;
	background-repeat: no-repeat;
} */
.banner-bg {
	position: absolute;
	width: 105%;
	height: 100vh;
	object-fit: contain;
}
.head-btn {
}
.head-inner {
	min-width: 198px;
	min-height: 56px;
	color: #fff;
	font-family: "GeneralSans-Regular";
	border: none;
	background: transparent;
	z-index: 2;
	position: relative;
}
.head-inner::before {
	content: "";
	position: absolute;
	min-height: 56px;
	min-width: 56px;
	display: flex;
	border-radius: 50%;
	z-index: -1;
	top: 0px;
	right: 0px;
	align-items: center;
	background: #a56b0e;
}
.right {
	font-size: 14px;
	font-family: "GeneralSans-Italic";
	margin-left: 5px;
}
.flex-center-vertically {
	position: relative;
	display: flex;
	justify-content: end;
	flex-direction: column;
	height: 80vh;
	z-index: 4;
}
.flex-center-vertically h6 {
	font-family: "GeneralSans-Regular";
	font-size: 24px;
	color: #ffffff;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 4px;
	/* letter-spacing: 1px; */
}

.flex-center-vertically h1 {
	font-size: 130px;
	color: #ffffff;
	letter-spacing: -0px;
	line-height: 113px;
	font-family: "Queering";
}
.flex-center-vertically h1 span {
	color: #874b0d;
	font-family: "Queering";
}
.flex-center-vertically p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 17px;
	letter-spacing: -0px;
	font-family: "GeneralSans-Regular";
}
.head-outer {
	min-width: 140px;
	min-height: 56px;
	color: #fff;
	text-align: start;
	padding: 0px;
	margin: 0px;
	font-family: "GeneralSans-Regular";
	border: none;
	background: transparent;
	z-index: 2;
	position: relative;
}
.head-outer::before {
	content: "";
	position: absolute;
	min-height: 56px;
	min-width: 56px;
	display: flex;
	border-radius: 50%;
	z-index: -1;
	top: 0px;
	right: 0px;
	align-items: center;
	background: #a56b0e;
}
/*========================= end home sec============= */
/* =========================================================== */
/*========================= start about sec============= */
/* =========================================================== */
.about-sec {
	padding: 7% 0% 10%;
}
.about-sec .about-box {
	display: flex;
	align-items: center;
}
.about-sec .about-box .bout-sec {
	max-width: 100%;
	height: auto;
	padding-right: 20px;
}
.about-sec .about-box .about-secound {
	max-width: 100%;
	height: auto;
	padding-left: 10px;
	transform: translateY(30%);
}
.about-text {
	/* padding-left: 10%; */
	max-width: 100%;
	transform: translateY(21%);
	height: auto;
}
.about-text h6 {
	text-transform: capitalize;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 3%;
	font-size: 24px;
	letter-spacing: 1.7px;
	font-family: "GeneralSans-Regular";
}
.about-text h2 {
	font-size: 85px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.8px;
	line-height: 75px;
	font-family: "Queering";
}
.about-text p {
	color: #ffffff;
	line-height: 1.3;
	margin-top: 10px;
	font-size: 15px;
	letter-spacing: -0px;
	font-family: "GeneralSans-Regular";
}

/*========================= end about sec============= */
/* =========================================================== */

/*========================= service start sec============= */
/* =========================================================== */
.service-sec {
	padding: 3% 0% 8%;
}
.services-box h6 {
	text-transform: capitalize;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 3%;
	font-size: 24px;
	letter-spacing: 1.7px;
	font-family: "GeneralSans-Regular";
}
.services-box h2 {
	font-size: 85px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.8px;
	line-height: 80px;
	font-family: "Queering";
}
.services-text p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 15px;
	letter-spacing: -0px;
	font-family: "GeneralSans-Regular";
}
.head-services {
	min-width: 175px;
	min-height: 56px;
	color: #fff;
	text-align: start;
	font-family: "GeneralSans-Regular";
	border: none;
	background: transparent;
	z-index: 2;
	position: relative;
	margin-top: 5%;
}
.head-services::before {
	content: "";
	position: absolute;
	min-height: 56px;
	min-width: 56px;
	display: flex;
	/* text-align: start; */
	border-radius: 50%;
	z-index: -1;
	top: 0px;
	right: 0px;
	align-items: center;
	background: #a56b0e;
}
.services-card {
	padding: 7% 0% 0% 0%;
}
.services-img {
	width: 100%;
	margin: 0px 0px 10px 0px;
	position: relative;
	/* padding: 10px; */
}
.services-img:hover {
}
.services-wrap {
	position: absolute;
	text-align: center;
	bottom: 8%;
	width: 100%;
}
.services-wrap h3 {
	font-size: 50px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.8px;
	line-height: 75px;
	font-family: "Queering";
}
.services-behind {
	position: relative;
}
/* .services-behind .active .place-servise {
	display: block;
} */
.services-behind:hover .place-servise {
	display: block;
	transition: 0.3s ease-in-out;
}
.services-behind:hover .services-wrap {
	display: none;
}
/* .services-behind:hover .place-servise {
	display: block;
} */
.services-behind :hover .place-servise {
	display: block;
}
.place-servise {
	padding: 10px;
	display: none;
	position: absolute;
	cursor: pointer;
	top: 0px;
	background-image: linear-gradient(45deg, rgb(0, 0, 0), transparent);
	text-align: center;
	width: 100%;
	transition: 0.3s ease-in-out;
	height: 100%;
}
.place-servise .place-btn {
	background: transparent;
	color: #fff;
	font-family: "GeneralSans-Regular";
	border: none;
}
.place-wrap-two {
	padding: 77px 0px 0px;
}
.place-wrap-two h4 {
	font-size: 50px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.8px;
	line-height: 75px;
	font-family: "Queering";
}
.place-wrap-two {
	color: #ffffff;
	line-height: 1.3;
	margin-top: 10px;
	font-size: 15px;
	letter-spacing: -0px;
	font-family: "GeneralSans-Regular";
}
/* .services-behind .plac-servise:hover {
	display: block;
} */
/*========================= end service sec============= */
/* =========================================================== */
/*========================= start testimonials sec============= */
/* =========================================================== */
.testimonials-bg {
	/* background: #9e630e; */
	background-image: url("../images/Rectangle\ 14.png");
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 40px;
	padding: 5% 0%;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	width: 100%;
	height: auto;
}
.tastimonials-box {
}
.tastimonials-box h6 {
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 2%;
	font-size: 20px;
	letter-spacing: 4.7px;
	font-family: "GeneralSans-Regular";
}
.tastimonials-box h2 {
	font-size: 85px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.6px;
	line-height: 75px;
	font-family: "Queering";
}
.tastimonials-box p {
	margin-top: 5%;
	color: #ffffff;
	line-height: 1.3;
	font-size: 15px;
	letter-spacing: -0px;
	font-family: "GeneralSans-Regular";
}
.tastimonials-text {
}
.clinte-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.clinte-euro {
	display: flex;
	align-items: center;
}
.clinte-img {
}
.clinte-text {
	margin-left: 45px;
}
.clinte-text h3 {
	font-size: 45px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 1px;
	line-height: 30px;
	font-family: "Queering";
}
.clinte-text p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 17px;
	letter-spacing: 1px;
	font-family: "GeneralSans-Regular";
}
.month p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 14px;
	letter-spacing: -0px;
	font-family: "GeneralSans-Regular";
}
.code-border {
	margin: 7% 0% 0% 0%;
}

.code-border p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 16px;
	margin-top: 3%;
	letter-spacing: 0px;
	font-family: "GeneralSans-Regular";
}
.codes-end {
	display: flex;
	justify-content: end;
}
.codes {
	display: flex;
	justify-content: start;
}
/* .fa-arrow-right:before {
	content: "\f061";
	position: absolute;
	left: -137%;
} */
button.slick-arrow {
	background: transparent;
	border: 0px;
}
.fa-arrow-right:before {
	content: "\f061";
	position: absolute;
	top: 75%;
	left: -119%;
	line-height: 2.5;
	min-width: 60px;
	height: 60px;
	color: #fff;
	border-radius: 30px;
	text-align: center;
	border: 1px solid;
}

.fa-arrow-left:before {
	content: "\f060";
	position: absolute;
	left: -136%;
	line-height: 2.5;
	min-width: 60px;
	height: 60px;
	top: 75%;
	color: #fff;
	border-radius: 30px;
	text-align: center;
	border: 1px solid;
}
.young-man{
	width: 30%;border-radius: 22px;height: 120px;object-fit: cover;
}

/*========================= end tesimonials sec============= */
/* =========================================================== */
/*========================= faqs about sec============= */
/* =========================================================== */
.faqs {
	padding: 5% 0% 2%;
}
.accordion-item {
	border-bottom: 1px solid #ffffff;
	margin-bottom: 15px;
	border-radius: 0px;
}
.accordion-item .accordion-header {
	background: 0 0;
	border: 0;
	height: 60px;
	display: flex;
}
.accordion-item .accordion-header button.accordion-button h5 {
	color: #ffffff;
	font-size: 20px;
	line-height: 75px;
	letter-spacing: 0px;
	font-family: "GeneralSans-Medium";
}
.accordion-item .accordion-header {
	background: 0 0;
	border: 0;
	height: 80px;
	display: flex;
}
.accordion-item .accordion-header button.accordion-button {
	padding: 0 0px;
	background: 0 0;
	border: 0;
	box-shadow: none;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.accordion-button:not(.collapsed) {
	/* color: #0c63e4; */
	/* background-color: #e7f1ff;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); */
}
.accordion-item .accordion-body {
	padding: 0 0px 8px;
	color: #ffffff;
	font-size: 17px;
	top: -17px;
	position: relative;
	/* font-weight: 600; */
	font-family: "GeneralSans-Regular";
}
.accordion-button:not(.collapsed)::after {
	background-image: none !important	;
	transform: rotate(-180deg);
}
.accordion-item .accordion-header button.accordion-button i {
	color: #ffffff;
	margin-top: -10px;
}

.accordion-item
	.accordion-header
	button.accordion-button[aria-expanded="true"]
	i:before {
	content: "\f068";
}

.accordion-item
	.accordion-header
	button.accordion-button[aria-expanded="true"]
	i:before {
	content: "\f068";
}
.fa-plus:before {
	content: "\f067";
}
.accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	position: absolute;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: none !important;
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform 0.2s ease-in-out;
}
.accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	position: absolute;
	content: "";
	background-image: none !important;
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform 0.2s ease-in-out;
}
.accordion-item {
	background-color: #000;
	border-bottom: 1px solid #fff;
}
.faqs-text {
	padding: 10% 0%;
}
.faqs-text h6 {
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 2%;
	font-size: 20px;
	letter-spacing: 4.7px;
	font-family: "GeneralSans-Regular";
}
.faqs-text h2 {
	font-size: 90px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.6px;
	line-height: 75px;
	font-family: "Queering";
}
.faqs-text p {
	color: #ffffff;
	line-height: 1.3;
	margin-top: 3%;
	font-size: 17px;
	letter-spacing: 1px;
	font-family: "GeneralSans-Regular";
}
.head-faqs {
	min-width: 145px;
	min-height: 56px;
	color: #fff;
	text-align: start;
	font-family: "GeneralSans-Regular";
	border: none;
	background: transparent;
	z-index: 2;
	position: relative;
	margin-top: 5%;
}
.head-faqs::before {
	content: "";
	position: absolute;
	min-height: 56px;
	min-width: 56px;
	display: flex;
	/* text-align: start; */
	border-radius: 50%;
	z-index: -1;
	top: 0px;
	right: 0px;
	align-items: center;
	background: #a56b0e;
}
/*========================= end faqs sec============= */
/* =========================================================== */
/*========================= start gallery sec============= */
/* =========================================================== */
.gellery {
	padding: 0% 0% 0% 0%;
}
.geller-img {
	max-width: 99%;
}
.gellery-box h6 {
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 2%;
	font-size: 20px;
	letter-spacing: 4.7px;
	font-family: "GeneralSans-Regular";
}
.gellery-box h2 {
	font-size: 90px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.6px;
	line-height: 75px;
	font-family: "Queering";
}
.gellery-text p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 17px;
	letter-spacing: 1px;
	font-family: "GeneralSans-Regular";
}
.gallery-img-box {
	padding: 0% 0% 0% 0%;
}
.gellery-box {
	padding: 6% 0%;
}
.gellery-text {
	padding: 6% 0%;
}
.slider-pic {
	display: flex;
	margin-top: 3%;
}
.slider-pic .rectangle-20 {
	margin: 0px 20px 0px 0px;
}
/*========================= end gallery sec============= */
/* =========================================================== */
/*========================= start team sec============= */
/* =========================================================== */
.team {
	padding: 8% 0% 5% 0%;
}
.team-box h6 {
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 2%;
	font-size: 20px;
	letter-spacing: 4.7px;
	font-family: "GeneralSans-Regular";
}
.team-box h2 {
	font-size: 90px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.6px;
	line-height: 75px;
	font-family: "Queering";
}
.team-text p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 17px;
	letter-spacing: 0px;
	font-family: "GeneralSans-Regular";
}
.gallery-img-box {
	padding: 0% 0% 0% 0%;
	margin: 5px;
}
.team-pic {
	position: relative;
	padding: 20% 0% 20% 0%;
	max-width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
}
.teamed-img {
	width: 100%;
	height:300px;object-fit: cover;
	border-radius: 19px;
}
.team-about {
	position: absolute;
	width: 90%;
	height: auto;
	display: flex;
	padding: 12px 0px;
	justify-content: center;
	flex-direction: column;
	bottom: -13px;
	align-items: center;
	margin: 0 auto;
	background-color: #874b0d;
	border-radius: 22px;
}
.team-about h3 {
	font-size: 55px;
	color: #ffffff;
	letter-spacing: 1.2px;
	font-family: "Queering";
}
.team-about p {
	color: #ffffff;
	line-height: 1.3;
	margin-top: 0%;
	top: -13px;
	position: relative;
	font-size: 20px;
	letter-spacing: 0px;
	font-family: "GeneralSans-Regular";
}
.contact .php-email-form .form-group .form-control {
	max-width: 100%;
	border-radius: 12px;
	min-height: 45px;
	background: #000000;
	border: 1px solid #f2f2f2;
	padding: 16px;
	font-family: "GeneralSans-Regular";
}
.contact .php-email-form .form-group {
	margin: 0px 0px 20px 0px;
}
.contact-us {
	min-width: 105px;
	min-height: 55px;
	color: #fff;
	text-align: start;
	font-family: "GeneralSans-Regular";
	border: none;
	background: transparent;
	z-index: 2;
	position: relative;
	margin-top: 1%;
}
.contact-us::before {
	content: "";
	position: absolute;
	min-height: 56px;
	min-width: 56px;
	display: flex;
	/* text-align: start; */
	border-radius: 50%;
	z-index: -1;
	top: 0px;
	right: 0px;
	align-items: center;
	background: #a56b0e;
}
.contact-box h6 {
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 2%;
	font-size: 20px;
	letter-spacing: 4.7px;
	font-family: "GeneralSans-Regular";
}
.contact-box h2 {
	font-size: 90px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.6px;
	line-height: 75px;
	font-family: "Queering";
}
.contact-box p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 17px;
	letter-spacing: 0px;
	font-family: "GeneralSans-Regular";
}
.contact {
	padding: 2% 0% 3% 0%;
} /*========================= end team sec============= */
/* =========================================================== */
/* ==================footer=================== */
.footer {
	padding: 4% 0% 2% 0%;
}
.footer-bg {
	background: #2d2d2d;
	max-width: 100%;
	height: auto;
	padding: 4% 0% 3% 0%;
	border-radius: 64px;
}
.footer-logo {
	transform: translateY(30%);
}
.footer-logo p {
	color: #ffffff;
	line-height: 1.3;
	font-size: 14px;
	letter-spacing: 0px;
	margin-top: 7%;
	font-family: "GeneralSans-Regular";
}
.footer-text h2 {
	font-size: 60px;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.6px;
	line-height: 75px;
	font-family: "Queering";
}
.email-submit {
	width: 95%;
	border-radius: 12px;
	height: auto;
	/* min-height: 25px; */
	background: #2d2d2d;
	border: 1px solid #7f7c7c;
	padding: 12px 16px;
	font-family: "GeneralSans-Regular";
}
.wraped {
	display: flex;
	position: relative;
}
.yared {
	display: flex;
	align-items: center;
}
.yared::before {
	content: "";
	position: absolute;
	width: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	background: #874b0d;
	height: 56px;
	right: 4px;
}
.yared span {
	position: relative;
	z-index: 2;
	left: -14px;
}
.footer-link {
	display: flex;
}
.footer-link ul {
	margin-top: 30px;
	padding-left: 0px !important;
}
.footer-link ul li {
	text-decoration: none;
	cursor: pointer;
	list-style: none;
	color: #ffffff;
	display: inline-block;
	padding: 0px 25px 0px 0px;
	font-size: 17px;
	font-family: "GeneralSans-Regular";
}
.footer-link ul li a {
	color: #ffffff;
	font-family: "GeneralSans-Regular";
}
.footer-social-media {
}
.footer-social-media ul {
	padding-left: 0px !important;
	margin-top: 40px;
}
.footer-social-media ul li {
	background: #874b0d;
	display: inline-block;
	color: #ffffff;
	padding: 6px 15px;
	margin-right: 25px;
	align-items: center;
	border-radius: 6px;
}
.footer-social-media ul li a {
	color: #ffffff;
} /* =================footer end================== */
.footer-social-media ul li a span {
	font-size: 20px;
}
.gallery-item {
	margin-bottom: 15px;
}
@media (max-width: 1800px) {
	.flex-center-vertically h1 {
		font-size: 120px;
		line-height: 90px;
	}
}
@media (max-width: 1700px) {
	.contact-box h2 {
		font-size: 62px;

		line-height: 54px;
	}.team-about h3 {
		font-size: 45px;
	}
	
	.flex-center-vertically {
		height: 75vh;
	}
	.flex-center-vertically h1 {
		font-size: 105px;
		line-height: 90px;
	}
	.flex-center-vertically p {
		font-size: 14px;
	}
	.head-outer {
		font-size: 15px;
	}
	.about-sec .about-box .bout-sec {
		width: 52%;
		height: auto;
		padding-right: 20px;
	}
	.place-wrap-two h4 {
		font-size: 41px;
		line-height: 62px;
	}
	.place-wrap-two p {
		font-size: 13px;
	}
	.place-wrap-two {
		padding: 50px 0px 0px;
	}
	.tastimonials-box {
		padding-top: 7%;
	}
	.tastimonials-box p {
		font-size: 16px;
	}
	.tastimonials-box h2 {
		font-size: 75px;
		line-height: 64px;
	}
}

@media (max-width: 1440px) {
	.flex-center-vertically h1 {
		font-size: 90px;
		line-height: 72px;
	}
	.place-wrap-two {
		padding: 10px 0px 0px;
	}
	.footer-link ul li {
		padding: 0px 16px 0px 0px;
		font-size: 14px;
	}
	.place-wrap-two h4 {
		font-size: 31px;
		line-height: 35px;
	}
	.place-wrap-two p {
		font-size: 11px;
	}
	.flex-center-vertically h6 {
		font-size: 17px;
	}
	.flex-center-vertically p {
		font-size: 12px;
	}
	.flex-center-vertically {
		height: 70vh;
	}
	.about-text p {
		font-size: 11px;
	}
	.about-text h2 {
		font-size: 71px;
		line-height: 61px;
	}
	.about-sec .about-box .about-secound {
		max-width: 44%;
		height: auto;
		padding-left: 10px;
		transform: translateY(30%);
	}
	.services-box h2 {
		font-size: 70px;

		line-height: 60px;
	}
	.services-box h6 {
		line-height: 1.3;
		font-size: 18px;
	}
	.services-text p {
		font-size: 12px;
	}
	.head-services {
		font-size: 15px;
	}
	.code-border p {
		color: #ffffff;
		line-height: 1.3;
		font-size: 13px;
		margin-top: 3%;
		letter-spacing: 0px;
		font-family: "GeneralSans-Regular";
	}
}
@media (max-width: 1440px) {
	.faqs-text h2 {
		font-size: 77px;

		line-height: 66px;
	}
	.flex-center-vertically h1 {
		font-size: 89px;
		line-height: 72px;
	}
	.gellery-text p {
		font-size: 11px;
	}
	.accordion-item .accordion-body {
		padding: 0 0px 8px;
		color: #ffffff;
		font-size: 12px;
		top: -17px;
		position: relative;
		/* font-weight: 600; */
		font-family: "GeneralSans-Regular";
	}
	.flex-center-vertically {
		height: 80vh;
	}
	.head-inner {
		font-size: 14px;
	}
	.accordion-item {
		border-bottom: 1px solid #ffffff;
		margin-bottom: 1px;
		border-radius: 0px;
	}
	.head-outer::before {
		min-height: 51px;
		min-width: 50px;
	}
	.logo-head {
		max-width: 80%;
	}
	.head-outer {
		min-width: 130px;
		min-height: 50px;
	}
	.accordion-item .accordion-header button.accordion-button h5 {
		color: #ffffff;
		font-size: 13px;
		line-height: 18px;
		letter-spacing: 0px;
		font-family: "GeneralSans-Medium";
	}
	.gellery-box h2 {
		font-size: 65px;
		line-height: 48px;
	}
	.faqs-text p {
		font-size: 12px;
	}
	.faqs-text {
		padding: 15% 0% 0%;
	}
	.team-text p {
		font-size: 11px;
	}
	.team-about h3 {
		font-size: 33px;
	}
	.team-about p {
		font-size: 13px;
	}
	.faqs-text h6 {
		text-transform: uppercase;
		color: #ffffff;
		line-height: 1.3;
		margin-bottom: 2%;
		font-size: 10px;
		letter-spacing: 4.7px;
		font-family: "GeneralSans-Regular";
	}
	.contact-box h2 {
		font-size: 61px;
		color: #ffffff;
		margin-bottom: 10px;
		letter-spacing: 0.6px;
		line-height: 54px;
		font-family: "Queering";
	}
	.contact-box p {
		color: #ffffff;
		line-height: 1.3;
		font-size: 10px;
		letter-spacing: 0px;
		font-family: "GeneralSans-Regular";
	}
}
@media (max-width: 1200px) {
	.banner-bg {
		position: absolute;
		width: 99%;
		height: 100vh;
		object-fit: contain;
	}
	.about-text h2 {
		font-size: 59px;
		line-height: 52px;
	}
	.about-text h6 {
		font-size: 14px;
	}
	.flex-center-vertically h1 {
		font-size: 76px;
		line-height: 68px;
	}
	.flex-center-vertically {
		height: 70vh;
	}
	.place-wrap-two h4 {
		font-size: 17px;
		line-height: 20px;
	}
	.place-wrap-two img {
		width: 11%;
	}
	.services-wrap h3 {
		font-size: 32px;

		line-height: 45px;
	}
	.tastimonials-box p {
		font-size: 12px;
	}
	.tastimonials-box h2 {
		font-size: 69px;
		line-height: 60px;
	}
	.clinte-text h3 {
		font-size: 35px;

		line-height: 19px;
	}
	.faqs-text h2 {
		font-size: 70px;
		line-height: 65px;
	}
	.accordion-item .accordion-header button.accordion-button h5 {
		font-size: 16px;
		line-height: 23px;
	}
	.faqs-text {
		padding: 23% 0% 0%;
	}
}
@media (max-width: 1024px) {
	.about-text h2 {
		font-size: 54px;
		line-height: 47px;
	}
	.services-text p {
		font-size: 10px;
	}
	.services-box h2 {
		font-size: 54px;
		line-height: 48px;
	}
	.about-text p {
		font-size: 9px;
	}
	.flex-center-vertically h1 {
		font-size: 73px;
		line-height: 63px;
	}
	.flex-center-vertically p {
		font-size: 10px;
	}
	.flex-center-vertically h6 {
		font-size: 14px;
	}
	.nav-link {
		font-size: 14px;
	}
	.clinte-text h3 {
		font-size: 26px;
		line-height: 10px;
	}
	.clinte-text p {
		font-size: 13px;
	}
	.code-border p {
		font-size: 11px;
		margin-top: 3%;
	}
	.month p {
		font-size: 11px;
	}
	.fa-arrow-right:before {
		content: "\f061";
		left: -113%;
	}
}
@media screen and (max-width: 992px) {.young-man {
    width: 38%;
    border-radius: 22px;
    height: 120px;
    object-fit: cover;
}
	.banner-bg {
		position: absolute;
		width: 100%;
		height: 100vh;
		object-fit: contain;
	}
	.faqs-text {
		padding: 17% 0% 0%;
	}
	.navbar {
		padding: 45px 0px;
	}
	.slider-pic {
		display: flex;
		margin-top: 0%;
	}
	.logo {
		position: absolute; /* padding-left: 1rem; */
	}
	.logo-head {
		width: 60%;
	}
	.head-btn-md {
		position: absolute;
		right: 20%;
	}
	.navbar-content {
		display: none;
		flex-direction: column;
		justify-content: flex-start;
		position: absolute;
		top: 80px;
		right: -15px;
		z-index: 99;
		width: 0vw;
		min-height: calc(100vh - var(--nav-height));
		background-color: #874b0d;
		overflow: hidden;
		transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
	}

	.navbar-content.show {
		width: 50vw;
	}

	.navbar-list {
		flex-direction: column;
		width: 100%;
		padding: 0.5rem 1rem;
	}
	.navbar-right {
		padding: 0.5rem 1rem;
	}
	.search-input {
		margin-bottom: 0.5rem;
	}

	/************************* 
    
    burger menu

*************************/

	.navbar .burger {
		position: absolute;
		right: 12px;
		cursor: pointer;
		padding: 18px 40px 21px 6px;
		box-shadow: 1px 1px 3px #a2a0a5;
		color: #874b0d;
		border-radius: 3px;
		transition: box-shadow 0.3s ease-in-out;
	}

	.navbar .burger span,
	.navbar .burger span:before,
	.navbar .burger span:after {
		content: "";
		border-radius: 1rem;
		height: 4px;
		width: 35px;
		background-color: var(--black);
		position: absolute;
		display: block;
		transition: all 300ms ease-in-out;
		box-shadow: inset 0 0 3px #f3f3f3;
	}

	.navbar .burger span:before {
		top: -10px;
	}

	.navbar .burger span:after {
		bottom: -10px;
	}

	.navbar .burger.active {
		box-shadow: none;
	}

	.navbar .burger.active span {
		background-color: transparent;
		box-shadow: none;
	}

	.navbar .burger.active span:before,
	.navbar .burger.active span:after {
		top: 0;
		width: 30px;
	}

	.navbar .burger.active span:before {
		transform: rotate(45deg);
	}

	.navbar .burger.active span:after {
		transform: rotate(-45deg);
	}

	/* dropdown */
	.dropdown-btn {
		justify-content: flex-start;
	}

	.dropdown-list {
		position: relative;
	}

	.dropdown .dropdown-list .dropdown {
		display: none;
	}
	.nav-link {
		padding: 2rem 0.7rem;
		color: #fff;
		font-size: 21px;
		font-family: "GeneralSans-Regular";
		text-decoration: none;
	}
	.flex-center-vertically {
		height: 60vh;
	}
	.flex-center-vertically h1 {
		font-size: 62px;
		line-height: 52px;
	}
	.service-sec {
		padding: 3% 3% 8%;
	}
	.place-wrap-two img {
		width: 18%;
	}
	.place-wrap-two h4 {
		font-size: 35px;
		line-height: 45px;
	}
	.place-wrap-two p {
		font-size: 16px;
	}
	.place-wrap-two {
		padding: 61px 0px 0px;
	}
	.codes-end {
		display: flex;
		justify-content: end;
	}
	.testimonials-bg {
		/* background: #9e630e; */

		padding: 5% 6%;
	}
	.accordion-item .accordion-header button.accordion-button h5 {
		color: #ffffff;
		font-size: 20px;
		line-height: 22px;
		letter-spacing: 0px;
		font-family: "GeneralSans-Medium";
	}
	.tastimonials-box p {
		font-size: 15px;
	}
	.tastimonials-box h2 {
		font-size: 68px;
		line-height: 57px;
	}
	.faqs-text h2 {
		font-size: 48px;
		line-height: 50px;
	}
	.faqs-text p {
		color: #ffffff;
		line-height: 1.3;
		margin-top: 3%;
		font-size: 16px;
		letter-spacing: 1px;
		font-family: "GeneralSans-Regular";
	}
	.gellery-box h2 {
		font-size: 65px;

		line-height: 60px;
	}
	.gellery-text p {
		color: #ffffff;
		line-height: 1.3;
		font-size: 12px;
		letter-spacing: 1px;
		font-family: "GeneralSans-Regular";
	}.team-pic {
		padding: 10% 0% 20% 0%;
		max-width: 100%;
		
	}.teamed-img {
		height: 400px;
		object-fit: fill;
		
	}.team-about {
		position: absolute;
		bottom: 15px;
	}
}
@media (max-width: 575px) {
	.young-man {
		width: 25%;
		border-radius: 7px;
		height: 51px;
		object-fit: cover;
	}
	.img-fluid {
		max-width: 100%;
		height: auto;
	}
	.flex-center-vertically {
		height: 32vh;
	}
	.about-sec .about-box {
		display: flex;
		align-items: center;
		height: 65vh;
	}
	.about-text {
		/* padding-left: 10%; */
		max-width: 100%;
		transform: translateY(-20%);
		height: auto;
	}
	.services-img {
		width: 100%;
		margin: 0px 0px 23px 0px;
		position: relative;
		/* padding: 10px; */
	}
	.tastimonials-box h2 {
		font-size: 45px;
		line-height: 40px;
	}
	.tastimonials-box h6 {
		margin-bottom: 2%;
		font-size: 10px;
	}
	.testimonials-bg {
		/* background: #9e630e; */
		padding: 0% 6%;
	}
	.clinte-euro .clinte-img {
		width: 20%;
	}
	.clinte-text h3 {
		font-size: 22px;
		line-height: 2px;
	}
	.accordion-item .accordion-header button.accordion-button h5 {
		font-size: 12px;
		line-height: 15px;
	}
	.accordion-item .accordion-body {
		font-size: 11px;
	}
	.gallery-img-box {
		padding: 0% 0% 0% 0%;
		margin: 5px auto;
	}
	.team-box h2 {
		font-size: 65px;
		line-height: 60px;
	}
	.team-about {
		position: absolute;
		width: 90%;
		height: auto;
		display: flex;
		padding: 12px 0px;
		justify-content: center;
		flex-direction: column;
		bottom: -7px;
		align-items: center;
		margin: 0 auto;
		background-color: #874b0d;
		border-radius: 22px;
	}.teamed-img {
		height: 350px;
		object-fit: cover;
	}
	.team-about h3 {
		font-size: 39px;
	}
	.team-pic {
		position: relative;
		padding: 20% 0% 9% 0%;
		max-width: 100%;
		text-align: center;
		display: flex;
		justify-content: center;
	}
	.contact {
		padding: 2% 5% 3% 5%;
	}
	.footer-logo {
		transform: translateY(0%);
	}

	.footer-bg {
		background: #2d2d2d;
		max-width: 100%;
		height: auto;
		padding: 4% 3% 3% 3%;
		border-radius: 24px;
	}
	.footer-text h2 {
		font-size: 52px;
		color: #ffffff;
		margin-bottom: 10px;
		letter-spacing: 0.6px;
		line-height: 48px;
		font-family: "Queering";
	}
	.footer-link ul li {
		padding: 0px 10px 0px 0px;
		font-size: 11px;
	}
	.contact-box h2 {
		font-size: 45px;
		color: #ffffff;
		margin-bottom: 10px;
		letter-spacing: 0.6px;
		line-height: 40px;
		font-family: "Queering";
	}
	.geller-img {
		width: 95%;
	}
	.gallery-img-box {
		padding: 0% 0% 0% 0%;
		margin: 5px 14px;
	}
	.tastimonials-box p {
		font-size: 13px;
	}
	.navbar-content.show {
		width: 70vw;
	}
}
@media (max-width: 425px) {
	.flex-center-vertically h1 {
		font-size: 57px;
		line-height: 52px;
	}
}
@media (max-width: 375px) {
	.flex-center-vertically h1 {
		font-size: 54px;
		line-height: 52px;
	}
	.gellery-box h2 {
		font-size: 50px;
		line-height: 38px;
	}
	.gellery-text p {
		color: #ffffff;
		line-height: 1.3;
		font-size: 11px;
		letter-spacing: 1px;
		font-family: "GeneralSans-Regular";
	}
	.gellery-box {
		padding: 9% 0% 0%;
	}
	.footer-text h2 {
		font-size: 40px;
		color: #ffffff;
		margin-bottom: 10px;
		letter-spacing: 0.6px;
		line-height: 48px;
		font-family: "Queering";
	}
}

@media (max-width: 320px) {
	.flex-center-vertically h1 {
		font-size: 49px;
		line-height: 52px;
	}
	.about-text h2 {
		font-size: 41px;
		line-height: 38px;
	}
	.services-box h2 {
		font-size: 46px;
		line-height: 40px;
	}
	.tastimonials-box h2 {
		font-size: 37px;
		line-height: 34px;
	}
	.faqs-text p {
		font-size: 11px;
	}
	.gellery-box h2 {
		font-size: 43px;
		line-height: 38px;
	}
	.team-box h2 {
		font-size: 55px;
		line-height: 52px;
	}
	.footer-social-media ul li {
		padding: 6px 17px;
		font-size: 20px;
		margin-right: 14px;
	}
	.head-inner {
		min-width: 100px;
		min-height: 25px;
	}
	.head-inner {
		font-size: 9px;
	}
	.head-inner {
		min-width: 123px;
		min-height: 25px;
		color: #fff;
		font-family: "GeneralSans-Regular";
		border: none;
		background: transparent;
		z-index: 2;
		position: relative;
	}
	.head-inner::before {
		content: "";
		position: absolute;
		min-height: 35px;
		min-width: 33px;
		display: flex;
		border-radius: 50%;
		z-index: -1;
		top: 0px;
		right: 0px;
		align-items: center;
		background: #a56b0e;
	}
}
