/* HEADER */
.header {
	background-color: #011124;
}
.header-inner {
	padding: 25px 0;
	background-color: white;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .logo img {
	height: 36px;
	width: auto;
}
.banner-top .content {
	position: relative;
	z-index: 100;
}
.banner-top .monospace {
	font-size: 33px;
	color: white;
	margin-right: 10px;
}
.menu-block {
	align-items: center;
	position: relative;
}
.menu-block .menu {
	gap: 25px;
}
.menu-block .btn {
	padding: 14px 24px;
	margin-left: 25px;
}
.menu-block li {
	position: relative;
	margin-top: 16px;
}
.menu-block li:after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background-color: #4F9AF5;
	border-radius: 27px;
	margin-top: 8px;
}
.menu-block li.active:after,
.menu-block li:hover:after {
	width: 100%;
	transition: .2s;
}
.header.scroll .menu-block li.active:after,
.header.scroll .menu-block li:hover:after {
	position: absolute;
	bottom: -4px;
}

.header.fixed {
	position: fixed;
    background: white;
    width: 100%;
    height: 60px;
	z-index: 777
}
.burger {
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 18px;
}
.burger span {
	width: 20px;
	height: 2px;
	background-color: #184A86;
	border-radius: 17px;
	display: block;
	transition: ease-in-out .2s;
}
.header.fixed .burger span:last-child {
	display: none;
}
.header.fixed .burger span:nth-child(1) {
	transform: rotate(45deg);
}
.header.fixed .burger span:nth-child(2) {
	transform: rotate(-45deg);
	margin-top: -8px;
}
.contacts-block {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	gap: 20px;
	flex-direction: column;
	position: absolute;
	right: 43px;
	bottom: -150px;
	opacity: 0;
	display: none;
	transition: opacity .2s ease;
}
.contacts-block .item {
	display: flex;
	align-items: center;
	gap: 5px;
}
.contacts-block.active {
	display: flex;
	opacity: 1;
	z-index: 100;
}

.footer .contacts-block  {
	bottom: 160px;
	right: -42px;
}
.footer .contacts-block a {
	color: #011124;
}

@media screen and (min-width: 1025px) {
	.burger {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.header .menu-block,
	.header .menu-block .menu {
		flex-direction: column;
		align-items: center;
	}
	.header .menu-block {
		display: none;
		background-color: white;
		position: fixed;
		width: 100vw;
		height: 100vh;
		top: 60px;
		left: 0;
		justify-content: center;
	}
	.header.fixed .menu-block {
		display: flex;
	}
	.header .menu-block .menu {
		gap: 37px;
		margin-top: -60px;
	}
	.menu-block .btn {
		margin-left: 0;
		margin-top: 37px;
	}
	.contacts-block,
	.header #contactsBtn {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.header .container {
		position: relative;
	}
	.header-row {
		padding: 0 15px;
	}
}

