:root {
	--dark-theme: rgb(70, 47, 47);
	--orange-theme: rgb(250, 160, 0);
	--light-orange-theme: #fdb864;
	--brown-theme: #5f4941;
	--font-color: #fff;
}

body {
	/* make scrolling smooth */
	scroll-behavior: smooth;
	overflow-x: hidden;
	/* max-width: 100vw; */

	&::-webkit-scrollbar {
		width: 10px;
	}

	&::-webkit-scrollbar-thumb {
		background-color: var(--orange-theme);
		border-radius: 10px;
	}

	&::-webkit-scrollbar-track {
		background-color: var(--dark-theme);
	}

	&::-webkit-scrollbar-thumb:hover {
		background-color: var(--brown-theme);
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
}

i {
	color: var(--orange-theme);
}

p {
	font-size: 25px;
	letter-spacing: 1px;
	line-height: 1.2;
	word-spacing: 2px;
}

h1 {
	font-size: 30px;
	letter-spacing: 1px;
	line-height: 1.2;
	color: var(--orange-theme);
}

ul {
	list-style: none;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: var(--orange-theme);
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-size: 16px;
	transition: background-color 0.3s ease;
	outline: none;
	border: none;
}

.btn:hover {
	background-color: #e68a00;
	box-shadow: 2px 2px 4px 0 var(--dark-theme);
}

.btn span {
	margin-left: 10px;
	transition: margin-left 0.3s ease;
}

.btn:hover span {
	margin-left: 15px;
}

.flip-x {
	transform: scaleX(-1);
	right: 700px;
}

.show-more {
	display: flex;
}

.dropdown {
	display: none;
}

.contacts-nav {
	display: flex;
	position: static;
	justify-content: flex-end;
	align-items: center;
	background-color: var(--dark-theme);
	color: var(--font-color);
	padding: 0 10px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2;
	max-height: 30px;
	min-height: 30px;
}

.contacts-nav ul {
	display: flex;
	list-style: none;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	margin: 0;
	position: relative;
}

/* main nav */
.main-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--font-color);
	color: var(--brown-theme);
	padding: 0 20px;
	font-weight: 550;
	min-height: 60px;
	max-height: 60px;
	position: fixed;
	top: 30px;
	width: 100%;
	z-index: 2;
}

.logo-block {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 150px;
	min-width: 150px;
	max-height: 70px;
	z-index: 10;
}

.logo-block img {
	width: 100%;
	height: 100%;
	z-index: 10;
}

.main-nav ul {
	display: flex;
	list-style: none;
	justify-content: space-evenly;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	margin-right: 100px;
	width: fit-content;
}

.main-nav ul li {
	padding: 10px;
}

.main-nav ul li:hover {
	color: var(--orange-theme);
}

/* main content - slider section*/
#slider {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: var(--font-color);
	min-height: 500px;
	overflow: hidden;
	max-height: 500px;
	max-width: 100vw;
	margin-top: 100px;
	margin-left: 50px;
}

.slider-back {
	display: flex;
	justify-content: flex-start;
	position: absolute;
	top: 110px;
	left: 0;
	margin: 0;
	min-width: 98vw;
	max-width: 100vw;
	min-height: fit-content;
	overflow-x: hidden;
	overflow-y: hidden;
	z-index: -1;
}

.slider-back img {
	position: relative;
	z-index: -1;
	left: 500px;
}

#slider .slider-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin-left: 50px;
	max-width: 80%;
}

#slider .slider-content h1 {
	font-size: 50px;
	font-weight: 700;
	color: var(--orange-theme);
	margin-bottom: 10px;
}

#slider .slider-content p {
	font-size: 30px;
	font-weight: 500;
	margin: 0;
	color: var(--dark-theme);
}

#slider .slider-content .btn {
	margin: 0;
	margin-top: 40px;
}

.logo-back {
	position: absolute;
	z-index: -1;
	opacity: 0.5;
	/* left: 350px; */
	display: block;
	transform: translate(0px, 200px);
	scale: -1;
}

