body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}
body.lock {
	overflow: hidden;
}
.container-my {
	max-width: 1210px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-right: 15px;
	padding-left: 15px;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-size: 36px;
}
p {
	line-height: 2em;
	margin: 0;
}
img {
	display: block;
	max-width: 100%;
	object-fit: cover;
}
ul, li {
	padding: 0;
	margin: 0;
	list-style: none;
}
a, a:hover {
	text-decoration: none;
	cursor: pointer;
	color: #000;
	text-transform: uppercase;
}
input {
	outline: none;
 	border: none;
 	background: none;
}
textarea {
	outline: none;
 	border: none;
 	resize: none;
 	background: none;
}
::-webkit-input-placeholder { /* WebKit browsers */
   color: #7b7c7b;
   font-weight:500;
   font-size: 14px;
   padding-left: 51px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #7b7c7b;
   font-weight: 500;
   font-size: 14px;
   padding-left: 51px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #7b7c7b;
   font-weight: 500;
   font-size: 14px;
   padding-left: 51px;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
  	color: #7b7c7b;
  	font-weight: 500;
  	font-size: 14px;
  	padding-left: 51px;
}
/*BUTTON*/
button,
button:hover,
button:focus {
	outline: none;
	border: none;
	font-weight: 700;
	text-transform: uppercase;
}
.btn {
	background: #FF7E9D;
	border-radius: 20px;
	font-size: 20px;
	color: #fff;
}
.btn:hover {
	background: #fff;
	color: #FF7E9D;
	border: 3px solid #FF7E9D;
}
.btn:active {
	background: #fff;
	color: #FF7E9D;
	border: none;
}
.btn-ghost {
	background: none;
	border: 1px solid #FF7E9D;
	color: #FF7E9D;
	border-radius: 10px;
}
.btn-ghost:hover {
	background: #FF7E9D;
	border: 1px solid #FF7E9D;
	color: #fff;
}
/* HEADER */
.header {
	position: fixed;
	width: 100%;
	z-index: 2;
	padding: 20px 0;
	top: 0;
	left: 0;
}
.header-fixed {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	background: #fff;
}
.logo {
	background: url('../img/icon/logo.svg') no-repeat center center;
	width: 196px;
	height: 40px;
	display: block;
}
.menu__list_item:not(:last-child) {
	margin-right: 40px;
}
.menu__link {
	font-weight: 500;
	font-size: 11px;
	line-height: 3.6em;
}
.menu__link:hover {
	color: #FF7E9D;
}
.menu__link.active {
	color: #FF7E9D;
}
.account:not(:last-child) {
	margin-right: 18px;
}
.account:hover {
	opacity: 0.5;
	transition: opacity 0.5s ease 0s;
}
/* SUBMENU */
.submenu {
	position: relative;
	display: none;
}
.menu__list_item:hover .submenu {
	display: block;
}
.menu__list_item:focus .submenu {
	display: block;
}
.submenu-content {
	position: absolute;
	background-color: #fff;
	width: 272px;
	height: 260px;
	padding: 16px 23px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.submenu-content__item:not(:last-child) {
	margin-bottom: 10px;
}
.submenu-content__item_link {
	text-transform: none;
	font-weight: 300;
}
.submenu-content__item_link:hover {
	text-transform: none;
	color: #FF7E9D;
}
/*HEADER END*/
/*CONTACT*/
.contact {
	margin-top: 180px;
	margin-bottom: 44px;
}
.contact__title {
	text-align: center;
	padding-bottom: 24px;
	margin: 0 auto 10px;
	border-bottom: 2px solid #8dd9e4;
	max-width: 780px;
	line-height: 0.88em;
	letter-spacing: 0;
}
.contact__list {
	margin-bottom: 58px;
}
.contact__item_link {
	font-size: 12px;
	line-height: 1.5em;
	text-transform: none;
	margin-right: 16px;
}
.contact__item_link:hover {
	text-transform: none;
	opacity: 0.5;
}
.contact__link {
	font-size: 20px;
	line-height: 1.5em;
	text-transform: none;
	color: #FF7E9D;
	display: flex;
}
.contact__link:hover {
	text-transform: none;
	color: #FF7E9D;
	opacity: 0.7;
}
.contact__tel,
.contact__email {
	font-weight: 300;
}
.contact__tel {
	margin-bottom: 20px;
}
.contact__tel:before {
	background: url('../img/icon/call.svg') no-repeat center center;
	content: '';
	display: block;
	width: 32px;
	height: 30px;
	margin-right: 20px;
}
.contact__email:before {
	content: '';
	background: url('../img/icon/email.svg') no-repeat center center;
	display: block;
	width: 31px;
	height: 30px;
	margin-right: 20px;
}
.contact__btn {
	width: 180px;
	height: 40px;
	margin-top: 28px;
	font-size: 18px;
}
.contact__btn a{
	color: #fff;
}
.contact__btn a:hover {
	color: #FF7E9D;
}
.contact__information.account {
	margin-left: 45px;
}
.contact__account.instagram:before {
	content: '';
	background: url('../img/icon/instagram.svg') no-repeat center center;
	display: block;
	width: 34px;
	height: 34px;
	margin-right: 20px;
}
.contact__account.facebook {
	margin: 13px 0 17px;
}
.contact__account.facebook:before {
	content: '';
	background: url('../img/icon/facebook.svg') no-repeat center center;
	display: block;
	width: 34px;
	height: 34px;
	margin-right: 20px;
}
.contact__account.youtube:before {
	content: '';
	background: url('../img/icon/youtube.svg') no-repeat center center;
	display: block;
	width: 34px;
	height: 34px;
	margin-right: 20px;
}
/*CONTACT END*/
/*QUESTION*/
.question {
	padding: 70px 0 86px;
	background: #f7f8f7;
}
.question__title {
	text-align: center;
	max-width: 236px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.75em;
	margin: 0 auto 45px;
	letter-spacing: 0;
}
.question__form {
	max-width: 380px;
	position: relative;
}
.question__form_input {
	border-bottom: 1px solid #c6c6c6;
}
.question__form_input._error {
	box-shadow: 0 0 15px red;
}
.question__form_input.short {
	padding-bottom: 7px;
	max-width: 180px;
	margin-bottom: 21px;
}
.question__form_input.long {
	width: 380px;
	padding-bottom: 10px;
	margin-bottom: 26px;
}
textarea.question__form_input {
	padding-bottom: 9px;
	height: 37px;
}
textarea.question__form_input:focus {
	height: revert;
} 
.question__btn {
	text-align: center;
	margin-top: 17px;
}
.question__btn_message {
	width: 200px;
	height: 40px;
	margin: auto;
}
/*QUESTION END*/
/* FOOTER */
.footer {
	background: #60cbd9;
	padding: 29px 0 49px;
	position: relative;
}
.footer__text {
	text-align: center;
	font-size: 11px;
	color: #fff;
	line-height: 1.45em;
}
.footer__text_two {
	position: absolute;
	right: 40px;
	bottom: 11px;
	font-size: 10px;
	color: #fff;
	font-weight: 300;
	line-height: 1.5em;
}
/* FOOTER END */
/* THANK */
.wrapper-popup {
	display: none;
}
.wrapper-popup.active {
	display: block;
}
.popup-thank{
	background-color: #D2F0F4;
	max-width: 820px;
	max-height: 356px;
	margin: auto;
	text-align: center;
	padding: 98px 214px 130px;
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
}
#overlay-popup {
	position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    background-color: grey;
    opacity: 0.5;
	width: 100%;
	height: 100%;
}
.popup-thank__text {
	max-width: 382px;
	margin: auto;
}
/* THANK END*/
/* Large: 992px - 1199px */
@media (max-width: 1200px) {
	.container-my {
		padding: 0 30px;
	}
}
/* Medium: 768px - 991px */
@media (max-width: 992px) {
	.container-my {
		padding: 0 15px;
	}
	/*HEADER*/
	.header__burger {
		display: block;
		position: relative;
		width: 23.02px;
		height: 14.33px;
		position: relative;
		z-index: 3;
	}
	.header__burger span {
		position: absolute;
		background: #000;
		left: 0;
		width: 100%;
		height: 1.79px;
		top: 6.27px;
		transition: transform 0.3s ease 0s;
	}
	.header__burger:before,
	.header__burger:after {
		content: '';
		background-color: #000;
		position: absolute;
		width: 100%;
		height: 1.79px;
		left: 0;
		transition: transform 0.3s ease 0s;
	}
	.header__burger:before {
		top: 0;
	}
	.header__burger:after {
		bottom: 0;
	}
	.header__burger.active:before {
		transform:rotate(45deg);
		top: 6px;
		height: 1.79px;
		background: #FF7E9D;
	}
	.header__burger.active:after {
		transform:rotate(-45deg);
		bottom: 6px;
		height: 1.79px;
		background: #FF7E9D;
	}
	.header__burger.active span {
		transform: scale(0);
	}
	.header__menu {
		position: fixed;
		display: block;
		top: -100%;
		right: 10px;
		width: 167px;
		height: 260px;
		background: #FFFFFF;
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
		transition: top 0.3s ease 0s;
		overflow-y: auto;
		z-index: 1;
	}
	.header__menu.active {
		top: 80px;
    	text-align: center;
    	overflow-y: auto;
	}
	.menu__list {
		flex-direction: column;
	}
	.menu__list_item:not(:last-child) {
		margin-right: 0;
	}
	.menu__link {
		font-size: 16px;
	}
	.menu__list_item:hover .submenu {
		display: none;
	}
	.menu__list_item:active .submenu {
		display: none;
	}
	/*CONTACT*/
	.contact__item_link {
		font-size: 8px;
	}
}
/* Small: 576px - 767px */
@media (max-width: 768px) {
	/*CONTACT*/
	.contact {
		margin-top: 100px;
	}
	.contact__title_three {
		font-size: 10px;
		text-align: center;
		margin-bottom: 19px
	}
	.contact__list {
		flex-wrap: wrap;
		margin-bottom: 40px
	}
	.contact__link {
		font-size: 10px;
	}
	.contact__tel:before {
		content: '';
		background: none;
		margin-right: 0;
		width: 0;
		height: 0
	}
	.contact__email:before {
		content: '';
		background: none;
		margin-right: 0;
		width: 0;
		height: 0	
	}
	.contact__tel {
		margin-right: 34px
	}
	.contact__information.account {
		margin-left: 0;
	}
	.contact__account.instagram:before {
		background: url('../img/icon/instagram-adaptive.svg') no-repeat center center;
		width: 15px;
		height: 15px;
		margin-right: 10px;
	}
	.contact__account.facebook:before {
		background: url('../img/icon/facebook-adaptive.svg') no-repeat center center;
		width: 15px;
		height: 15px;
		margin-right: 10px;
	}
	.contact__account.youtube:before {
		background: url('../img/icon/youtube-adaptive.svg') no-repeat center center;
		width: 15px;
		height: 15px;
		margin-right: 10px;
	}
	.contact__account.facebook {
		margin: 0;
	}
	.contact__account.youtube {
		margin: 0 32px 0 43px;
	}
	/*QUESTION*/
	.question {
		padding: 40px 0 82px;
	}
	.question__title {
		font-size: 14px;
		max-width: 138px;
		margin-bottom: 40px
	}
	.question__form_input::placeholder {
		font-size: 10px;
	}
	textarea.question__form_input {
		border: 1px solid #c6c6c6;
		border-radius: 7px;
		min-height: 324px;
		padding-top: 12px
	}
	.question__btn_message {
		width: 140px;
		height: 26px;
		font-size: 14px;
		font-weight: 500;
		margin: auto;
	}
	/* THANKS */
	.popup-thank {
		padding: 100px;
	}
}
/* Extra small: 0px (320px) - 575px */
@media (max-width: 576px) {
	/* HEADER */
	.header__menu {
		width: 100%;
		height: 100%;
		right: 0;
		padding: 55px 20px;
	}
	.header__menu.active {
		top: 0px;
	}
	.menu {
		width: 138px;
		margin: auto;
	}
	.menu__list_item {
		width: 100%;
	}
	.menu__list_item:nth-child(2) {
		padding-bottom: 25px;
		border-bottom: 1px solid rgba(5, 133, 173, 0.1);
	}
	.menu__list_item:nth-child(3), 
	.menu__list_item:nth-child(4) {
		padding: 25px 0;
		border-bottom: 1px solid rgba(5, 133, 173, 0.1);
	}
	.menu__list_item:nth-child(5) {
		padding-top: 25px
	}
	/* CONTACT */
	.contact {
		margin-top: 100px
	}
	.contact__title {
		font-size: 24px;
		padding-bottom: 11px;
		margin-bottom: 10px
	}
	.contact__link {
		margin-bottom: 15px
	}
	.contact__information_item {
		max-width: 119px;
		margin: auto;
		text-align: center;
	}
	.contact__link {
		margin-right: 0;
	}
	.contact__information {
		flex-direction: column;
	}
	.contact__information_item {
		margin: auto;
	}
	.contact__link.youtube {
		margin: 0 10px;
	}
	.contact__account.instagram {
		margin: 0
	}
	.contact__information.account {
		flex-direction: revert;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.account:not(:last-child) {
		margin-right: 0
	}
	.contact__btn {
		width: 100px;
		height: 24px;
		font-size: 11px;
		margin: 33px auto 0;
	}
	/*QUESTION*/
	.question {
		padding: 51px 0 70px;
	}
	.question__title {
		font-size: 18px;
		max-width: 225px;
	}
	.question__form {
		max-width: 280px;
	}
	.question__form_input.short {
		width: 132px;
	}
	.question__form_input.short.name {
		margin-right: 16px
	}
	.question__form_input.long {
		width: 280px;
		margin-bottom: 39px
	} 
	.question__form_input::placeholder {
		margin-left: 0
	}
	::-webkit-input-placeholder { /* WebKit browsers */
	padding-left: 0;
	}
	:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	padding-left: 0;
	}
	::-moz-placeholder { /* Mozilla Firefox 19+ */
	padding-left: 0;
	}
	:-ms-input-placeholder { /* Internet Explorer 10+ */
		padding-left: 0;
	}
	textarea.question__form_input {
		border: 0px;
		border-bottom: 1px solid  #c6c6c6;
		border-radius: 0;
		min-height: 28px;
		padding-top: 0;
		height: 28px;
		min-height: 28px;
	}
	.question__btn {
		margin-top: 9px
	}
	/*FOOTER*/
	.footer__text {
		max-width: 168px;
		margin: auto;
	}
	.footer__text_two {
		position: revert;
		margin-top: 39px;
		text-align: center;
		font-size: 8px;
	}
	.footer__text_bold {
		font-weight: 600
	}
	/* THANKS */
	.popup-thank {
		padding: 30px;
		max-height: 210px;
	}
	.popup-thank__title {
		font-size: 25px;
	}
	.popup-thank__text {
		font-size: 13px;
		max-width: 311px;
	}
}