/* BANNER TOP */
.banner-top {
	background-color: #011124;
	color: white;
	padding-top: 68px;
	padding-bottom: 120px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.banner-top h1 {
	display: flex;
	font-size: 64px;
	margin-bottom: 22px;
}
.banner-top h1 sup {
	display: inline-block;
	margin-right: 18px;
	color: #4F9AF5;
}
.banner-top h1 .blue {
	color: #4F9AF5;
	display: flex;
}
.banner-top h1 span:first-of-type {
	display: inline-block;
	margin-left: 18px;
}
.banner-top h1 span a {
	display: inline-block;
	color: #4F9AF5;
}
.banner-top .text,
.banner-top p {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 20px;
	color: white;
}

.banner-top h3 {
	font-size: 24px;
	margin-bottom: 38px;
}
.banner-top .btn {
	padding: 20px 17px;
	width: 270px;
}

.banner-top .age {
	color: #4f9af4;
	font-weight: 500;
	font-size: 12px;
	margin-bottom: 6px;
}
.banner-top .promo {
	text-align: right;
	margin-top: -46px;
	margin-bottom: 92px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	gap: 3px;
	font-size: 12px;
	color: #4f9af4;
}
.banner-top .promo p {
	margin-bottom: 0;
	font-size: 12px;
	margin-right: 2px;
	color: #4f9af4;
}
.banner-top .promo.active img {
	transform: rotate(180deg);
	transition: transform 0.3s ease-out;
}

@media screen and (max-width: 991px) {
	.banner-top .promo p {
		/* font-size: 11px; */
		line-height: 167%;
	}
}

@media screen and (max-width: 767px) {
	.banner-top .promo {
		margin-bottom: 13px;
		padding-right: 15px;
	}
}

@media screen and (min-width: 768px) {
	.banner-top .content {
		width: 43% !important;
		flex: 0 0 43% !important;
	}
	.banner-top .image {
		width: 57% !important;
		max-width: 57% !important;
		flex: 0 0 57% !important;
	}
}

@media screen and (max-width: 767px) {
	.banner-top .image {
		order: 0;
		margin-bottom: 18px;
	}
	.banner-top .content {
		order: 1;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.banner-top h1 {
		font-size: 38px;
	}
}

@media screen and (max-width: 528px) {
	.banner-top .promo {
		height: 38px;
	}
}

/* Преимущества использования Booking */
.advantages {
	padding-top: 180px;
    padding-bottom: 60px;
    margin-top: -120px;
}
.advantages h2 {
	text-align: center;
	margin-bottom: 60px;
}
.advantages .items {
	gap: 10px;
	display: flex;
	flex-wrap: wrap;
}
.advantages .item {
	background-color: white;
	border-radius: 20px;
	padding: 30px 40px;
	width: 49%;
	flex: 49%;
}
.advantages .item a {
	color: #7492B6;
	text-decoration: underline;
}
.advantages .item .icon {
	width: 50px;
	height: 50px;
	background-color: #0073ff0f;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.advantages .item .icon img {
	width: 24px;
}
.advantages .item .title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

@media screen and (min-width: 481px) and (max-width: 767px) {
	.advantages .item {
		padding: 30px 20px;
	}
}

/* Создайте удобную и гибкую рабочую среду для эффективной работы */
.environment {
	position: relative;
	background-color: #011124;
	color: white;
	border-radius: 40px;
	padding-top: 100px;
	padding-bottom: 100px;
}
.environment h2 {
	text-align: center;
	width: 583px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
}
.environment .item {
	display: flex;
	align-items: center;
	margin-bottom: 37px;
}
.environment .item:last-child {
	margin-bottom: 0;
}
.environment .item .icon {
	width: 75px;
	min-width: 75px;
	height: 76px;
	border-radius: 20px;
	background-color: #184a864a;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 23px;
}
.environment .item .icon img {
	width: 35px;
}
.environment .item .title {
	font-size: 20px;
	font-weight: 500;
}
.environment .item .text {
	font-size: 16px;
}
.environment .dec_img {
	position: absolute;
}
.environment .dec_img_01 {
	top: 51px;
	left: 0;
}
.environment .dec_img_02 {
	right: 0;
	top: 60px;
}

@media screen and (max-width: 767px) {
	.environment {
		overflow: hidden;
		border-radius: 20px;
	}
	.environment .left {
		margin-bottom: 37px;
	}
	.environment .item {
		flex-direction: column;
		align-items: center;
	}
	.environment .item .icon {
		margin-right: 0;
		width: 35px;
		max-width: 35px;
		min-width: 35px;
		height: 35px;
		margin-bottom: 10px;
		border-radius: 10px;
	}
	.environment .item .icon img {
		width: 18px;
	}
	.environment .item .content {
		text-align: center;
		max-width: 243px;
	}
	.environment .item .title {
		font-size: 16px;
	}
	.environment .item .text {
		font-size: 14px;
		line-height: 24px;
	}
	.environment .dec_img_01 {
		top: -56px;
		left: -56px;
		width: 150px;
	}
	.environment .dec_img_02 {
		top: -56px;
		width: 150px;
		right: -56px;
	}
}

/* Все, что, нужно для комфортной организации пространства */
.space-orrganization {
	padding-top: 70px;
	padding-bottom: 50px;
}
.sp-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.space-orrganization h2 {
	text-align: center;
	margin-bottom: 20px;
}
.sp-header img {
	margin-bottom: 24px;
}
.space-orrganization .items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	gap: 10px;
}
.space-orrganization .item {
	background-size: contain;
	background-repeat: no-repeat;
	background-color: white;
	border-radius: 20px;
	padding: 40px 20px;	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}
.space-orrganization .first { 
	grid-area: 1 / 1 / 3 / 2;
	background-image: url('../img/sp_dec_01.svg');
	background-position: center bottom;
}
.space-orrganization .second {
	grid-area: 1 / 2 / 3 / 3; 
	background-image: url('../img/sp_dec_02.svg');
	background-position:  99% 93%;
	background-size: 85%;
}
.space-orrganization .third { 
	grid-area: 1 / 3 / 3 / 4; 
	background-image: url('../img/sp_dec_03.svg');
	background-position: 70% -4%;
}
.space-orrganization .fourth { 
	grid-area: 3 / 1 / 5 / 2;
	background-image: url('../img/sp_dec_04.svg');
	background-position: 83% 64%;
}
.space-orrganization .fifth { 
	grid-area: 3 / 2 / 4 / 4;
}
.space-orrganization .sixth { 
	grid-area: 4 / 2 / 5 / 4;
}
.space-orrganization .item:nth-last-child(-n+2) {
	flex-direction: row;
	padding: 40px;
}

.space-orrganization .item .title {
	font-size: 20px;
	font-weight: 500;
}
.space-orrganization .item.fifth .title {
	width: 60%;
}
.space-orrganization .item.sixth .right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.space-orrganization .item.sixth .name {
	font-size: 36px;
	opacity: 0.6;
}

 @media screen and (max-width: 991px) {
	.space-orrganization .items {	
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(6, 1fr);
	}
	.space-orrganization .first { 
		grid-area: 1 / 1 / 3 / 2; 
	}
	.space-orrganization .second {
		grid-area: 1 / 2 / 3 / 3;
	}
	.space-orrganization .third { 
		grid-area: 3 / 1 / 5 / 2;
	}
	.space-orrganization .fourth { 
		grid-area: 3 / 2 / 5 / 3;
	}
	.space-orrganization .fifth { 
		grid-area: 5 / 1 / 6 / 3;
	}
	.space-orrganization .sixth { 
		grid-area: 6 / 1 / 7 / 3;
	}
 }

 @media screen and (max-width: 767px) {
	.space-orrganization .items {
		display: block;
	}
	.space-orrganization .item {
		margin-bottom: 10px;
	}
	.space-orrganization .item:nth-last-child(-n+2) {
		flex-direction: column;
	}
	.space-orrganization .item .title {
		text-align: center;
		width: 100%;
		margin-bottom: 36px;
	}
	.space-orrganization .item.fifth .title,
	.space-orrganization .item.sixth .title  {
		width: 100%;
		margin-bottom: 36px;
	}
 }

 /* О компании */
 .about {
	position: relative;
	overflow: hidden;
	background-color: #011124;
	color: white;
	padding: 60px;
 }
 .about .gradient {
	position: absolute;
	z-index: 0;
 }
 .about .gradient-01 {
	top: 0;
	right: 0;
 }
 .about .gradient-02 {
	bottom: 0;
	left: 0;
 }
 .about h2 {
	font-size: 40px;
 }
 .about .title .monospace {
	position: absolute;
	top: 0px;
 }
 .about .item {
	display: flex;
	align-items: center;
	margin-bottom: 42px;
 }
 .about .item:last-child {
	margin-bottom: 0;
 }
 .about .item .title {
	font-size: 32px;
	padding: 12px 14px 14px 14px;
	background-color: #ffffff1a;
	border-radius: 10px;
	display: inline-block;
	margin-bottom: 14px;
 }
 .about .item .text {
	font-size: 16px;
	line-height: 28px;
 }
 .about .item.third {
	background-color: #ffffff80;
	background-color: #ffffff1a;
	border-radius: 20px;
	padding: 30px;
 }
 .about .item.third .image {
	margin-bottom: -30px;
 }

 @media screen and (max-width: 1199px) {
	.about .item.third {
		position: relative;
		overflow: hidden;
	}
	.about .item.third .image {
		position: absolute;
		bottom: 0;
		right: 0;
	}
 }

 @media screen and (max-width:  1024px) {
	.about h2 {
		margin-bottom: 38px;
	}
 }

 @media screen and (max-width: 767px) {
	.about .item {
		/* display: block; */
		flex-direction: column;
		justify-content: flex-start;
		text-align: center;
		height: 100%;
	}
	.about .item .image {
		order: 0;
		margin-bottom: 28px;
	}
	.about .item.third .image {
		order: 1;
	}
	.about .item .content {
		order: 1;
	}
	.about .item .title {
		font-size: 20px;
	}
	.about .item.third {
		padding: 14px;
	}
	.about .item.third .content {
		text-align: left;
		margin-bottom: 50px;
	}
	.about .item.third .title {
		margin-bottom: 20px;
	}
	.about .item.third .image {
		position: relative;
	}
 }

 /* ФОРМА */
 .form-block {
	padding-top: 80px;
	padding-bottom: 70px;
 }
 .form-block .container {
	position: relative;
 }
 .form-inner {
	background-color: white;
	padding: 25px 35px 60px 35px;
 }
 .form-block h3 {
	font-size: 32px;
	text-align: center;
	margin-bottom: 30px;
 }
 .form-block .text {
	text-align: center;
	font-size: 20px;
	color: #184A86;
	margin-bottom: 30px;
 }
 .form-block .form {
	display: flex;
	flex-direction: column;
 }
 .form-block .form-input {
	background-color: #F7F7F7;
	color: #52667D;
	border: none;
	outline: none;
	border-radius: 15px;
	height: 64px;
	padding: 20px;
	margin-bottom: 20px;
 }
 .form-block .form-input::placeholder {
	color: #52667D;
 }
 .form-block .download {
	height: 64px;
	padding: 20px 20px 20px 50px;
	margin-bottom: 40px;
	background-color: #4f9af51a;
	color: #4F9AF5;
	font-weight: bold;
	border-radius: 15px;
	display: flex;
	align-items: center;
	cursor: pointer;
	background-image: url('../img/icons/download.svg');
	background-repeat: no-repeat;
	background-position: 20px 20px;
	transition: ease-in-out .2s;
 }
 .download:hover {
	background-color: #4f9af566;
	color: #184A86;
	background-image: url('../img/icons/download-hover.svg');
 }
 .download:focus,
 .download:active {
	background-color: #4f9af599;
 }
 .form-block .form-checkbox.polytics {
	font-size: 15px;
    margin-bottom: 15px;
 }
 .form-block .form-checkbox.polytics input[type='checkbox'] {
 	margin-right: 2px;
 }
 .form-block .form-checkbox.polytics a,
 .form-block .form-checkbox.polytics span {
	color: #174a86;
	cursor: pointer;
 }
 .form-block .submit {
	height: 60px;
 }
 .form-block .form-decor {
	position: absolute;
 }
 .form-block .form-decor-left {
	left: -14px;
 }
 .form-block .form-decor-right {
	right: -54px;
 }

 @media screen and (max-width: 767px) {
	.form-block .form-decor {
		display: none;
	}
 }

 /* FOOTER */
 .footer {
	background-color: #011124;
	color: white;
	padding-top: 40px;
	padding-bottom: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	padding-bottom: 20px;
 }
 .footer a {
	color: white;
 }
 .footer .top {
	display: flex;
	justify-content: space-between;
 }
 .footer .left {
	width: 88%;
 }
 .footer .menu .title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 27px;
 }
 .footer-contacts {
	display: flex;
	flex-direction: column;
 }
 .footer-contacts a {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
 }
 .footer-contacts a img {
	margin-right: 5px;
 }
 .footer .menu-02 a {
	display: block;
	margin-bottom: 20px;
	color: #B0B5BB;
 }
 .footer .contactsBtn {
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
 }
 .footer .copyright {
	margin-top: 38px;
	background-color: #52667D;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1000px;
 }
 .footer .copyright span:first-of-type {
	display: inline-block;
 }

 @media screen and (max-width: 1199px) {
	.footer .left {
		width: 80%;
	}
 }

 @media screen and (max-width: 767px) {
	.footer .left {
		width: 70%;
	}
	.footer .logo {
		margin-bottom: 40px;
	}
	.footer .menu-01 {
		margin-bottom: 50px;
	}
 }
 html {
	scroll-behavior: smooth;
}