/* about */
#about {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 50px;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.3),
		rgba(255, 255, 255, 0.8),
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 1)
	);
	color: var(--dark-theme);
	padding: 0px;
	max-width: 100%;
	padding: 0 60px;
	margin: auto;
	margin-top: 30px;
	min-height: 100vh;
}

#about .about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

#about .about-content h1 {
	font-size: 40px;
	font-weight: 700;
	color: var(--orange-theme);
	margin: 20px 0;
}

#about .about-content p {
	font-weight: 500;
	margin: 10px 0;
	margin-bottom: 40px;
	text-align: left;
}

#about .about-buttons {
	display: none !important;
	grid-template-columns: repeat(2, minmax(250px, 260px));
	justify-content: center;
	align-items: center;
	gap: 40px 20px;
	max-width: 95%;
	flex-wrap: wrap;
	margin: 30px 0;
}

#about .about-buttons .btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width: 250px;
	max-width: 250px;
	min-height: 120px;
	max-height: 120px;
	padding: 20px;
	margin: 0;
}

#about .about-buttons .btn i {
	font-size: 50px;
	color: var(--font-color);
	margin-bottom: 10px;
}

#about .about-buttons .btn p {
	font-size: 20px;
	font-weight: 500;
	margin: 10px 0;
}

/* col-sec */

#mission-vision {
	display: none;
	display: block;
	background: linear-gradient(
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 0.8),
		rgba(255, 255, 255, 0.8),
		rgba(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0.3),
		rgba(255, 255, 255, 0)
	);
}

.col-sec {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	justify-content: space-between;
	align-items: center;
	color: var(--font-color);
	padding: 0px;
	max-width: 100%;
	padding: 20px;
	margin: auto;
	gap: 20px;
	color: var(--dark-theme);
	font-weight: 400;
}

.vision-content {
	padding: 50px;
}

.col-sec .col-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0;
}

.col-sec .col-content h1 {
	font-size: 50px;
	font-weight: 700;
	color: var(--orange-theme);
	margin: 10px 0;
}

.col-sec .col-content p {
	font-weight: 500;
	margin: 10px 0;
}

.col-sec .col-content ul li {
	font-size: 23px;
	font-weight: 500;
	margin: 20px 0;
}

.col-sec .col-content ul li i {
	font-size: 25px;
	color: var(--orange-theme);
	margin-right: 10px;
}

.col-sec .col-content a {
	margin-top: 20px;
}

.col-sec .col-image {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin: auto;
	padding: 0px;
	border-radius: 10px;
	box-shadow: 2px 2px 4px 0 var(--dark-theme);
}

.col-sec .col-image img {
	width: 100%;
	height: 100%;
	max-width: 500px !important;
	margin: auto;
	border-radius: 10px;
}

#team {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin: 100px 0 0 0;
	max-width: 100%;
	overflow: hidden;
	background: linear-gradient(
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.8),
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 1)
	);
	padding-bottom: 80px;
}

#team h1 {
	text-align: center;
	font-size: 60px;
	width: 70%;
}

#team .team-members {
	display: grid;
	text-align: left;
	grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
	justify-content: center;
	align-items: center;
	color: var(--dark-theme);
	padding: 0px;
	width: 100%;
	margin: 60px auto;
	gap: 10px;
}

#team .team-members .team-member {
	max-width: 270px;
	min-width: 270px;
	min-height: 400px;
	max-height: 450px;
	background-color: var(--font-color);
	box-shadow: 0px 3px 8px 0 var(--brown-theme);
	padding: 0px;
	padding-bottom: 0;
	border-radius: 10px;
	color: var(--dark-theme);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin: auto;
	position: relative;
}

#team .team-members .team-member .img-block {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 270px;
	width: 270px;
	min-width: 270px;
	min-height: 300px;
	max-height: 100%;
	height: auto;
	z-index: 0;
	position: absolute;
	top: 0;
}

#team .team-members .team-member .img-block img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: var(--font-color);
	margin: 0;
	border-radius: 10px;
	z-index: 0;
	position: absolute;
	top: 0;
}

