@import url("reset.css");
@import url("https://fonts.googleapis.com/css?family=Plus+Jakarta+Sans:regular,500,700,800&display=swap");
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Plus Jakarta Sans";
	color: #5e6282;
}
.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: clip;
}
.wrapper > main {
	flex-grow: 1;
}
._anim-show {
	transform: translate(0px, 120%);
	opacity: 0;
	transition: all 0.8s ease 0s;
}
._anim-show._active,._active ._anim-show {
	opacity: 1;
	transform: translate(0px, 0px);
}
[class*="__container"] {
	max-width: 1230px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}
hr {
	display: block;
	margin-top: 90px;
	margin-left: auto;
	margin-right: auto;
	height: 2px;
	width: 50%;
	background-image: 
	radial-gradient(circle, #4475f2, white);
}
.page__reviews,
.page__services,
.page__aboutus,
.page__howorder,
.page__portfolio,
.page__workflow,
.footer,
.page__socials {
	padding-top: 90px;
}
.header-block {
	font-weight: 800;
}
.header-block--margin {
	margin-bottom: 90px;
}
.header-block__label {
	text-transform: uppercase;
	color: #4475f2;
	letter-spacing: 2px;
	font-size: 26px;
	line-height: 128%;
}
.header-block__label:not(:last-child){
	margin-bottom: 10px;
}
.header-block__title {
	color:black;
	font-size: 48px;
	line-height: 135%;
	text-align: center;
}
@media (max-width: 1200px) {
	.header-block--margin {
		margin-bottom: 70px;
	}
	
}
@media (max-width: 991.98px) {
	.header-block__label {
		font-size: 22px;
	}
	.header-block__title {
		font-style: 42px;
	}
	.header-block--margin {
		margin-bottom: 50px;
	}
}
@media (max-width: 767.98px) {
	.header-block__label {
		font-size: 22px;
	}
	.header-block__title {
		font-style: 26px;
	}
	.header-block--margin {
		margin-bottom: 40px;
	}
	h1.studio__name {
		font-size: 20px;
	}
	hr {
		margin-top: 60px;
	}
	.page__reviews,
.page__services,
.page__aboutus,
.page__howorder,
.page__portfolio,
.page__workflow,
.footer,
.page__socials {
	padding-top: 60px;
}
}
@media (max-width: 479.98px) {
	.header-block--margin {
		margin-bottom: 30px;
	}
	.header-block__title {
		font-style: 32px;
	}
}
.header {
	position: sticky;
	top: 0;
	background-color: transparent;
	z-index: 100;
	transition: background-color 0.3s, top 0.3s;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.header__container {
	position: relative;
	display: flex;
	align-items: center;
	column-gap: 70px;
	z-index: 1;
}
.header__logo {
	display: flex;
	flex: 0 0 90px;
	position: relative;
	z-index: 300;
}
.header__logo img {
	max-width: 90px;
	max-height: 90px;
}
.studio__name {
	padding-left: 5px;
	color: black;
	font-weight: 900;
	font-size: 32px;
	display: flex;
	align-self: center;
	height: 100%;
	line-height: 0.9;
}
.studio__name.white-title {
	color: white;
}
.header__burger {
	display: none;
}
.menu__list {
	display: flex;
	column-gap: 35px;
	row-gap: 8px; 
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	z-index: 200;
}
.menu__link {
	position: relative;
	font-size: 20px;
	font-weight: 900;
	color: #000000;
	transition: color 0.3s, transform 0.3s;
	box-shadow: 0 0 transparent;
}
.menu__link:before,
.menu__link:after{
	content: "";
	position: absolute;
	height: 3px;
	width: 0;
	background-color: #1500ff;
	transition: 0.3s;
}
.menu__link:after {
	left: 0;
	bottom: -10px;
}
.menu__link:before{
	right: 0;
	top: -10px;
}
.menu__item a:hover:after,
.menu__item a:hover:before{
	width: 100%;
}
.header__menu.white-links .menu__link {
    color: white;
}
@media (max-width: 1200.98px){
	.menu__list {
		row-gap: 20px;
	}
}
@media (max-width: 991.98px){
	.header__container {
		column-gap: 50px;
	}
	.menu__list {
		column-gap: 20px;
		row-gap: 20px;
	}
}
@media (max-width:767px) {
	body.lock {
		overflow: hidden;
	}
	.header__container {
		height: 60px;
		justify-content: space-between;
		column-gap: 20px;
	}
	.header__logo img {
		max-height: 60px;
	}
	.header__logo h2 {
		font-size: 22px;
	}
	.header__burger {
		display: block;
		width: 30px;
		height: 20px;
		z-index: 300;
		position: relative;
	}
	.header__burger span {
		background-color: orangered;
		position: absolute;
		left: 50%;
		width: 60%;
		height: 2px;
		top: 9px;
		transition: all 0.3s ease 0s;
		transform: translateX(-50%);
	}
	.header__burger:before,
	.header__burger:after {
		content: '';
		background-color: orangered;
		position: absolute;
		width: 30px;
		height: 2px;
		left: 0;
		transition: all 0.3s ease 0s;
	}
	.header__burger:before {
		top: 0;
	}
	.header__burger:after {
		bottom: 0;
	}
	.header__burger.active span {
		transform: scale(0);
	}
	.header__burger.active:before {
		transform: rotate(45deg);
		top: 9px;
	}
	.header__burger.active:after {
		transform: rotate(-45deg);
		bottom: 9px;
	}
	.header__menu {
		position: fixed;
		top: -100%;
		left: 0;
		width: 80%;
		height: 100%;
		overflow: auto;
		transition: all 0.3s ease 0s;
		background-color: rgb(124, 123, 134);
		padding: 80px 0px 0px 0px;
		border-top-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	.header__menu.active {
		top: 0px;
	}
	.menu__list {
		display: block;
		margin-left: 20px;
		margin-top: 30px;
	}
	.menu__list li {
		margin: 0px 0px 30px 0px;
	}
	.hero {
		padding-top: 20px;
	}
	.menu__link {
		font-size: 28px;
		color: rgb(0, 0, 0);
	}
}
.hero {
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
}
.hero__container {
	display: flex;
}
@media (max-width: 1200px){
	.hero__container {
		row-gap: 20px;
		flex-direction: column;
	}
}
.hero__container::before,
.hero__container::after {
	content: "";
	position: absolute;
	background-color: #4475f2;
	height: 150%;
	box-shadow: 0 30px 60px 0 rgba(71, 74, 87, 0.25);
	width: 100vw;
	border-radius: 50px;
	bottom: 0;
	transform-origin: left bottom;
}
.hero__container::before {
	left: calc(50% + 30px);
	transform: skewX(-20deg);
	
}
.hero__container::after {
	transform: skewX(30deg);
	left: calc(50% + 444px);
}
.hero__content {
	flex: 0 1 50%;
	position: relative;
}
.content-hero {
	display: grid;
	align-content: start;
	gap: 30px;
	position: relative;
	z-index: 2;
}
@media (min-width: 1200px) {
	.content-hero {
		padding-right: 20px;
	}
}
@media (min-width: 479.98px) {
	.content-hero {
		justify-items: start;
	}
}
.content__title {
	font-size: 76px;
	font-weight: 800;
	color: #131e4b;
	line-height: 117%;
	letter-spacing: -1px;
}
.title__content {
	transform: translate(-50%, 0px);
	transition: all 0.3s ease 0s;
	opacity: 0;
}
.title__content._active {
	transform: translate(0px, 0px);
	opacity: 1;
	transition: all 1s ease 0.1s;
}
@media (max-width: 1200px) {
	.content-hero__text {
		color: black
	}
}
@media (max-width: 991.98px) {
	.content__title {
		font-size: 55px;
	}
	.content-hero__text {
		color: black
	}
}
@media (max-width: 479.98px) {
	.content__title {
		font-size: 42px;
		
	}
	.content-hero__text {
		color: black
	}
	.hero__button {
		justify-self: center;
	}
}
.content__title a{
	color: #131e4b;
	text-decoration: underline;
	text-shadow: 5px -5px 5px #fff;
}
.content__title a:hover{
	text-decoration: none;
}
.content-hero__text {
	transform: translate(-50%, 0px);
	transition: all 0.3s ease 0s;
	opacity: 0;
}
.content-hero__text._active {
	transform: translate(0px, 0px);
	opacity: 1;
	transition: all 1s ease 0.5s;
}
.content-hero__text p {
	line-height: 187.5%;
}
.content-hero__text p:not(:last-child) {
	margin-bottom: 10px;
}
.hero__button {
	transform: translate(-100%, 0px);
	opacity: 0;
}
.hero__button._active {
	transform: translate(0px, 0px);
	opacity: 1;
	transition: all 1s ease 0.9s;
}
.content-hero__button {
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
	border-radius: 10px;
	padding: 18px 54px;
	background: #131e4b;
	color: #131e4b;
	text-decoration: none;
	font-weight: 900;
	line-height: 1.6; 
	letter-spacing: 0.1em;
	position: relative;
	top: 0;
	transition: 0.5s; 
	box-shadow: 5px -5px 10px #fff;
	align-items: center;
	overflow: hidden;
}
.content-hero__button:hover {
	background: var(--clr);
	color: var(--clr);
	letter-spacing: 0.25em;
	box-shadow: 0 0 45px var(--clr);
}
.content-hero__button:before {
content: '';
position: absolute;
inset: 4px;
background: #fff;
z-index: 1;
border-radius: 10px;
}
.content-hero__button span {
	position: relative;
	z-index: 1;
}
.content-hero__button i::before {
	content: '';
	position: absolute;
	top: 0;
	left: 80%;
	width: 10px;
	height: 4px;
	background: white;
	transform: translateX(-50%) skewX(325deg);
	transition: 0.5s;
}
.content-hero__button:hover i::before {
	width: 20px;
	left: 20%;
}
.content-hero__button i::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 10px;
	height: 4px;
	background: white;
	transform: translateX(-50%) skewX(325deg);
	transition: 0.5s;
}
.content-hero__button:hover i::after {
	width: 20px;
	left: 80%;
} 
.hero__images {
	flex: 0 1 50%;
}
.images-hero {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 10px;
}
.images-hero__item {
    position: relative;
}
.images-hero__item img {
	width: 100%;
	border-radius: 15px;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.5);
	transition: transform 0.5s ease;
}
.images-hero__item:hover {
	z-index: 5;
}
.images-hero__item:hover img {
	z-index: 6;
	transform: scale(2.5);
}
.images-hero__item {
	opacity: 0;
	transition: all 0.8s ease 0.5s;
}
.images-hero__item._active:nth-child(1) {
	opacity: 1;
	transition: all 0.8s ease 0.3s;
}
.images-hero__item._active:nth-child(2) {
	opacity: 1;
	transition: all 0.8s ease 0.6s;
}
.images-hero__item._active:nth-child(3) {
	opacity: 1;
	transition: all 0.8s ease 0.9s;
}
.images-hero__item._active:nth-child(4) {
	opacity: 1;
	transition: all 0.8s ease 1.2s;
}
.images-hero__picture {
	width: 200px;
	max-width: 100%;
	border-radius: 15px;
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.5);
}
.images-hero__item--01 {
	grid-row: span 2;
	align-self: end;
	padding-bottom: 190px;
}
.images-hero__item--02 {
	padding-top: 100px;
}
.images-hero__item--03 {
	grid-row: span 2;
	align-self: center;
	justify-self: end;
	padding-bottom: 60px;
}
.images-hero__item--04 {
	align-self: end;
	justify-self: end;
	padding-bottom: 90px;
}
@media (max-width: 1200px) {
	.images-hero {
		align-self: center;
	}
}
.main__carousel {
	margin-top: 40px;
	text-align: center;
}
.aboutus__items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}
.aboutus__item {
	flex: 0 1 280px;
	display: grid;
	gap: 20px;
	justify-items: center;
	text-align: center;
}
.aboutus__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
	width: 120px;
	transform: scale(0);
	transition: all 0.8s ease 0s;
}
.aboutus__icon img {
	height: 120px;
	width: 120px;
}
.aboutus__title {
	color: black;
	font-weight: 700;
	font-size: 24px;
	transform: translate(0px, 50%);
	opacity: 0;
	transition: all 0.3s ease 0s;
}
.aboutus__text {
	line-height: 187.5%;
	transform: translate(0px, 50%);
	opacity: 0;
	transition: all 0.3s ease 0s;
}
.aboutus__item._active .aboutus__icon {
	transform: scale(1);
}
.aboutus__item._active .aboutus__title {
	transform: translate(0px, 0px);
	opacity: 1;
	transition: all 0.8s ease 0.6s;
}
.aboutus__item._active .aboutus__text {
	transform: translate(0px, 0px);
	opacity: 1;
	transition: all 0.8s ease 0.6s;
}
@media (max-width: 1209px) {
	.aboutus__items {
		justify-content: center;
	}
}
@media (max-width: 610px) {
	.aboutus__item {
		flex-grow: 1;
	}
}
.services__header-block {
	font-weight: 800;
}
.services__items {
	display: grid;
	gap: 100px;
}
@media (max-width: 1200px){
	.services__items {
		gap: 100px;
	}
}
@media (max-width: 991.98px){
	.services__items {
		gap: 70px;
	}
}
@media (max-width: 767.98px){
	.services__items {
		gap: 50px;
	}
}
.services__item {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.services__body {
	max-width: 420px;
}
.services__title {
	color: orangered;
	font-weight: 500;
	font-size: 32px;
	line-height: 125%; 
	text-align: center;
}
.services__title :not(:last-child){
	margin-bottom: 40px;
}
.services__title span {
	font-weight: bold;
	font-size: 36px;
}
.services__text h5 {
	text-align: center;
	color:#000000;
	font-size: 20px;
	margin: 15px 0px 5px 0px;
	font-weight: 500;
}
.services__text h5 a {
	font-weight: 700;
	color: black;
	text-decoration: underline;
}
.form__link:hover, .services__text h5 a:hover {
	text-decoration: none;
}
.form__link {
	font-weight: 700;
	color: #4475f2;
	text-decoration: underline;
}
.services__text li {
	list-style-type: disc;
	margin-left: 20px;
	line-height: 150%;
}
.services__text ol li {
	list-style-type: decimal;
	margin-left: 20px;
	line-height: 150%;
}
.services__text p {
	line-height: 187.5%;
}
.services__text p:not(:last-child){
	margin-bottom: 15px;
}
.services__picture {
	box-shadow: 0 30px 60px rgba(71,74, 87, 0.25);
	border-radius: 10px;
	max-width: 100%;
}
.explanation__text {
	margin-bottom: 5px;
	text-align: center;
	color: orangered;
}
.arrow {
	font-size: 20px; 
	font-weight: 900px; 
	margin: 0 10px; 
}

@media (min-width: 768px) {
	.services__body {
		max-width: 420px;
	}
	.services__item { 
		align-items: flex-start;
	}
	.services__item:nth-child(odd){
		flex-direction: row-reverse;
	}
	.services__item:nth-child(odd) .services__body {
		margin: 0 0 0 auto;
	}
	.services__image {
		flex: 1 1 250px;
	}
}
@media (max-width: 767.98px){
	.services-item {
		flex-direction: column;
	}
	.services__image {
		text-align: center;
	}
	.services__title {
		font-size: 28px;
	}
	.services__title :not(:last-child){
		margin-bottom: 20px;
	}
}
#services__border {
	border-radius: 15px;
	cursor: grab;
}
.portfolio__wrapper {
	min-width: 0;
	display: flex;
}
.swiper__img {
	display: block;
    margin: 0 auto 50px auto; 
    max-width: 100%; 
    max-height: 100%; 
	border-radius: 20px;
	border: 1px solid black;
}
.portfolio .swiper-pagination-bullet {
	width: 15px;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
}
.socials__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
}
.socials__item {
	flex: 0 1 200px;
	display: grid;
	gap: 20px;
	justify-items: center;
	text-align: center;
	transform: scale(0);
	transition: all 0.8s ease 0s;
}
.socials__item._active:nth-child(1) {
	transform: scale(1);
	transition: all 0.8s ease 0s;
}
.socials__item._active:nth-child(2) {
	transform: scale(1);
	transition: all 0.8s ease 0.05s;
}
.socials__item._active:nth-child(3) {
	transform: scale(1);
	transition: all 0.8s ease 0.1s;
}
.socials__item._active:nth-child(4) {
	transform: scale(1);
	transition: all 0.8s ease 0.15s;
}
.socials__item._active:nth-child(5) {
	transform: scale(1);
	transition: all 0.8s ease 0.2s;
}
.socials__item._active:nth-child(6) {
	transform: scale(1);
	transition: all 0.8s ease 0.25s;
}
.socials__item._active:nth-child(7) {
	transform: scale(1);
	transition: all 0.8s ease 0.30s;
}
.socials__item._active:nth-child(8) {
	transform: scale(1);
	transition: all 0.8s ease 0.35s;
}
.socials__item._active:nth-child(9) {
	transform: scale(1);
	transition: all 0.8s ease 0.40s;
}
.socials__item._active:nth-child(10) {
	transform: scale(1);
	transition: all 0.8s ease 0.45s;
}
.socials__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
	width: 120px;
}
.socials__link:hover {
	transform: scale(1.1);
}
.socials__item img {
	height: 80px;
	width: 80px;
}
.socials__title {
	color: black;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 30px;
}
.socials__text {
	line-height: 187.5%;
}
@media (max-width: 1209px) {
	.socials__items {
		justify-content: center;
	}
}
@media (max-width: 610px) {
	.socials__item {
		flex-grow: 1;
	}
}
@media (max-width: 457px) {
	.socials__item {
		flex: 1 1 130px;
	}
}
.swiper-wrapper {
	min-width: 0;
	display: flex;
}
.swiper-slide {
	width: auto;
	user-select: none; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
}
.swiper__content {
	flex: 1 1 280px;
	border: 1px solid #dedede;
	border-radius: 20px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	margin-bottom: 50px;
	box-shadow:
		0 0.767256498336792px 0.2138051986694336px 0 rgba(0, 0, 0, 0.02),
		0 3.650102138519287px 3.32008171081543px 0 rgba(0, 0, 0, 0.03),
		0 6.521552085876465px 5.017241477966309px 0 rgba(0, 0, 0, 0.04),
		0 11.3363094329834px 8.869047164916992px 0 rgba(0, 0, 0, 0.04),
		0 20.777610778808594px 15.422088623046875px 0 rgba(0, 0, 0, 0.05),
		0 10px 5px 0 rgba(0, 0, 0, 0.07);
}
.swiper__avatar-pic {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-bottom: 30px;
	object-fit: cover;
}
.swiper__text {
	max-width: 350px;
	flex-grow: 1;
	margin-bottom: 25px;
}
.swiper__text p {
	line-height: 187.5%; 
}
.swiper__text p:not(:last-child) {
	margin-bottom: 10px;
}
.swiper__name {
	color: #23a6f0;
	line-height: 187.5%; 
}
.swiper__job {
	font-weight: 500;
	color: #000;
}
.reviews__slide> *:last-child {
	margin-bottom: 0px;
}
.review__pagination .swiper-pagination-bullet{
		width: 15px;
		height: 20px;
		line-height: 20px;
		font-size: 14px;
}
.workflow__wrapper {
	width: 100%; 
    height: 350px;
    display: flex; 
    flex-direction: column;
}
.workflow__item {
	width: 90%; 
    height: 100%;
    margin: 0 auto;
    flex: none;
}
.wf__container {
	margin-top: 5px;
	width: 100%;
	height: 80%;
	border: 1px solid #dedede;
	border-radius: 50px;
	box-shadow: 10px 20px 10px 10px rgba(107, 112, 126, 0.5);
}
.workflow__title {
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 5px;
	color: #4475f2;
	margin: 20px auto;
}
.wf__cont {
	display: flex;
	gap: 50px;
}
.workflow__icon {
	margin: auto 0;
	max-width: 150px;
	max-height: 150px;
}
.workflow__icon img{
	max-width: 150px;
	max-height: 150px;
}
.workflow__info {
	display: flex;
	align-items: center;
}
.workflow__info a {
	color: #4475f2;
	font-weight: 700;
	text-decoration: underline;

}
.workflow__info a:hover {
	text-decoration: none;
}
.workflow__text {
	line-height: 1.6;
	justify-self: center;
	color: #131e4b;
}
.workflow__bullets.swiper-pagination-fraction {
	position: absolute;
	font-size: 20px;
	color: #000000;
	font-weight: 700;
}
@media (max-width: 768px) {
    .workflow__icon {
        display: none; 
    }
	.wf__cont {
        flex-direction: column; 
        gap: 20px; 
    }

    .workflow__title {
        font-size: 18px; 
        letter-spacing: 3px; 
    }

    .workflow__text {
        text-align: center; 
        padding: 0 20px; 
    }
}
.footer__container {
	display: flex;
	column-gap: 100px;
	row-gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}
