@import url("./normalize.css");
@import url("./short-style.css");
@import url("./hamburger.css");
@import url("./main.css");
@import url("./security.css");
@import url("./conflicts.css");
@import url("./defense.css");
@import url("./contacts.css");
@import url("./personal-security.css");
@import url("./detective.css");
@import url("./security-measures.css");
@import url("./operational-protection.css");
@import url("./partners.css");

* {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif;
	overflow: overlay;
}

nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 95%;
	padding-left: 153px;
	padding-right: 20px;
}

body::-webkit-scrollbar {
	width: 6px;
}

body::-webkit-scrollbar-thumb {
	border-radius: 100px;
	background: rgba(black, 0.16);
}

section {
	position: relative;
	z-index: 1;
	min-height: 100%;
}

.logo {
	width: 100px;
	height: 100px;
}

.title-block {
	font-size: 48px;
	font-weight: 800;
	line-height: normal;
	color: #ffffff;
	text-transform: uppercase;
}

.color-orange {
	color: #ff8746 !important;
}

.text-default {
	font-size: 21px;
	font-weight: 400;
	line-height: 30px;
	color: #ffffff;
}

.text-default-600 {
	font-size: 22px;
	font-weight: 600;
	line-height: 30px;
	color: #ffffff;
}

.text-average {
	font-size: 30px;
	font-weight: 400;
	color: #ffffff;
}

.text-average-800 {
	font-size: 30px;
	font-weight: 800;
}

.text-small {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
}

.text-small-800 {
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
}

.dividing-block {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 66px;
}

.default-border {
	border-radius: 10px;
	border: 1px solid #ff8746;
}

.nav-top {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.65);
	padding: 10px 0;
}

.nav {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav li {
	text-transform: uppercase;
}

.nav a {
	display: block;
	width: fit-content;
	height: fit-content;
}

.nav a img {
	display: block;
	width: 45px;
	height: 45px;
}

.nav a:hover::after {
	transform: scaleX(1);
	transform-origin: 0 50%;
}

.nav a:not(:has(img))::after {
	display: block;
	content: "";
	border-bottom: solid 1px #fff;
	transform: scaleX(0);
	transition: transform 250ms ease-in-out;
	transform-origin: 100% 50%;
}

.nav .active a:after {
	transform: scaleX(1);
	transform-origin: 0 50%;
}

.nav li a {
	position: relative;
	color: #fff;
}

.nav div {
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.bg {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	height: 100%;
	overflow: hidden;
	will-change: transform;
	background-position: 50% 50%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

.bg .wrap {
	position: relative;
	max-width: 100%;
}

.bg .item {
	width: 100%;
	height: 100%;
	background-position: 50% 50%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

.bg {
	background-image: url("../assets/images/bg/main.png");
}

.bg-item-1 {
	background-image: url("../assets/images/bg/main.png");
}

.bg-item-2 {
	background-image: url("../assets/images/bg/security.png");
}

.bg-item-3 {
	background-image: url("../assets/images/bg/defense.png");
}

.bg-item-4 {
	background-image: url("../assets/images/bg/personal-security.png");
	background-size: cover !important;
	background-repeat: no-repeat;
	background-color: #2f2f2f;
	background-position: 100% 10% !important;
}

.bg-item-5 {
	background-image: url("../assets/images/bg/security-measures.jpg");
	background-position: 100% 10% !important;
}

.bg-item-6 {
	background-image: url("../assets/images/bg/operational-protection.jpg");
}

.bg-item-7 {
	background-image: url("../assets/images/bg/detective.png");
}

.bg-item-8 {
	background-image: url("../assets/images/bg/conflicts.png");
}

.bg-item-9,
.bg-item-10 {
	background-image: url("../assets/images/bg/footer.png");
	background-size: 100% 100% !important;
	background-repeat: no-repeat;
	background-color: #2f2f2f;
	background-position: right !important;
}

@media (max-width: 1435px) {
	.bg-item-5 {
		background-size: cover !important;
	}
}

@media (max-width: 920px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (max-width: 1475px) {
	nav {
		max-width: 95%;
		margin: 0 auto;
		padding: 0;
	}
}

@media (max-width: 920px) {
	.bg {
		background-image: url("../assets/images/bg/bg-mobile.png");
		background-position: right;
		filter: brightness(60%);
	}

	.logo-mobile {
		display: flex !important;
		gap: 15px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.title-block {
		font-size: 32px;
	}

	.text-average {
		font-size: 28px;
	}

	.text-default {
		font-size: 20px;
	}

	.text-default-600 {
		font-size: 20px;
	}

	.dividing-block p {
		padding: 0 8px;
		text-align: center;
	}

	nav {
		flex-direction: column;
		justify-content: center;
		flex-wrap: wrap;
		gap: 45px;
		padding: 0 !important;
		height: 100%;
	}

	.nav-top {
		display: none;
		height: 100%;
		padding: 0;
		background: rgba(0, 0, 0, 0.85);
	}

	.nav {
		flex-direction: column;
	}

	.nav div {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 20px;
		padding: 0;
		height: fit-content;
	}

	.nav li a {
		text-align: center;
	}

	.show-mobile {
		display: block !important;
	}

	.hide-mobile {
		display: none !important;
	}
}

@media (max-width: 1220px) {
	.nav {
		gap: 16px;
	}

	.nav li a {
		font-size: 14px;
	}

	.nav-icon {
		width: 32px;
	}

	.nav a img {
		width: 40px;
		height: 40px;
	}
}

@media (min-width: 920px) and (max-width: 1180px) {
	.nav li:first-of-type {
		display: none;
	}
}