#team .team-members .team-member .info-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0px;
	min-width: 270px;
	min-height: 180px;
	transform: translate(0px, 70px);
	color: var(--brown-theme);
	transition: all 0.5s;
	overflow: hidden;
	border-radius: 10px;
	text-align: center;
	z-index: 1;
	position: relative;
}

#team .team-members .team-member:hover .info-block {
	background-color: var(--brown-theme);
	color: var(--font-color) !important;
	transform: translate(0px, 0px);
}

#team .team-members .team-member:hover .info-block h2 {
	color: var(--font-color);
}

#team .team-members .team-member .info-block h2 {
	font-size: clamp(22px, 100%, 30px);
	font-weight: 700;
	color: var(--orange-theme);
	margin: 0;
	width: 100%;
	text-wrap: nowrap;
}

#team .team-members .team-member .info-block p {
	font-weight: 500;
	margin: 10px 0;
	color: inherit;
	font-size: 17px;
}

#team .team-members .team-member .info-block .socials {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	width: 100%;
	margin-top: 10px;
}

#team .team-members .team-member .info-block .socials i:hover {
	color: var(--font-color);
}

#team .team-members .team-member:hover .socials {
	display: flex;
}

/* articles */
#articles {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin: 0px auto auto auto;
	max-width: 100%;
	overflow: hidden;
	padding: 40px 0;
	background: linear-gradient(var(--dark-theme), var(--brown-theme), #f9f9f9, #f9f9f9);
}

#articles h1 {
	font-size: 40px;
}

#articles .articles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	justify-content: center;
	align-items: center;
	background-color: var(--font-color);
	color: var(--dark-theme);
	padding: 0px;
	max-width: 100%;
	margin: 60px auto;
	gap: 20px;
	background-color: transparent;
}

#articles .articles .article {
	max-width: 330px;
	min-width: 330px;
	min-height: 100%;
	background-color: var(--font-color);
	box-shadow: 2px 2px 4px 0 var(--brown-theme);
	padding: 0px;
	padding-bottom: 0;
	border-radius: 10px;
	color: var(--dark-theme);
}

#articles .articles .article .article-image {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	overflow: hidden;
	min-height: 280px;
	width: 100%;
	max-width: 100%;
	max-height: 200px;
	min-height: 200px;
	margin-bottom: 20px;
}

#articles .articles .article .article-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: var(--font-color);
	margin: 0;
}

#articles .articles .article .article-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	margin-left: -20px;
	min-width: 280px;
	max-width: 95%;
	color: var(--brown-theme);
	transition: all 0.5s;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
	text-align: center;
	margin: 0 auto;
}

#articles .articles .article .article-content h2 {
	background-color: var(--font-color);
	padding: 20px;
	border-radius: 50%;
	position: absolute;
	font-size: 22px;
	font-weight: 700;
	color: var(--orange-theme);
	margin: 10px;
	transform: translate(-0px, -115px);
}

#articles .articles .article .article-content h2:hover {
	color: var(--dark-theme);
}

#articles .articles .article .article-content p {
	font-weight: 500;
	text-align: left;
	margin: 10px 0;
	color: inherit;
	margin: 20px auto;
	z-index: 1;
	font-size: 20px;
}

#articles .articles .article .article-content i {
	font-size: 20px;
	color: var(--font-color);
}

/* Projects */

.what-we-do {
	padding: 50px 0;
	text-align: center;
	background-color: #f9f9f9;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-header span {
	display: inline-block;
	background-color: #ffd2b3;
	padding: 5px 15px;
	border-radius: 50px;
	color: #ff7200;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-header h2 {
	font-size: 32px;
	color: #5f4941;
	margin-bottom: 40px;
	text-align: center;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	max-width: 95%;
}

.card {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	padding: 20px;
	text-align: left;
	overflow: hidden;
}

.card .card-img {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	max-height: 200px;
	margin-bottom: 20px;
}

.card .card-img img {
	width: 100%;
	margin-bottom: 20px;
}

