@media (max-width: 1023px) {
	.headerMenu, .headerContacts {
		display: none;
	}

	.mainBlock {
		flex-direction: column;
		align-items: center;
	}

	.main {
		width: 80%;
		align-items: center;
		text-align: center;
		margin-bottom: 40px;
	}

	.mainPic {
		width: 100%;
		background-position: center;
	}

	.aboutBlock {
		width: 100%;
		flex-direction: column-reverse;
	}

	.about {
		width: 80vw;
	}

	.aboutTitle {
		text-align: center;
	}

	.aboutPic {
		width: 80vw;
		height: 80vw;
		margin: 40px 0;
	}

	.advantageSubblock {
		flex-direction: column;
		margin-bottom: 40px;
	}

	.advantage {
		max-width: 80vw;
		width: 80vw;
		padding: 0 5vw;
		height: 100px;
		justify-content: flex-start;
		margin: 12px 0;
		flex-direction: row;
	}

	.advantageIcon {
		margin-bottom: 0;
		margin-right: 24px;
	}

	.advantage .text {
		text-align: left;
	}

	.availibleCarsBlock {
			width: 90%;
			padding: 0 5%;
		}

	.headerMenuBlock {
		width: 90vw;
	}

	.carsTitle {
		text-align: center;
		width: 100%;
	}

	.carsBlock {
		align-items: flex-start;	
	}

	.orderCarForm, .contactForm {
			flex-direction: column;
			width: 80vw;
			padding: 30px 0;
			height: initial;
		}

	.orderCarLeft {
		width: 90%;
		padding: 0 5%;
		text-align: center;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.orderCarDesc {
		width: initial;
	}

	h2 {
		font-size: 3.6vw;
	}

	.orderCarRight {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.orderCarInputs {
		display: flex;
		flex-direction: column;
		width: 90%;
	}

	.orderCarInputs > input, .rComment {
		width: calc(100% - 40px) !important;
		margin-bottom: 10px;
		margin-top: 0;
	}

	.orderCarInputs > input:first-child {
		margin-right: 0;
	}

	.orderCarBlock {
		height: initial;
		padding: 40px 0;
	}

	.policyPrivacy {
		padding: 0 5%;
	}

	.contactForm .filledButton, .orderCarForm .filledButton {
		width: 90%;
	}

	footer {
		height: initial;
	}

	.bottomBlock {
			width: 90%;
			align-items: flex-start;
			flex-direction: column;
			padding: 0 5%;
			margin: 40px 0;
		}

		.bottomInfo {
		display: flex;
		flex-direction: column;
		margin: 32px 0;
	}

	.bottomInfoLeft {
		padding-right: 0;
		padding-bottom: 12px;
	}

	.bottomInfoRight {
		padding-left: 0;
		border-left: none;
		border-top: 2px solid #F6F7FF;
		padding-top: 12px;
	}

	.mobileMenuBlock{
		justify-content: center;
		flex-direction: column;
		width: 80%;
		background: #fff;
		border-bottom-left-radius: 20px;
		padding: 10px 20px 32px 20px;
	}

	.mobileMenuElements {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 40px;
	}

	.mobileMenuContacts {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.mobileMenuElements > a {
		color: #000416;
		text-decoration: none;
		margin: 16px 0;
		font-size: 16px;
		user-select: none;
		background-image: linear-gradient(
		to right,
		#021D8E,
		#021D8E 50%,
		#000 50%
		);
		background-size: 200% 100%;
		background-position: -100%;
		display: inline-block;
		padding: 5px 0;
		position: relative;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		transition: all 0.3s ease-in-out;
		font-weight: bolder;
	}

	.mobileMenuElements > a:before{
		content: '';
		background: #021D8E;
		display: block;
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 0;
		height: 3px;
		transition: all 0.3s ease-in-out;
	}

	.mobileMenuElements > a:hover {
	 background-position: 0;
	}

	.mobileMenuElements > a:hover::before{
		width: 100%;
	}

	.mobileMenuLogo {
		width: 130px;
		height: 40px;
	}

	.burger {
		background: #F6F7FF;
		width: 36px;
		height: 36px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		user-select: none;
		cursor: pointer;
		transition: 300ms;
		border-radius: 4px;
		position: absolute;
		top: 18px;
		right: 18px;
	}
	.burger.open {
		z-index: 99;
	}
	.burger input[type="checkbox"] {
		appearance: none;
		transition: 300ms;
	}

	.burger::before,
	.burger::after {
		content: "";
		transition: 300ms;
		transform-origin: center center;
	}

	.bBurger {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.burger::before {
		transform: translateY(8px);
	}
	.burger::after {
		transform: translateY(-8px);
	}
	.burger .line,
	.burger::before,
	.burger::after {
		width: 25px;
		height: 2.1px;
		display: block;
		background-color: black;
		border-radius: 5px;
		position: absolute;
		cursor: pointer;
	}

	.burger.open .line {
		width: 0;
		transition-delay: 100ms;
	}
	.burger.open:has(.line)::before {
		animation: animation1 400ms ease-out 0s 1 both;
	}
	.burger.open:has(.line)::after {
		animation: animation2 400ms ease-out 0s 1 both;
	}

	.burger:hover {
		background: #aeaeae;
		border-radius: 50%;
	}

	.burger:hover .line,
	.burger:hover::before,
	.burger:hover::after {
		background: #e8e8e8;
	}

	.burger:active {
		scale: 0.95;
	}
	@keyframes animation1 {
		0% {
		transform: translateY(8px) rotate(0deg);
		}
		50% {
		transform: translateY(0px) rotate(0deg);
		}
		100% {
		transform: translateY(0px) rotate(45deg);
		}
	}
	@keyframes animation2 {
		0% {
		transform: translateY(-8px) rotate(0deg);
		}
		50% {
		transform: translateY(0px) rotate(0deg);
		}
		100% {
		transform: translateY(0px) rotate(-45deg);
		}
	}

	.text a {
		font-weight: bolder;
		text-decoration: none;
	}

	.text a:hover {
		text-decoration: underline;
	}

	.carDescription, .borderButton, footer, .headerMenu > a, .callTime, .policyPrivacy {
		font-size: 3vw;
	}

	.carPrice, .phone, .conditionsBlock li {
		font-size: 3.1vw;
	}

	.mainText, .aboutText, .orderCarDesc, .orderCarInputs > input, .mobileMenuElements > a {
		font-size: 3.6vw;
	}

	.advantage, .carName {
		font-size: 3.9vw;
	}

	.conditionsSubtitle {
		font-size: 4.2vw;
	}

	.privacySubtitle {
		font-size: 4.6vw;
	}

	.privacyTitle {
		font-size: 5.6vw;
	}

	.mainTitle, .aboutTitle, .advantagesTitle, .carsTitle, .orderCarTitle, .conditionsTitle {
		font-size: 6vw;
	}

}