@font-face {
	font-family: Rob T;
	src: url("../fonts/Roboto-Thin.ttf");
}

@font-face {
	font-family: Rob TI;
	src: url("../fonts/Roboto-ThinItalic.ttf");
}

@font-face {
	font-family: Rob L;
	src: url("../fonts/Roboto-Light.ttf");
}

@font-face {
	font-family: Rob LI;
	src: url("../fonts/Roboto-LightItalic.ttf");
}

@font-face {
	font-family: Rob R;
	src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
	font-family: Rob RI;
	src: url("../fonts/Roboto-Italic.ttf");
}

@font-face {
	font-family: Rob M;
	src: url("../fonts/Roboto-Medium.ttf");
}

@font-face {
	font-family: Rob MI;
	src: url("../fonts/Roboto-MediumItalic.ttf");
}

@font-face {
	font-family: Rob B;
	src: url("../fonts/Roboto-Bold.ttf");
}

@font-face {
	font-family: Rob BI;
	src: url("../fonts/Roboto-BoldItalic.ttf");
}

@font-face {
	font-family: Rob G;
	src: url("../fonts/Roboto-Black.ttf");
}

@font-face {
	font-family: Rob GI;
	src: url("../fonts/Roboto-BlackItalic.ttf");
}

@font-face {
	font-family: MT;
	src: url("../fonts/Montserrat-Thin.ttf");
}

@font-face {
	font-family: MTI;
	src: url("../fonts/Montserrat-ThinItalic.ttf");
}

@font-face {
	font-family: ML;
	src: url("../fonts/Montserrat-Light.ttf");
}

@font-face {
	font-family: MLI;
	src: url("../fonts/Montserrat-LightItalic.ttf");
}

@font-face {
	font-family: MR;
	src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
	font-family: MRI;
	src: url("../fonts/Montserrat-Italic.ttf");
}

@font-face {
	font-family: MM;
	src: url("../fonts/Montserrat-Medium.ttf");
}

@font-face {
	font-family: MMI;
	src: url("../fonts/Montserrat-MediumItalic.ttf");
}

@font-face {
	font-family: MB;
	src: url("../fonts/Montserrat-Bold.ttf");
}

@font-face {
	font-family: MBI;
	src: url("../fonts/Montserrat-BoldItalic.ttf");
}

@font-face {
	font-family: MG;
	src: url("../fonts/Montserrat-Black.ttf");
}

@font-face {
	font-family: MGI;
	src: url("../fonts/Montserrat-BlackItalic.ttf");
}

html {
	background: transparent !important;
}

body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	width: 100%;
	word-wrap: break-word;
	font-family: mr;
	font-size: 20px;
	cursor: default;
	color: white
}

a {
	text-decoration: none;
	color: #202020;
}

details>summary {
	list-style: none;
}

details>summary::-webkit-details-marker {
	display: none;
}

input:focus,
textarea:focus,
select:focus {
	outline: none !important;
}

iframe {
	overflow: hidden;
}