.card h3 {
	font-size: 22px;
	color: #0e2431;
	margin-bottom: 20px;
}

.card .card-content {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow: auto;
	transition: all ease-in-out 0.5s;

	&::-webkit-scrollbar-track {
		height: 5px;
		width: 5px;
	}

	&::-webkit-scrollbar-thumb {
		background-color: transparent;
		border-radius: 10px;
	}

	&::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
}

.card .card-content .card-content-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	min-width: 100%;
	margin: 0;
	font-size: 16px !important;
	height: fit-content;
}

.card .card-content .card-content-item ul {
	list-style: inside !important;
}

.card .card-content .card-content-item li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #6c757d;
	margin-bottom: 4px;
	font-size: inherit;
	list-style: decimal !important;
	width: 100%;
}

.card .card-content .card-content-item a {
	color: var(--orange-theme);
	margin: 5px 0;
}

.card button {
	margin-top: 20px !important;
}

.card p {
	font-size: inherit;
	color: #6c757d;
	margin-bottom: 20px;
	width: 100%;
	text-align: left;
}

.card button {
	margin: 0 auto;
}

/* sponsors */
#sponsors {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin: 80px auto auto auto;
	max-width: 100%;
	overflow: hidden;
}

#sponsors h1 {
	font-size: 40px;
	margin-bottom: 40px;
}

#sponsors .sponsors {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	max-width: 90%;
	gap: 20px;
	padding: 10px;
	overflow-x: auto;

	&::-webkit-scrollbar-track {
		height: 5px;
		width: 5px;
	}

	&::-webkit-scrollbar-thumb {
		background-color: var(--orange-theme);
		border-radius: 10px;
	}

	&::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}

	&::-webkit-scrollbar-thumb:hover {
		background-color: var(--brown-theme);
	}
}

#sponsors .sponsors .sponsor {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--font-color);
	color: var(--dark-theme);
	padding: 5px;
	border-radius: 5px;
	box-shadow: 1px 1px 2px 0 var(--brown-theme);
	max-height: 100px;
	min-height: 100px;
	min-width: 150px;
	max-width: 250px;
	overflow: hidden;
	transition: all 0.3s;
}

#sponsors .sponsors .sponsor img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: var(--font-color);
	margin: 0;
}

/* main footer */
.main-footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: space;
	background-color: var(--dark-theme);
	color: var(--font-color);
	padding: 40px;
	padding-bottom: 0;
	margin-top: 50px;
}

.main-footer .footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.main-footer .footer-content .footer-links {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: inherit;
}

.main-footer i {
	margin-right: 10px;
}

.main-footer .footer-content .footer-links ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	font-size: 18px;
}

.main-footer .footer-content .footer-contacts {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: inherit;
}

.main-footer .footer-content .footer-contacts ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	font-size: 18px;
}

.main-footer .footer-content .footer-contacts ul li {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.main-footer .footer-content ul li:hover {
	color: var(--orange-theme);
}

.main-footer .footer-content .footer-socials {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

.main-footer .footer-content .footer-socials i {
	font-size: 25px;
}

.main-footer .footer-content .footer-socials i:hover {
	color: var(--font-color);
}

.main-footer .footer-content .footer-logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main-footer .footer-content .footer-logo .logo-block {
	max-width: 250px;
	min-height: 100px;
	max-height: 200px;
	height: fit-content;
	overflow: hidden;
	margin-bottom: 10px;
}

.main-footer .footer-content .footer-logo .logo-block img {
	width: 100%;
	height: 100%;
}

.main-footer .footer-content .footer-logo p {
	font-size: 18px;
}

.main-footer .footer-content .footer-logo .message-block {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main-footer .footer-content .footer-logo .message-block a {
	color: var(--brown-theme);
}

.main-footer .footer-content .footer-services {
	display: none;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}

.main-footer .footer-content .footer-services i {
	font-size: 20px;
}

.main-footer .footer-content .footer-services ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	font-size: 18px;
}

.main-footer .footer-content .footer-services ul li {
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-footer .footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--font-color);
	padding: 10px;
	margin-top: 20px;
	background: linear-gradient(var(--brown-theme), var(--dark-theme));
	border-radius: 20px 20px 10px 10px;
}

.main-footer .footer-bottom p {
	font-size: 18px;
}

/* gallery */
#gallery {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin: 0px auto auto auto;
	max-width: 100%;
	width: fit-content;
	overflow: hidden;
	background-color: #f9f9f9;
	background-image: url('../images/logo.png');
	background-size: cover;
	background-repeat: no-repeat;
	padding: 20px;
}