input[type="submit"] {
	border: none;
	outline: none;
}

.info-success {
	display: none;
	background-color: #57ac57;
	color: white;
	margin-top: 15px;
	font-weight: bold;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-radius: 15px;
}
.info-success.success {
	display: flex;
}

.header.scroll {
	z-index: 999;
}
@media screen and (min-width: 1025px) {

	.header.scroll {
		position: fixed;
		width: 100%;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		height: 53px;
		z-index: 999;
		background: white;
	}
	.header.scroll .header-inner {
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 100%;
		padding-top: 1px;
	}
	.header.scroll .menu-block .btn {
		padding: 5px 12px;
		font-size: 12px;
		border-radius: 7px;
	}
	.header.scroll .logo img {
		height: 20px;
	}
	.header.scroll .menu-block li {
		margin-top: 0;
		display: flex;
	}
}

#footnote {
	padding-bottom: 15px;
}
.footnote-link {
	text-decoration: none;
	font-weight: bold;
}
.advantages .item a.footnote-link {
	text-decoration: none;
	color: #011124;
}

.form-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 38px;
    border-radius: 21px;
	margin-top: -10000px;
	transition: all .2s ease;
	z-index: 778;
}
.form-popup.active {
	margin-top: 0;
}
.form-popup .close-btn {
	position: absolute;
    top: 7px;
    right: 16px;
    cursor: pointer;
    padding: 5px;
}

#footnotes {
	margin-bottom: 32px;
}

/* ПОЛИТИКА КОНФИДЕЦИАЛЬНОСТИ */
.section-polytic {
	padding-top: 68px;
	padding-bottom: 87px;
}
.section-polytic h1 {
	margin-bottom: 33px;
}
.section-polytic p {
	margin-bottom: 12px;
}
.section-polytic a {
	color: #184A86;
}