/* Adaptability / Адаптивность */
@media (max-width: 1363px) {
	.container {
		max-width: 970px;
	}
}


@media (max-width: 992px) {
	.container {
		max-width: 750px;
	}

	.title {
		font-size: 72px;
		line-height: 70px;
	}

	.subtitle {
		font-size: 48px;
	}

	/* FOOTER */
	.footer {
		font-size: 36px;
	}

	.footer_container {
		padding: 50px 100px;
	}

	.footer_item a {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.container {
		max-width: 0;
	}
}


/* MENU */
@media (min-width: 1230px) {
    .menu_list {
        display: flex;
        align-items: center;
    }

    .menu_list > li {
        padding: 10px 0;
    }

	.menu_sub_list {
		transform: translate(0px, 10%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.2s ease 0s;
	}
}


@media (max-width: 1230px) {
	.header_logo img { 
		height: 60px;
	}

	.header_logo div { 
		font-size: 36px;
		padding-left: 25px;
	}

	.menu_sub_link {
		font-size: 36px;
		line-height: 55px;
		white-space: normal;
	}

	.bubbly-button {
		padding: 20px 30px;
		border-radius: 60px;
		font-size: 48px;
	}
	.menu_icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 50px;
		height: 38px;
		cursor: pointer;
	}
	
	.header_logo {
		z-index: 9;
	}

	.menu_icon span,
	.menu_icon::before,
	.menu_icon::after {
		left: 0;
		position: absolute;
		height: 10%;
		width: 100%;
		transition: all 0.2s ease 0s;
		background-color: #00171F;
	}

	.menu_icon::before,
	.menu_icon::after {
		content: "";
	}

	.menu_icon::before {
		top: 0;
	}

	.menu_icon::after {
		bottom: 0;
	}

	.menu_icon span {
		top: 50%;
		transform: scale(1) translate(0px, -50%);
	}

	.menu_icon._active span {
		transform: scale(0) translate(0px,-50%);
	}

	.menu_icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px,-50%);
	}

	.menu_icon._active::after {
		bottom: 50%;
		transform: rotate(45deg) translate(0px,50%);
	}

	.menu_body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: #ffffff;
		padding: 150px 0px 30px 0px;
		transition: left 0.2s ease 0s;
		overflow: auto;
	}

	.menu_body._active {
		left: 0;
	}

	.menu_body::before {
		content: "";
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		/*height: 70px;*/
		background-color: #00171F;

		border-bottom: 1px solid transparent;
		border-image-slice: 1;
		z-index: 2;
	}

    .menu_list > li {
		margin-bottom: 30px;
		flex-wrap: wrap;
		right: 0;
	}

    .menu_list > li::last-child {
		margin-bottom: 0px;
	}

    .menu_list > li._active .menu_sub_list{
		display: block;
	}


    .menu_link  {
		font-size: 64px;
	}

	.menu_sub_list {
		position: relative;
		flex: 1 1 100%;
		margin-bottom: 50px;
		display: none;
	}

	body._touch .menu_arrow {
		margin-left: 10px;
		transition: transform 0.2s ease 0s;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 22px solid #00A6FC;
	}

	#time + label {
		width: 150px;
		margin-left: 20px;
	}
}