#gallery h1 {
	font-size: 60px;
	margin: 30px;
	width: 80%;
	text-align: right;
}

#gallery .gallery-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	max-width: 80%;
	max-height: 80%;
	width: fit-content;
	overflow: hidden;
	border-radius: 10px;
}

#gallery .gallery-popup .gallery-popup-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--font-color);
	color: var(--dark-theme);
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: fit-content;
}

#gallery .gallery-popup .gallery-popup-content img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
	background-color: var(--font-color);
	margin: 0;
	object-fit: contain;
}

#gallery .gallery-popup .gallery-popup-content .close-popup {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;

	background-color: var(--brown-theme);
	color: var(--orange-theme) !important;
	font-size: 20px;
	font-weight: 500;
	border: none;
	/* border-radius: 0px 10px 0 10px; */
	padding: 5px 20px;
	cursor: pointer;
	/* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); */
	top: 0px;
	right: 0px;

	i {
		font-size: 20px;
		color: white;
	}
}

#gallery .gallery-popup .gallery-popup-content .close-popup:hover {
	color: var(--font-color);
	box-shadow: 2px 2px 5px var(--orange-theme);
}

#gallery .gallery-popup .gallery-popup-content .slider-btn {
	display: flex;
	position: absolute;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: 100%;
}

#gallery .gallery-popup .gallery-popup-content .slider-btn button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	color: var(--orange-theme);
	font-size: 20px;
	font-weight: 500;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	padding: 10px 18px;
	margin: 0 -10px;

	&:hover i {
		color: var(--light-orange-theme);
	}

	i {
		font-size: 50px;
		color: var(--orange-theme) !important;
	}
}

#gallery .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-template-rows: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	/* background: linear-gradient(var(--light-orange-theme), var(--orange-theme)); */
	background-color: var(--font-color);
	color: var(--dark-theme);
	padding: 0px;
	margin: 40px auto;
	gap: 10px;
	max-width: 95%;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 2px 2px 5px 0 var(--brown-theme);
}

#gallery .gallery .gallery-item {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	overflow: hidden;
	min-height: 280px;
	width: 100%;
	max-width: 100%;
	max-height: 200px;
	min-height: 200px;
	margin-bottom: 20px;
	border-radius: 5px;
	min-height: 200px;
	border: 3px solid var(--orange-theme);
	padding: 0px;
	background-color: var(--orange-theme);
}

#gallery .gallery .gallery-item img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: var(--font-color);
	margin: 0;
}

.developers {
	font-size: 11px !important;
	color: color(from var(--brown-theme) srgb 255 255 255);
}

.developers a {
	color: var(--orange-theme) !important;
}