.cc {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.cl {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	text-align: left;
}

.cr {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	text-align: right;
}

h1 {
	font-size: 60px;
	padding: 0px;
	margin: 0px;
	font-family: ml;
}

h2 {
	font-family: mb;
	font-size: 60px;
	padding: 0px;
	margin: 0px;
	color: #385680;
}

h3 {
	font-family: Rob r;
	font-size: 30px;
	padding: 0px;
	margin: 0px;
}

h4 {
	font-family: mb;
	font-size: 24px;
	padding: 0px;
	margin: 0px;
}

.h2-light {
	font-family: mt;
	font-size: 60px;
	padding: 0px;
	margin: 0px;
	color: white;
}



.preloader {
	/*фиксированное позиционирование*/
	position: fixed;
	/* координаты положения */
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	/* фоновый цвет элемента */
	background: #385680;
	/* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
	z-index: 1001;
}

.preloader__row {
	position: relative;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	margin-top: -35px;
	margin-left: -35px;
	text-align: center;
	animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
	position: absolute;
	display: inline-block;
	top: 0;
	background-color: #fff;
	border-radius: 100%;
	width: 35px;
	height: 35px;
	animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
	top: auto;
	bottom: 0;
	animation-delay: -1s;
}

@keyframes preloader-rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes preloader-bounce {

	0%,
	100% {
		transform: scale(0);
	}

	50% {
		transform: scale(1);
	}
}

.loaded_hiding .preloader {
	transition: 0.3s opacity;
	opacity: 0;
	display: none;
}

.loaded .preloader {
	display: none;
}

* {
	scroll-behavior: smooth;
}






.element-animation {
	/* Скроем элемент в начальном состоянии */
	opacity: 0;
	transform: translateY(40px);
}

.element-animation.element-show {
	opacity: 1;
	transition: all 1s;
	transform: translateY(0%);
}





.input-1 {
	width: 260px;
	padding: 10px;
	font-size: 20px;
	border-radius: 0px;
	border: 1px solid #385680;
	height: 25px;
	margin-top: 10px;
	height: 30px;
	text-align: center;
}

.button-1 {
	width: 282px;
	border-radius: 0px;
	border: 0px solid #385680;
	padding: 10px;
	background-color: #385680;
	color: white;
	font-size: 20px;
	font-family: Rob r;
	margin-top: 10px;
	height: 50px;
	text-align: center;
	cursor: pointer;
}

.modal-button {
	cursor: pointer;
}

.checkbox-1 {
	font-size: 14px;
	padding-top: 20px;
}


.form-1 {
	text-align: center;
	padding-top: 20px;
}





.b1 {
	background: url(../img/b1-fon.jpg) no-repeat 50% 50% / cover;
	height: 940px;
}

.b1-cc {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.b1-menu {
	display: flex;
	justify-content: space-between;
	max-width: 100%;
}

.menu-logo {
	padding: 24px;
	max-width: 120px;
}

.b1-menu-box {
	padding: 24px;
	transition: 0.3s;
	color: white;
}

.b1-menu-box:hover {
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid white;
}

.b1-menu-button-1 {
	padding: 24px;
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.15);
	border-right: 1px solid white;
	border-color: rgba(255, 255, 255, 0.3);
	color: white;
}

.b1-menu-button-2 {
	padding: 24px;
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.15);
	color: white;
}

.b1-menu-button-1:hover {
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.3);
}

.b1-menu-button-2:hover {
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.3);
}

.b1-content {
	padding-top: 32px;
}

.b1-container-1 {
	width: 620px;
}

.b1-container-2 {
	width: 620px;
	text-align: left;
}

.b1-thesis {
	font-family: mri;
	/*padding-bottom: 40px;*/
}

.b1-text {
	font-family: ml;
	padding-top: 40px;
}

.b1-button-1 {
	padding: 24px;
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.15);
	border-right: 1px solid white;
	border-color: rgba(255, 255, 255, 0.3);
	color: white;
}

.b1-button-2 {
	padding: 24px;
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.15);
	color: white;
}

.b1-button-1:hover {
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.3);
}

.b1-button-2:hover {
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.3);
}

.b1-cl {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	text-align: left;
	padding-top: 50px;
}

.b1-mail {
	color: white;
	position: absolute;
	bottom: 60px;
	left: 212px;
	letter-spacing: 3px;
	font-family: mb;
}

.b1-tel {
	color: white;
	position: absolute;
	bottom: 60px;
	right: 212px;
	letter-spacing: 3px;
	font-family: mb;
}

.b1-mobileNumber {
	display: none;
}

.b1-mail-line {
	width: 0px;
	height: 3px;
	background-color: white;
	transition: 1.5s;
	margin-top: 5px;
}

.b1-tel-line {
	width: 0px;
	height: 3px;
	background-color: white;
	transition: 1.5s;
	margin-top: 5px;
}

.b1-mail:hover .b1-mail-line {
	width: 290px;
	transition: 0.25s;
}

.b1-tel:hover .b1-tel-line {
	width: 130px;
	transition: 0.25s;
}

.b1-frame {
	position: relative;
	display: none;
}

.b2 {
	margin-top: 100px;
}

.b2-container-1 {
	width: 520px;
	text-align: left;
	color: #385680;
}

.b2-container-2 {
	width: 720px;
	color: #385680;
	text-align: left;
}

.b2-text {
	padding-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
}

.b2-img {
	margin-top: 150px;
	height: 250px;
}

.b2-number {
	color: #ccd4e5;
	font-family: mg;
	font-size: 111px;
	width: 190px;
}

.b2-box-text {
	text-align: left;
	width: 340px;
	padding-left: 40px;
	padding-top: 20px;
}

.b2-icon {
	margin-left: -110px;
	margin-top: 60px;
}

