/* Import fonts  */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ======================== */

/* Import css files */

@import "../../path/reset.css";
@import "../../path/font.css";
@import "../../path/header.css";
@import "../../path/buttons.css";
@import "../../path/dropdown-menu.css";
@import "../../path/nav.css";
@import "../../path/footer.css";

/* ======================== */

:root {
	--container-width: 1270px;
	--container-padding: 15px;
	--secondary: rgba(15, 31, 28, 0.5);
	--orange: #ff7c4e;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #E9E9E9;
	color: #0f1f1c;
	overflow-x: hidden;
}

.none {
	display: none !important;
}

.container {
	max-width: var(--container-width);
	padding: 0 var(--container-padding);
	margin: 0 auto;
}

.container-right {
	padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-left {
	padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-inside {
	max-width: 1100px;
	margin: 0 auto;
}

.block {
	height: 200px;
	background-color: darkseagreen;
}

.bold {
	font-weight: 700;
}

/* Logo */

.logo {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
}

.logo a {
	color: inherit !important;
}

.logo--footer {
	color: var(--orange);
}


/* Menu Icon */

.menu-icon-wrapper {
	--time: 0.1s;
	--width: 40px;
	--height: 30px;
	--line-height: 4px;
	--color: #fff;

	height: var(--height);
	width: var(--width);
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-icon {
	position: relative;
	width: var(--width);
	height: var(--line-height);
	background-color: var(--color);
}

.menu-icon::before,
.menu-icon::after {
	content: '';
	display: block;

	position: absolute;
	left: 0;

	width: var(--width);
	height: var(--line-height);

	background-color: var(--color);
	transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.menu-icon::before {
	top: calc(var(--line-height) * -2);
}

.menu-icon::after {
	top: calc(var(--line-height) * 2);
}

.menu-icon.menu-icon--active {
	background-color: transparent;
}

.menu-icon.menu-icon--active::before,
.menu-icon.menu-icon--active::after {
	top: 0;
	transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.menu-icon.menu-icon--active::before {
	transform: rotate(45deg);
}

.menu-icon.menu-icon--active::after {
	transform: rotate(-45deg);
}

/* Title */

.title {
	letter-spacing: 2px;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	z-index: -5;
	padding: 10px 0;
	border-radius: 27px;
}

.main-title {
	font-weight: 700;
	font-size: 35px;
	text-align: center;
	margin-top: 30px;
	padding: 10px 0;
	letter-spacing: 2px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	border-radius: 27px;
}

.main-subtitle {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
	margin: 30px 0;
	padding: 10px 0;
	letter-spacing: 2px;
	border-radius: 27px;
}

.main__text {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
}

.subtitle {
	font-weight: 700;
	font-size: 25px;
	letter-spacing: 1px;
	margin: 30px 0;
	text-align: center;

}

.notation {
	font-size: 20px;
	margin: 40px 0;
	letter-spacing: 1px;
}

.background {
	padding: 15px 10px;
	background: #ccc;
	border-radius: 27px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	margin: 40px 0;
	text-align: center;
	font-weight: 700;
}

/* Contact */

.contact__wrapper {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 50px;
}

.contact__image__person {
	width: 250px;
	border-radius: 30px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.contact__info {
	margin-left: 60px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	padding: 15px;
	border-radius: 20px;
}

.contact_title {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 20px;
}

.contact_subtitle {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 10px;
}

.contact__number {
	margin-top: 10px;
}

.contact__image {
	margin-right: 60px;
}

.contact__line-element {
	width: 50px;
	height: 3px;
	border-radius: 10px;
	background: #000;
}

.contact__element {
	border: 3px solid #0f1f1c;
	border-radius: 20px;
	padding: 20px 0;
	margin-bottom: 40px;
}

/* Reviews */
/* vertically-video */
.parent-vertically {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(3, 250px);
	grid-template-rows: repeat(1, 444.44px);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	justify-content: center;
}

.vertically-container-video {
	width: 100%;
	height: 100%;
	border-radius: 27px;
	border: 3px solid #6283F5;
	box-sizing: content-box;
}

.parent-vertically__element-01 {
	grid-area: 1 / 1 / 2 / 2;
}

.parent-vertically__element-02 {
	grid-area: 1 / 2 / 2 / 3;
}

.parent-vertically__element-03 {
	grid-area: 1 / 3 / 2 / 4;
}

/*.div4 {
	grid-area: 1 / 4 / 2 / 5;
	background: red;
}

.div5 {
	grid-area: 2 / 1 / 3 / 2;
	background: #ffc222;
}

.div6 {
	grid-area: 2 / 2 / 3 / 3;
	background: #f05d22;
}

.div7 {
	grid-area: 2 / 3 / 3 / 4;
	background: #0f1f1c;
}

.div8 {
	grid-area: 2 / 4 / 3 / 5;
	background: #1C00EE;
}*/

/* horizontally-video */

.parent-horizontally {
	margin: 30px;
	display: grid;
	grid-template-columns: repeat(2, 400px);
	grid-template-rows: repeat(1, 225px);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	justify-content: center;

}

.parent-horizontally__element-01 {
	grid-area: 1 / 1 / 2 / 2;
}

.parent-horizontally__element-02 {
	grid-area: 1 / 2 / 2 / 3;
}

/*.div33 {
	grid-area: 2 / 1 / 3 / 2;
}*/

/*.div44 {
	grid-area: 2 / 2 / 3 / 3;
}*/

.horizontally-container-video {
	width: 100%;
	height: 100%;
	border-radius: 27px;
	border: 3px solid #6283F5;
	box-sizing: content-box;
}

/* without-space-video */

.parent-without-space {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.without-space-container-video {
	width: 400px;
	height: 225px;
	border-radius: 27px;
	border: 3px solid #6283F5;
	box-sizing: content-box;
}

/* Media */

@media (max-width: 1269px) {
	/* Container */
	.container-right {
		padding-left: 15px;
	}

	.container-left {
		padding-right: 15px;
	}
}

@media (max-width: 1215px) {
	/* Nav */
	.nav__list {
		column-gap: 70px;
	}

	.offers__slider {
		width: 900px;
	}

	/* Footer */
	.nav__list--footer {
		font-size: 16px;
		font-weight: 500;
	}

	/* Form */
	.form__plate {
		margin: 0 20px;
	}

}

@media (max-width: 1000px) {
	/* Container */
	.container {
		margin: 0 20px;
	}

	.container-logo {
		margin: 0 0 0 12px;
	}

	/* Nav */
	.nav__list--header {
		display: none;
	}

	.menu-icon-wrapper {
		/* Change pos */
		position: absolute;
		top: 40px;
		right: 30px;
		z-index: 100;
	}

	.menu-icon--active {
		position: fixed;
		top: 55px;
		right: 30px;
	}

	.nav__login--header {
		display: none;
	}

	.nav {
		column-gap: 50px;
	}

	.nav__list {
		column-gap: 50px;
	}

	.nav__toggle {
		display: block;
	}

	.no-scroll {
		overflow-y: hidden;
	}

	.nav--mobile {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 99;

		flex-direction: column;
		align-items: center;
		padding-top: 40px;
		padding-bottom: 40px;

		background: #6283f5;
	}

	.nav--mobile .logo {
		font-size: 34px;
	}

	.nav--mobile .nav__list {
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 40px;

		font-size: 22px;
	}

	.nav--mobile .nav__list a.active::after,
	.nav--mobile .nav__list a:hover::after {
		display: none;
	}

	.nav--mobile .nav__login {
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 40px;

		font-size: 22px;
	}

	.nav--mobile .nav__toggle {
		position: fixed;
		top: 150px;
		right: 50px;
	}

	/* Header */
	.header__img img {
		right: -256px;
	}

	.header__img::after {
		right: -300px;
	}

	/* Title */
	.main-title {
		font-size: 30px;
		margin: 30px 20px;
	}

	.main-subtitle {
		font-size: 28px;
	}

	.title {
		font-size: 28px;
	}

	.subtitle {
		font-size: 22px;
	}

	/* About */
	.about__element__text {
		max-width: 700px;
	}

	/* Sertificat */
	.myImg {
		width: 400px;
	}

	/* Slider */
	.offers__slider {
		margin-right: 0;
		width: 600px;
	}

	.slider {
		height: 304px;
	}

	.slider .slider__item {
		margin-top: 18px;
		width: 223px;
		height: 268px;
	}

	.slider .center .slider__item {
		margin-top: 0;
		width: 253px;
		height: 304px;
	}

	/* Buttons */
	.btn--login {
		font-weight: 700;
	}
}

@media (max-width: 850px) {
	.container-right {
		padding-right: 15px;
	}

	/* Title */
	.main-title {
		font-size: 28px;
	}

	.main-subtitle {
		font-size: 25px;
	}

	.title {
		font-size: 25px;
	}

	/* Movie vertically */
	.parent-vertically {
		grid-template-columns: repeat(1, 250px);
		grid-template-rows: repeat(3, 444.44px);


		/*margin-top: 30px;
		display: grid;
		grid-template-columns: repeat(3, 250px);
		grid-template-rows: repeat(1, 444.44px);
		grid-column-gap: 30px;
		grid-row-gap: 30px;
		justify-content: center;*/

	}

	.parent-vertically__element-01 {
		grid-area: 1 / 1 / 2 / 2;
	}

	.parent-vertically__element-02 {
		grid-area: 2 / 1 / 3 / 2;
	}

	.parent-vertically__element-03 {
		grid-area: 3 / 1 / 4 / 2;
	}

	/* Movie horizontally */
	.parent-horizontally {
		grid-template-columns: repeat(1, 400px);
		grid-template-rows: repeat(2, 225px);
	}

	.parent-horizontally__element-01 {
		grid-area: 1 / 1 / 2 / 2;
	}

	.parent-horizontally__element-02 {
		grid-area: 2 / 1 / 3 / 2;
	}


	/* Buttons */
	.btn--header {
		padding: 20px 30px;
		font-size: 20px;
		border-radius: 18px;
	}

	.btn {
		padding: 20px 35px;
		border-radius: 20px;
		font-size: 18px;
	}

	.btn--login {
		padding: 13px 44px;
		font-size: 16px;
		font-weight: 700;
		border-radius: 100px;
	}

	/* Form */
	.form {
		padding: 20px 0;
	}

	.form__title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.form__text {
		margin-bottom: 30px;
		font-size: 20px;
	}

	.form__plate {
		min-height: 350px;
		padding: 20px 15px;
		border-radius: 40px;
	}

	.form__plate:before {
		left: 40px;
		bottom: 20px;
	}

	.form__plate:after {
		top: 20px;
		right: 40px;
	}

	/* Footer */
	.footer {
		padding-bottom: 0;
	}

	.footer__logo {
		width: 100px;
		margin-bottom: 15px;
	}

	.nav-footer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		text-align: center;
	}

	.nav__list--footer li {
		font-size: 16px;
	}

	.nav__login--footer {
	}

	.massagers {
		position: relative;
		left: 20px;
		top: 0;
	}

	.rights {
		font-size: 14px;
	}

	/* List */
	.border li {
		font-size: 17px;
	}
}


@media (max-width: 640px) {
	/* Title */
	.main-title {
		font-size: 25px;
	}

	.main-subtitle {
		font-size: 20px;
	}

	.title {
		margin-bottom: 30px;
		font-size: 20px;
	}

	.subtitle {
		font-size: 20px;
		font-weight: 600;
	}

	/* About */
	.about__element__contact {
		font-size: 18px;
	}

	/* Form */
	.form__title {
		font-size: 25px;
	}

}

@media (max-width: 600px) {
	/* Nav */
	.nav--footer {
		flex-direction: column-reverse;
		row-gap: 30px;
	}

	/* Title */
	.main-title {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	/* Form */
	.form__plate:after {
		display: none;
	}

	.form__plate:before {
		display: none;
	}

	.form__plate {
		min-height: 300px;
	}

	/* About */
	.about__element__contact {
		font-size: 17px;
	}
}

@media (max-width: 460px) {
	/* Nav */
	.nav__list--footer {
		flex-direction: column;
		row-gap: 15px;
		align-items: center;
	}

	/* Title */
	.main-title {
		padding: 5px 10px;
	}

	.title {
		padding: 5px 10px;
	}
}

@media (max-width: 460px) {
	/* Nav */
	.nav--mobile .nav__toggle {
		top: 20px;
		right: 15px;
	}

	.nav--mobile .nav__list,
	.nav--mobile .nav__login {
		row-gap: 20px;
	}

	/* List */
	.border li {
		font-size: 16px;
	}
}

@media (max-width: 390px) {
	/* Title */
	.subtitle {
		margin: 20px 0;
	}

	.title {
		padding: 5px 10px;
	}

	.background {
		margin: 20px 0;
	}

	/* Form */
	.form__title {
		font-size: 20px;
	}
}