.footer__item {
	text-align: center;
	display: flex;
	flex-direction: column;
}
.footer__title {
	color: #000;
	font-size: 24px;
	font-weight: 700;
	margin: 0px auto 25px;
}
._managed {
	margin-top: 35px;
}
.bottom {
	display: inline-block;
}
.social {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 220px;
	justify-content: space-evenly;
}
.social__item img {
	height: 60px;
	width: 60px;
}
.footer__link {
	height: 93px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	color: #000;
}
.social__item img:hover {
	transform: scale(1.1);;
}
.footer__copy {
	display: flex;
	text-align: center;
	color: #fff;
	background-color: #4475f2;
	align-items: center;
    justify-content: center;
	height: 70px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.footer__logo {
	max-height: 50px;
	padding-left: 20px;
	padding-right: 20px;
}
@media (max-width: 1200px) {
	.footer__body {
		margin-bottom: 70px;
	}
}
@media (max-width: 991.98px) {
	.footer__body {
		margin-bottom: 50px;
	}
}
@media (max-width: 767.98px) {
	.footer__body {
		margin-bottom: 30px;
	}
}
.form {
	min-width: 550px;
	margin: 0px auto;
	color: #030000;
	flex: 1 1 auto;
	max-width: 80%;
}
@media (max-width: 767.98px) {
	.form {
		min-width: auto;
		margin: 0 auto;
		max-width: 95%;
}
}
.form *{
	outline: none;
}
.form__body {
	position: relative;
}
.form__body::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background: rgba(51, 51, 51, 0.5) url("../img/loading.gif") center / 50px no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease 0s;
}
.form__body._sending::after {
	opacity: 1;
	visibility: visible;
}
.form__title {
	color: #000;
	font-size: 32px;
	font-weight: 900;
	margin-top: 30px;
	margin-bottom: 25px;
	text-align: center;
}
.form__item {
margin: 0px 0px 20px 0px;
}
.form__label {
	font-size: 18px;
	display: block;
	text-align: left;
	margin: 0px 0px 10px 0px;
}
.form__hint {
	font-size: 17px;
	color: grey;
	display: block;
	text-align: left;
	margin: 0px 0px 10px 0px;
}
.required-field::after {
    content: '*'; 
    font-size: 24px; 
    vertical-align: middle;
    margin-left: 4px;
	color: orangered;
}
.form__input {
	height: 50px;
	padding: 0px 20px;
	border-radius: 10px;
	width: 100%;
	font-size: 18px;
	border: 1px solid black;
	transition: all 0.5s ease 0s;
}
.form__input:focus {
box-shadow: 0 0 15px #4475f2;
}
.form__input._error {
	box-shadow: 0 0 15px red;
}
.text._error {
	box-shadow: 0 0 15px red;
}
textarea {
	border: 1px solid black;
	border-radius: 10px;
	width: 100%;
	resize: vertical;
	padding: 5px 20px;
}
.tooltip {
    display: none;
    position: absolute;
    top: -140px; 
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 20px rgba(4, 0, 255, 0.4);
    padding: 10px;
    border-radius: 10px;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
	text-indent: 25px;
    visibility: hidden;
}
@media (max-width: 865px) {
	.tooltip {
		top: -160px; 
	}
	
}
/* @media (max-width: 767.98px) {
	.tooltip {
		top: -200px; 
	}
} */
@media (max-width: 767px) {
	.tooltip {
		top: -200px; 
	}
}
@media (max-width: 620px) {
	.tooltip {
		top: -220px; 
	}
}
@media (max-width: 457px) {
	.tooltip {
		top: -260px; 
	}
}
.tooltip ul {
	text-indent: 10px;
}
.tooltip li {
    margin-top: 5px;
}
.form__item {
    position: relative;
}
.form__item:hover .tooltip,
.form__item:focus-within .tooltip {
    display: block;
    opacity: 1;
    visibility: visible;
}
.file__item {
	position: relative;
	display: flex;
    justify-content: center;
	max-width: 50%;
	margin: 0 auto;
}
.file__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	font-size: 0;
	cursor: pointer;
}
.file__button {
	display: inline-flex;
	width: 100%;
	min-height: 40px;
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	background-color: #4475f2;
	color: #fff;
	padding: 0px 20px;
	transition: all 0.3s;
	transition: background-color 0.5s ease 0s;
}
.file__preview {
    display: grid; 
    grid-auto-flow: column; 
    gap: 25px; 
    max-width: 100%; 
    overflow-x: auto; 
    padding: 20px 0; 
	justify-content: start;
}
.file__preview img{
	max-width: auto;
	height: 100px;
}
.delete-button {
    position: relative;
    top: -15px;
	width: 10px;
    height: 10px;
    border: none;
    color: #f00;
    font-size: 30px;
    cursor: pointer;
    font-weight: 900;
}
.checkbox_error .checkbox__label::before {
	box-shadow: 0 0 15px red;
}
input[type="checkbox"]._error + .checkbox__label::before {
    box-shadow: 0 0 15px red;
}
.checkbox__input {
	display: none;
}
.checkbox__input:checked + .checkbox__label::after {
	transform: scale(1);
}
.checkbox__label {
	font-size: 16px;
	line-height: 140%;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.checkbox__label::before {
	content: "";
	align-self: flex-start;
	flex: 0 0 24px;
	height: 24px;
	background-color: #fff;
	border-radius: 4px;
	margin: 0px 10px 0px 0px;
	border: 1px solid black;
}
.checkbox__label::after {
	transition: transform 0.3s ease 0s;
	content: "";
	width: 16px;
	height: 16px;
	position: absolute;
	top: 4px;
	left: 4px;
	background-color: #4475f2;
	border-radius: 4px;
	transform: scale(0);
}
.form__button {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	background: #000000;
	color: #000000;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 10px;
	box-shadow: 10px 20px 30px 10px rgba(107, 112, 126, 0.5);
	transition: all 0.3s;
	transition: background-color 0.5s ease 0s;
	position: relative;
	top: 0;
}
.form__button:hover {
	background: var(--clr);
	color: var(--clr);
	letter-spacing: 0.25em;
	box-shadow: 0 0 45px var(--clr);
}
.form__button:active {
	top: 3px;
}
.form__button:before {
	content: '';
	position: absolute;
	inset: 4px;
	background: #fff;
	z-index: 1;
	border-radius: 10px;
}
.form__button span {
	position: relative;
	z-index: 1;
}
.form__button i::before {
	content: '';
	position: absolute;
	top: 0;
	left: 80%;
	width: 10px;
	height: 4px;
	background: white;
	transform: translateX(-50%) skewX(325deg);
	transition: 0.5s;
}
.form__button:hover i::before {
	width: 20px;
	left: 20%;
}
.form__button i::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 10px;
	height: 4px;
	background: white;
	transform: translateX(-50%) skewX(325deg);
	transition: 0.5s;
}
.form__button:hover i::after {
	width: 20px;
	left: 80%;
} 
@media (max-width: 767px){
  .header__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Блок кнопок справа */
  .header__auth{
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 400;      /* выше всего */
    position: relative;
  }

  .header__burger{
    z-index: 500;
    position: relative;
  }
}
/* ===== Burger menu inner layout ===== */
.menu__inner{
    padding: 20px 16px 24px;
}