.b2-box-1 {
	margin-left: -80px;
	transition: 0.3s;
}

.b2-box-2 {
	margin-left: 0px;
	transition: 0.3s;
}

.b2-box-3 {
	margin-left: 20px;
	transition: 0.3s;
}

.b2-box-4 {
	margin-left: -80px;
	transition: 0.3s;
}

.b2-box-1:hover {
	transition: 0.3s;
	margin-left: -55px;
}

.b2-box-2:hover {
	transition: 0.3s;
	margin-left: 15px;
}

.b2-box-3:hover {
	transition: 0.3s;
	margin-left: 35px;
}

.b2-box-4:hover {
	transition: 0.3s;
	margin-left: -55px;
}

.b2-cl {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	text-align: left;
}

.b2-buttonWrap {
	box-sizing: border-box;
	display: flex;
	gap: 20px;
	width: 100%;
}

.b2-buttonWrap a {
	width: 100%;
}

.b2-button-detail {
	display: flex;
	width: calc(100% - 40px);
	text-align: center;
	justify-content: center;
	background-color: #ccd4e5;
	padding: 20px 20px;
	color: #385680;
	font-size: 18px;
	outline: 0px solid #385680;
	transition: 0.2s;
	outline-offset: 0px;
}


.b2-button-detail:hover {
	outline: 1px solid #385680;
	transition: 0.2s;
	outline-offset: -8px;
}

.b3 {
	margin-top: 80px;
}

.b3-container-1 {
	width: 820px;
	color: #385680;
	font-family: mb;
	font-size: 60px;
	text-align: right;
}

.b3-container-2 {
	width: 420px;
}

.b3-button-1 {
	text-align: center;
	background-color: #ccd4e5;
	width: 300px;
	margin: auto;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #385680;
	outline: 0px solid #385680;
	transition: 0.2s;
	outline-offset: 0px;
}



.b3-button-2 {
	background-color: #cde6d0;
	width: 300px;
	margin: auto;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #478038;
	outline: 0px solid #478038;
	transition: 0.2s;
	outline-offset: 0px;
}


.b3-button-1:hover {
	outline: 1px solid #385680;
	transition: 0.2s;
	outline-offset: -8px;
}

.b3-button-2:hover {
	outline: 1px solid #478038;
	transition: 0.2s;
	outline-offset: -8px;
}

.b3-button-tg {
	display: none;
}





.b4 {
	background: url("../img/b4-fon.png") no-repeat 50% 100% / cover;
	height: 1230px;
	text-align: center;
	padding-top: 650px;
	margin-top: -400px;
}

.b4-content {
	width: 1240px;
	margin: auto;
	margin-top: 50px;
}

