* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	background-color: #ffffff;
	color: #000000;
}
.wrapper {
	overflow: hidden;
}
.container {
	margin: 0 auto;
	width: 100%;
	padding: 0 18px;
}
@media only screen and (min-width: 0px) {
	.container {
		max-width: 100%;
	}
}
@media only screen and (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media only screen and (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
.header_row {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	padding: 5px 0;
}
.brand_logo {
	display: flex;
	width: 140px;
}
.brand_logo img {
	width: 100%;
	height: auto;
}
.languages {
	display: flex;
	align-items: center;
	gap: 10px;
}
.languages .active {
	background-color: #1e1e1e;
}
.languages a {
	display: flex;
	width: 45px;
	padding: 5px;
	border-radius: 5px;
}
.languages img {
	width: 100%;
}
.phone_number {
	font-weight: 700;
	color: #1e1e1e;
	transition: 0.3s all ease;
}
.phone_number:hover,
.phone_number:active {
	color: #6ea8fe;
}

/* ------- */
main {
	padding: 0 0 30px 0;
}
.hero_image {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}
.section_title {
	font-size: 36px;
	font-weight: 800;
	color: #373435;
	padding: 20px 0 10px 0;
}
.section_title span {
	text-transform: uppercase;
	color: #ffcf00;
}
.section_desc {
	font-size: 16px;
	font-weight: 600;
	color: #373435;
}
.section_desc:has(sup) {
	color: #dc3545;
	margin: 10px 0 0 0;
	font-weight: 400;
}
#call_form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 0 0 0;
}
#call_form input,
#call_form select,
#call_form button {
	border-radius: 8px;
	border: none;
	outline: none;
	padding: 10px 8px;
	font-size: 16px;
	transition: 0.3s all ease;
}
#call_form input,
#call_form select {
	background-color: #ebebeb;
	color: #141416;
}
#call_form input::placeholder {
	color: #535353;
}
#call_form select {
	appearance: none;
	background-image: url(images/icons/i-down-arr.png);
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center right 15px;
	position: relative;
}
#call_form select::before {
	position: absolute;
	content: "Hududni tanlag";
	left: 8px;
	top: 4px;
}
#call_form button {
	margin: 10px 0 0 0;
	background-color: #ffdf29;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	color: #353945;
}
#call_form .phone_input {
	border: 1px solid #ebebeb;
}
#call_form .phone_input.error {
	border-color: #dc3545;
}
.success .container {
	text-align: center;
}
.success_image {
	margin: 50px auto 20px auto;
	width: 35%;
}
.success_title {
	font-size: 32px;
	font-weight: 700;
	color: #1e1e1e;
	margin: 0 0 10px 0;
}
.succes_desc {
	font-size: 16px;
	font-weight: 600;
	color: #515151;
	margin: 0 0 30px 0;
}
.to_index {
	width: 100%;
	display: block;
	padding: 14px 8px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #1e1e1e;
	text-decoration: none;
	background-color: #f6f6f6;
	border-radius: 10px;
	margin: 0 0 50px 0;
}
.socials p {
	font-size: 18px;
	font-weight: 500;
	color: #515151;
	margin: 0 0 10px 0;
}
.social_items {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.social_items a {
	display: flex;
}
.social_items img {
	width: 24px;
}

/* loader */
.loader-container {
	position: fixed;
	
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.95); /* Yengil orqa fon */
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999; /* Yuqori qatlamda ko'rsatilishi uchun */
}

.loader {
	color: #000 !important;
	display: inline-block;
	position: relative;
	font-size: 48px;
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}
.loader::after {
	content: " ";
	width: 5px;
	height: 5px;
	background: currentColor;
	position: absolute;
	bottom: 9px;
	right: -10px;
	box-sizing: border-box;
	animation: animloader 1s linear infinite;
}

@keyframes animloader {
	0% {
		box-shadow: 10px 0 rgba(255, 255, 255, 0), 20px 0 rgba(255, 255, 255, 0);
	}
	50% {
		box-shadow: 10px 0 rgb(5, 3, 3), 20px 0 rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 10px 0 rgb(15, 11, 11), 20px 0 rgb(18, 11, 11);
	}
}

@media (max-width:768px){
    .loader{
	    font-size:30px;
	}
}

@media only screen and (max-width: 500px) {
	.brand_logo {
		width: 100px;
	}
	
	.languages a {
		width: 35px;
	}
	.phone_number {
		font-size: 16px;
	}
}
@media only screen and (max-width: 400px) {
	.phone_number {
		font-size: 14px;
	}
	.section_title {
		font-size: 30px;
	}
	.success_title {
		font-size: 26px;
	}
}
@media only screen and (max-width: 360px) {
	.brand_logo {
		width: 85px;
	}
	.phone_number {
		font-size: 12px;
	}
}