.menu__divider{
    height: 1px;
    background: rgba(255,255,255,.18);
    margin: 16px 0 12px;
}

/* ===== Account block inside burger menu ===== */
.menu__account{
    color: #fff;
}

.menu__accountTop{
    display:flex;
    align-items:center;
    gap:12px;
}

.menu__avatar{
    width:44px;
    height:44px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.menu__accountTitle{
    font-weight:900;
    font-size:16px;
    line-height:1.1;
}

.menu__accountSubtitle{
    font-size:12px;
    opacity:.85;
    margin-top:2px;
    word-break: break-word;
}

.menu__accountActions{
    margin-top:12px;
    display:flex;
    gap:10px;
    flex-wrap: wrap;
}

.menu__logoutForm{ margin:0; }

/* Buttons inside burger */
.menu__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
    border:1px solid rgba(255,255,255,.18);
    cursor:pointer;
    text-decoration:none;

    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .18s ease;
    box-shadow: 0 10px 26px rgba(0,0,0,.20);
}
.menu__btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.35); }
.menu__btn:active{ transform: translateY(0); opacity:.95; }

.menu__btn--ghost{ color:#ffffff; background: rgba(255,255,255,.04); }
.menu__btn--primary{ color:#0b1220; border-color: rgba(255,255,255,.35); background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(200,240,255,.9)); }
.menu__btn--danger{ color:#fff; border-color: rgba(255,90,90,.35); background: linear-gradient(135deg, rgba(255,70,70,.95), rgba(255,120,120,.85)); }

/* Make sure menu links are readable in burger */
@media (max-width: 767px){
    .header__menu{
        padding-top: 70px; /* у тебя было 80px — можно оставить */
    }
    .menu__list{
        margin-left: 0;  /* убираем лишний отступ если мешает */
        margin-top: 0;
    }
}
/* =========================
   FIX: desktop layout
   ========================= */

/* Desktop/tablet: hide burger account block inside menu */
@media (min-width: 768px){
  .menu__account,
  .menu__divider{
    display: none !important;
  }

  /* Don't add mobile paddings to desktop menu */
  .menu__inner{
    padding: 0 !important;
  }
}

/* Mobile only: apply inner padding + divider */
@media (max-width: 767px){
  .menu__inner{
    padding: 20px 16px 24px;
  }

  .menu__divider{
    height: 1px;
    background: rgba(255,255,255,.18);
    margin: 16px 0 12px;
  }
}
/* =========================
   DESKTOP: two-row menu
   ========================= */

@media (min-width: 768px){
  .menu__list{
    display: flex;
    flex-wrap: wrap;              /* ← разрешаем перенос */
    column-gap: 36px;             /* расстояние между пунктами по горизонтали */
    row-gap: 22px;                /* расстояние между строками */
    align-items: center;
    max-width: 680px;             /* ограничиваем ширину, чтобы меню красиво ломалось */
	justify-content: center;
    text-align: center;
  }

  .menu__item{
    flex: 0 0 auto;
  }
}