.b4-text {
	text-align: left;
	width: 1120px;
	padding-left: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.b4-icon-container {
	width: 100px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}





.b5 {
	text-align: center;
	padding-top: 100px;
}

.b5-container-1 {
	width: 740px;
	margin-top: 100px;
}

.b5-container-2 {
	width: 500px;
	margin-top: 100px;
}

.b5-box-1 {
	width: 370px;
	background-color: #ccd4e5;
	color: #385680;
	padding-top: 20px;
	padding-bottom: 20px;
}

.b5-box-2 {
	width: 370px;
	color: #385680;
	padding-top: 20px;
	padding-bottom: 20px;
}

.b5-box-3 {
	width: 370px;
	color: #385680;
	padding-top: 20px;
	padding-bottom: 20px;
}

.b5-box-4 {
	width: 370px;
	color: #385680;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ccd4e5;
}

.b5-img {
	width: 100%;
}

.b5-price {
	color: #385680;
	text-align: left;
	font-size: 24px;
	margin-top: 80px;
}

.b5-old-price {
	font-family: mt;
	text-decoration: line-through;
	font-size: 46px;
	color: #949cb3;
}

.b5-new-price {
	font-family: mb;
	font-size: 46px;
}

.b5-text {
	width: 740px;
}

.b5-h2 {
	font-family: mt;
}

.b5-under-container-1 {
	text-align: center;
	color: #385680;
	width: 240px;
	padding-left: 20px;
	padding-right: 20px;
}

.b5-under-container-2 {
	text-align: center;
	color: #385680;
	width: 40px;
	text-align: center;
	font-size: 60px;
	font-family: mt;
	padding-top: 60px;
}

.b5-under-container-3 {
	text-align: center;
	color: #385680;
	width: 280px;
	font-size: 132px;
	font-family: mt;
	padding-top: 15px;
}

.b5-number {
	font-size: 60px;
	font-family: ml;
}

.b5-link {
	font-family: mb;
	color: #385680;
}

.b5-link:hover {
	text-decoration: underline;
}

.b5-content-2 {
	padding-top: 80px;
}

.b5-button-container {
	padding-top: 50px;
}

.b5-menu-button-1 {
	padding: 24px;
	transition: 0.3s;
	background-color: #ccd4e5;
	border-right: 1px solid white;
	color: #385680;
}

.b5-menu-button-2 {
	padding: 24px;
	transition: 0.3s;
	background-color: #ccd4e5;
	color: #385680;
}

.b5-menu-button-1:hover {
	transition: 0.3s;
	background-color: #cde6d0;
	color: #478038;
}

.b5-menu-button-2:hover {
	transition: 0.3s;
	background-color: #cde6d0;
	color: #478038;
}

.b5-br {
	display: none;
}

.b6 {
	background: url(../img/b6-fon.png) no-repeat 50% 0% / cover;
	padding-top: 300px;
	text-align: center;
}

.b6-container-1 {
	width: 620px;
	margin-top: 80px;
	margin-bottom: 50px;
}

.b6-container-2 {
	width: 600px;
	text-align: left;
	color: #385680;
	margin-top: 80px;
	padding: 15px 20px;
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.b6-link {
	color: #385680;
	transition: 0.3s;
}

.b6-link:hover {
	color: #478038;
	transition: 0.3s;
}

.b7 {
	background-color: #ccd4e5;
	padding: 5px;
	padding-left: 20px;
	color: #385680;
}

.whatsapp {
	position: fixed;
	right: 137px;
	bottom: 55px;
	z-index: 100;
	width: 56.1px;
	height: 56.1px;
	border-radius: 50%;
	transition: 0.3s;
	background-color: #00a500;
}

@media screen and (min-width : 1px) and (max-width : 1279px) {

	.whatsapp {
		position: fixed;
		left: 52px;
		bottom: 52px;
		z-index: 100;
	}

	body {
		padding: 0;
		margin: 0;
		overflow-x: hidden;
		width: 100%;
		word-wrap: break-word;
		font-family: mr;
		font-size: 16px;
		cursor: default;
		color: white
	}

	.menu-logo {
		margin-top: 60px;
		padding: 24px;
		max-width: 120px;
	}


	.b1 {
		background: url(../img/b1-fon.jpg) no-repeat 60.35% 50% / cover;
		height: auto;
	}

	.b1-menu-item-1 {
		position: static;
		top: 0px;
		left: 0px;
		margin: auto;
		padding-top: 20px;
		text-align: center;
	}

	.b1-menu-item-3 {
		position: absolute;
		right: 0px;
		display: none;
	}

	.b1-menu-item-2 {
		position: absolute;
		left: 310px;
		display: none;
	}

	.b1-cc {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		flex-direction: column-reverse;
	}

	.b1-img {
		width: 100%;
		margin-top: 40px;
		margin-bottom: 40px;
		max-width: 620px;
	}

	.b1-mail {
		display: none;
	}

	.b1-tel {
		display: none;
	}

	.b1-mobileNumber {
		display: flex;
		align-items: center;
		color: white;
		letter-spacing: 3px;
		font-family: mb;
		height: 53px;
		padding-left: 24px;
	}

	.b1-frame {
		background-color: #385680;
		z-index: 10000;
		position: fixed;
		display: flex;
		width: 100%;
		justify-content: space-between;
		top: 0px;
	}

	.b1-frame-new {
		background-color: #fff;
	}

	.b1-menu {
		flex-direction: column-reverse;
		align-items: center;
	}

	.b1-tel:hover .b1-tel-line {
		width: 108px;
		transition: 0.25s;
	}


	.b1-content {
		padding-top: 20px;
		width: 100%;
	}

	.b1-container-2 {
		width: 96%;
		margin: auto;
		text-align: center;
	}

	.b1-container-1 {
		width: 96%;
		margin: auto;
	}

	.b1-thesis {
		font-family: mri;
		/*padding-bottom: 20px;*/
	}

	h1 {
		font-size: 38px;
		padding: 0px;
		margin: 0px;
		font-family: ml;
	}


	.b1-cl {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		text-align: left;
		padding-top: 50px;
	}

	.b1-br {
		display: none;
	}

	.b1-button-1 {
		font-size: 14px;
		padding: 14px;
		transition: 0.3s;
		background: rgba(255, 255, 255, 0.15);
		border-right: 1px solid white;
		border-color: rgba(255, 255, 255, 0.3);
		color: white;
		position: relative;
		z-index: 2;
	}

	.b1-button-2 {
		padding: 14px;
		transition: 0.3s;
		background: rgba(255, 255, 255, 0.15);
		color: white;
		position: relative;
		z-index: 2;
	}

	.b1-text {
		font-family: ml;
		padding-top: 40px;
		max-width: 620px;
		margin: auto;
	}





	h2 {
		font-family: mb;
		font-size: 33px;
		padding: 0px;
		margin: 0px;
		color: #385680;
	}

	.h2-light {
		font-family: mt;
		font-size: 33px;
		padding: 0px;
		margin: 0px;
		color: white;
	}

	.b2 {
		margin-top: 60px;
		text-align: center;
	}

	.b2-container-1 {
		width: 96%;
		text-align: center;
		color: #385680;
		margin: auto;
		max-width: 620px;
	}

	.b2-text {
		padding-top: 40px;
		text-align: left;
	}

	.b2-container-2 {
		width: 96%;
		margin: auto;
		color: #385680;
		text-align: center;
	}

	.b2-img {
		margin-top: 50px;
		height: 150px;
		display: none;
	}

	.b2-box-1 {
		margin-left: 0px;
		max-width: 320px;
	}

	.b2-box-2 {
		margin-left: 0px;
		max-width: 320px;
	}

	.b2-box-3 {
		margin-left: 0px;
		max-width: 320px;
	}

	.b2-box-4 {
		margin-left: 0px;
		max-width: 320px;
	}

	.b2-box-1:hover {
		transition: 0.3s;
		margin-left: 0px;
	}

	.b2-box-2:hover {
		transition: 0.3s;
		margin-left: 0px;
	}

	.b2-box-3:hover {
		transition: 0.3s;
		margin-left: 0px;
	}

	.b2-box-4:hover {
		transition: 0.3s;
		margin-left: 0px;
	}

	.b2-number {
		color: #ccd4e5;
		font-family: mg;
		font-size: 111px;
		width: 100%;
		text-align: center;
	}

	.b2-icon {
		margin-left: -180px;
		margin-top: 60px;
	}

	.b2-box-text {
		text-align: center;
		width: 96%;
		margin: auto;
		padding-left: 0px;
		padding-top: 20px;
	}

	.b2-buttonWrap {
		flex-wrap: wrap;
	}

	h4 {
		font-family: mb;
		font-size: 20px;
		padding: 0px;
		margin: 0px;
	}

	.b2-cl {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		text-align: left;
	}





	.b3 {
		margin-top: 50px;
	}

	.b3-container-1 {
		width: 96%;
		color: #385680;
		font-family: mb;
		font-size: 36px;
		text-align: center;
		margin: auto;
	}

	.b3-container-2 {
		width: 96%;
		margin: auto;
	}

	.b3-button-1 {
		background-color: #ccd4e5;
		width: 300px;
		margin: auto;
		margin-bottom: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
		color: #385680;
		margin-top: 20px;
		transition: 0.3s;
		outline: 0px solid #385680;
		outline-offset: 0px;
	}

	.b3-button-2 {
		background-color: #cde6d0;
		width: 300px;
		margin: auto;
		margin-bottom: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
		color: #478038;
		transition: 0.3s;
	}

	.b3-button-tg {
		display: none;
		background-color: #86d7ffa3;
		width: 300px;
		margin: auto;
		margin-bottom: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
		color: #1CA0E0;
		outline: 0px solid #86d7ffa3;
		transition: 0.2s;
		outline-offset: 0px;
	}

	.b3-button-tg {
		display: block;
	}





	.b4-icon-container {
		width: 100%;
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
	}

	.b4-content {
		width: 96%;
		margin: auto;
		margin-top: 50px;
	}

	.b4 {
		background: url("../img/b4-fon-1.png") no-repeat 50% 0% / cover;
		background-color: #385680;
		height: auto;
		text-align: center;
		padding-top: 50px;
		margin-top: 50px;
		padding-bottom: 10px;
	}

	.b4-text {
		text-align: left;
		width: 100%;
		padding-left: 0px;
		margin-top: 20px;
		margin-bottom: 20px;
		max-width: 620px;
		margin: auto;
	}

	.b1-menu-button-1 {
		padding: 7px;
		padding-top: 13px;
		padding-bottom: 13px;
		transition: 0.3s;
		background: rgba(255, 255, 255, 0.15);
		border-right: 1px solid white;
		border-color: rgba(255, 255, 255, 0.3);
		color: white;
		font-size: 15px;
	}

	.b1-menu-button-2 {
		padding: 7px;
		padding-top: 13px;
		padding-bottom: 13px;
		transition: 0.3s;
		background: rgba(255, 255, 255, 0.15);
		color: white;
		font-size: 15px;
	}

	.b4-button-container {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.b5-container-1 {
		width: 96%;
		margin-top: 50px;
		max-width: 620px;
	}

	.b5 {
		text-align: center;
		padding-top: 50px;
	}

	.b5-box-1 {
		width: 100%;
		background-color: #ccd4e5;
		color: #385680;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.b5-box-2 {
		width: 100%;
		color: #385680;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.b5-box-3 {
		width: 100%;
		color: #385680;
		padding-top: 20px;
		padding-bottom: 20px;
		background-color: #ccd4e5;
	}

	.b5-box-4 {
		width: 100%;
		color: #385680;
		padding-top: 20px;
		padding-bottom: 20px;
		background-color: #fff;
	}

	h3 {
		font-family: Rob r;
		font-size: 24px;
		padding: 0px;
		margin: 0px;
	}

	.b5-text {
		width: 96%;
	}

	.b5-br {
		display: block;
	}

	.b5-price {
		color: #385680;
		text-align: center;
		font-size: 24px;
		margin-top: 40px;
	}

	.b5-old-price {
		font-family: mt;
		text-decoration: line-through;
		font-size: 27px;
		color: #949cb3;
	}

	.b5-new-price {
		font-family: mb;
		font-size: 27px;
	}

	.b5-img {
		width: 100%;
		margin-top: -60px;
		max-width: 620px;
	}

	.b5-container-2 {
		width: 96%;
		margin: auto;
		margin-top: 100px;
		padding-bottom: 40px;
	}

	.b5-under-container-1 {
		text-align: center;
		color: #385680;
		width: 100%;
		margin: auto;
		padding-left: 20px;
		padding-right: 20px;
	}

	.b5-under-container-2 {
		text-align: center;
		color: #385680;
		width: 100%;
		text-align: center;
		font-size: 60px;
		font-family: mt;
		padding-top: 0px;
	}

	.b5-under-container-3 {
		text-align: center;
		color: #385680;
		width: 280px;
		font-size: 60px;
		font-family: ml;
		padding-top: 15px;
	}

	.b5-number {
		font-size: 60px;
		font-family: ml;
	}

	.b5-menu-button-1 {
		padding: 13px;
		transition: 0.3s;
		background-color: #ccd4e5;
		border-right: 1px solid white;
		color: #385680;
	}

	.b5-menu-button-2 {
		padding: 13px;
		transition: 0.3s;
		background-color: #ccd4e5;
		color: #385680;
	}

	.b6-container-1 {
		width: 620px;
		margin-top: 80px;
		margin-bottom: 50px;
		display: none;
	}

	.b6-container-2 {
		width: 100%;
		text-align: center;
		color: #385680;
		margin-top: 0px;
		padding-left: 0px;
		padding-right: 0px;
		padding-top: 50px;
		margin-bottom: 50px;
	}

	.b6 {
		background: url(../img/b6-fon.png) no-repeat 50% 0% / cover;
		padding-top: 150px;
		text-align: center;
	}

	.b7 {
		background-color: #ccd4e5;
		padding: 5px;
		padding-left: 5px;
		color: #385680;
		text-align: center;
	}

	.input-1 {
		width: 220px;
		padding: 10px;
		font-size: 20px;
		border-radius: 0px;
		border: 1px solid #385680;
		height: 25px;
		margin-top: 10px;
		height: 30px;
		text-align: center;
	}

	.button-1 {
		width: 242px;
		border-radius: 0px;
		border: 0px solid #385680;
		padding: 10px;
		background-color: #385680;
		color: white;
		font-size: 20px;
		font-family: Rob r;
		margin-top: 10px;
		height: 50px;
		text-align: center;
		cursor: pointer;
	}

}