/* tab queries */
@media screen and (max-width: 700px) {
	h1 {
		font-size: 40px !important;
	}
	.hide {
		display: none !important;
	}
	.main-nav {
		align-items: flex-start;
		padding: 0;
	}

	.main-nav ul {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		background-color: var(--font-color);
		z-index: 20;
		margin-right: 0;
		min-width: 180px;
		max-width: 180px;
		padding-bottom: 10px;
	}

	.main-nav ul li {
		width: 100%;
		transition: all ease-in-out 0.2s;
		padding-left: 20px;
	}

	.main-nav ul li:hover {
		box-shadow: 1px 2px 4px 0 var(--dark-theme);
	}

	.dropdown {
		display: flex;
		justify-content: center;
		align-items: center;
		color: var(--font-color);
		width: 100%;
		z-index: 2;
	}

	.dropdown button {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		background-color: transparent;
		color: var(--orange-theme);
		font-size: 30px;
		font-weight: 500;
		border: none;
		cursor: pointer;
		margin: 0;
		width: 180px;
		padding-right: 20px;
	}

	.dropdown:hover {
		color: var(--brown-theme) !important;
		box-shadow: none !important;
	}

	.dropdown button i {
		color: inherit;
	}

	#slider {
		margin-left: 0px;
		min-height: 80vh;
	}

	.slider-back {
		background-color: white !important;
		z-index: -1;
	}

	.slider-back img {
		position: relative;
		z-index: -2;
		left: 300px;
		top: -240px;
		opacity: 0.8;
	}

	#team .team-members {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 260px));
	}

	#team .team-members .team-member {
		max-width: 250px !important;
		width: 250px !important;
		min-width: 250px !important;
		overflow: hidden;
	}

	#team .team-members .team-member .img-block {
		max-width: 250px !important;
		min-width: 250px !important;
		width: 200px !important;
	}

	#team .team-members .team-member .img-block img {
		object-fit: contain; /* or 'cover' depending on design needs */
		height: auto;
		width: 100%;
	}

	#team .team-members .team-member .info-block {
		min-width: 250px !important;
		width: 250px !important;
		max-width: 250px !important;
		background-color: var(--font-color);
	}

	#gallery h1 {
		text-align: left;
	}

	#gallery .gallery-popup {
		max-width: 90%;
		min-width: 80%;
		max-height: 100%;
	}

	#articles .articles {
		max-width: 95%;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	#articles .articles .article {
		max-width: 400px;
		min-width: 300px;
		font-size: 19px;
		padding: 0;
	}

	#articles .articles .article .article-content {
		padding: 10px 10px;
		max-width: 95%;
		margin: 0 auto;
	}

	#articles .articles .article .article-content h2 {
		transform: translate(0px, -115px);
		padding: 15px 10px;
		font-size: 22px;
	}

	#articles .articles .article .article-content p {
		font-size: inherit;
	}

	.main-footer {
		padding: 10px;
	}

	.main-footer .footer-content {
		margin: 0;
		flex-direction: row-reverse;
	}

	.main-footer .footer-content .footer-links {
		display: none;
	}
	.main-footer .footer-content .footer-logo {
		flex-direction: row;
		gap: 20px;
		justify-content: space-between;
		width: 100%;
		margin-bottom: 20px;
	}

	.main-footer .footer-content .footer-contacts li {
		.main-footer .footer-content .footer-contacts li {
			word-wrap: break-word;
		}
	}

	/* mission */
	#mission {
		margin-top: 250px;
		background: transparent;
		gap: 100px;
	}

	#mission-vision {
		background: url('../images/logo.png') !important;
		background-size: contain;
		background-repeat: repeat;
	}

	#mission-vision,
	.col-sec {
		background: transparent;
	}

	#mission .mission-content,
	.col-sec .col-content {
		margin: 0;
		padding: 0;
		background: transparent;
		background-color: white;
		box-shadow: 2px 2px 4px 0 var(--dark-theme);
		padding: 10px 20px;
		margin-top: 50px;
	}

	#vision {
		margin-top: 70px;
	}

	.col-sec .col-content h1 {
		width: 100%;
		text-align: center;
		margin: 0;
	}

	.col-sec .col-content li {
		background-color: transparent;
		font-size: 17px !important;
		text-align: justify;
	}

	.col-sec .col-content li:hover i {
		color: var(--brown-theme);
	}

	.col-sec .vision-content {
		margin-top: -38px;
	}

	.col-sec .col-image img {
		width: 100% !important;
		min-width: 100vw !important;
		border-radius: 0px !important;
		.col-sec .col-image img {
			border-radius: 0 !important;
			z-index: 1;
		}
	}

	.col-sec .vision-image img {
		width: 100% !important;
		min-width: 100vw !important;
		border-radius: 0px !important;
		border-radius: 0 !important;
		overflow: hidden;
		display: none;
	}

	.col-sec .vision-image {
		min-width: 100vw !important;
		width: 100vw !important;
		height: auto !important;
		border-radius: 0px !important;
		box-shadow: none;
		position: absolute;
		left: 0;
		z-index: -1;
		margin-top: 00px !important;
	}

	.col-sec .col-image {
		min-width: 100vw !important;
		width: 100vw !important;
		height: auto !important;
		border-radius: 0px !important;
		box-shadow: none;
		position: absolute;
		left: 0;
		z-index: -1;
		margin-top: -200px;
	}
}

/* mobile screen size */
@media screen and (max-width: 468px) {
	#slider {
		margin-left: 0px;
		min-height: 80vh;
	}

	.slider-back {
		background-color: white !important;
		z-index: -1;
	}

	.slider-back img {
		position: relative;
		z-index: -2;
		left: 200px;
		top: -300px;
		opacity: 0.8;
	}

	/* about buttons */
	#about {
		font-size: 17px;
		margin: 0;
		max-width: 100%;
		width: 100%;
		padding: 0;
		margin: 25px auto;
	}

	#about .about-content {
		width: 90%;
		max-width: 90%;
		margin: 0 auto;
	}

	#about .about-content p {
		font-size: 19px;
		text-align: justify;
	}

	#about .about-buttons {
		display: grid;
		grid-template-columns: repeat(2, minmax(180px, 180px));
		justify-content: center;
		align-items: center;
		gap: 40px 20px;
		max-width: 95%;
		flex-wrap: wrap;
		margin: 30px 0;
	}

	#about .about-buttons .btn {
		min-width: 180px;
		max-width: 180px;
		min-height: 100px;
		max-height: 100px;
		padding: 20px;
		margin: 0;
		font-size: 15px;
		flex-wrap: nowrap;
		text-wrap: nowrap;
	}

	#mission {
		margin-top: 200px;
		background: transparent;
	}

	#mission .mission-content {
		margin: 0;
		padding: 0;
		background: transparent;
		background-color: white;
		box-shadow: 2px 2px 4px 0 var(--dark-theme);
		padding: 10px 20px;
		margin-top: -50px;
	}

	#mission .mission-content h1 {
		width: 100%;
		text-align: center;
		margin: 0;
	}

	#mission .mission-content li {
		background-color: transparent;
		font-size: 18px !important;
		text-align: left;
	}

	#mission .mission-content li i {
		margin: 0;
	}

	#mission .mission-content li:hover i {
		color: var(--brown-theme);
	}

	#mission .col-image img {
		width: 100% !important;
		min-width: 100vw !important;
		border-radius: 0px !important;
		border-radius: 0 !important;
		overflow: hidden;
	}

	#mission .col-image {
		min-width: 100vw !important;
		width: 100vw !important;
		height: auto !important;
		border-radius: 0px !important;
		box-shadow: none;
		position: absolute;
		left: 0;
		z-index: -1;
		margin-top: -400px;
	}

	#team h1 {
		font-size: 35px !important;
		width: 100%;
	}

	#gallery .gallery {
		max-height: 700px;
		overflow-x: hidden;
		overflow-y: auto;

		&::-webkit-scrollbar-track {
			height: 5px;
			width: 5px;
		}

		&::-webkit-scrollbar-thumb {
			background-color: var(--orange-theme);
			border-radius: 10px;
		}

		&::-webkit-scrollbar {
			width: 5px;
			height: 5px;
		}

		&::-webkit-scrollbar-thumb:hover {
			background-color: var(--brown-theme);
		}
	}

	.main-footer .footer-content .footer-contacts {
		width: 97%;
	}

	.main-footer .footer-content .footer-contacts li {
		text-wrap: wrap !important;
	}

	#vision {
		margin-top: 0px;
	}

	#vision .col-content p {
		font-size: 19px;
	}

	#articles .articles .article {
		max-width: 350px;
	}

	#articles .articles .article .article-content h2 {
		transform: translate(0px, -105px);
	}

	.what-we-do .container .section-header h2 {
		font-size: 25px;
	}
}
