:root {
	--main-font-family: "Open Sans", sans-serif;
	--secondary-font-family: "Raleway", sans-serif;
	--primary-text-color-theme-dark: #ffffff;
	--primary-text-color-theme-light: #303030;
	--secondary-text-color-theme-dark: #9da4bd;
	--secondary-text-color-theme-light: #555555;

	--accent-color: #ff6c00;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
	margin-bottom: 0;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
}

img {
	display: block;
	/* max-width: 100%; */
	height: auto;
}
body {
	font-family: var(--main-font-family);
}

.list {
	list-style: none;
}
.link {
	text-decoration: none;
	cursor: pointer;
}

button {
	font-family: inherit;
	cursor: pointer;
	border-color: transparent;
}

.visually-hidden {
	position: absolute;
	top: -150%;
	z-index: -100;
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
	user-select: none;
	pointer-events: none;
	cursor: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: none;
	outline: none;
	white-space: nowrap;
}

.container {
	width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

/* =========== COMPONENTS =========== */
.modal-button {
	padding: 12px 20px;
	border-radius: 25px;
	border: 1px solid var(--accent-color);
	background-color: transparent;
	min-width: 160px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1.33;
	text-transform: uppercase;
}

.section-suptitle {
	font-size: 11px;
	font-weight: 600;
	line-height: 1.36;
	text-transform: uppercase;
}

.section-title {
	font-family: var(--secondary-font-family);
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.17;
}
.section-descriotion {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.67;
}

/* =========== HEADER =========== */
.header {
	padding-top: 32px;
	/* padding-bottom: 32px; */
	background-color: rgba(25, 28, 38, 0.2);
}

.header-container {
	display: flex;
	align-items: center;
}
.navigation {
	display: flex;
	column-gap: 132px;
	align-items: center;
}
.logo-link {
}
.navigation-list {
	display: flex;
	column-gap: 30px;
}
.navigation-item {
}
.navigation-link {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.33;
	color: var(--primary-text-color-theme-dark);
}

.navigation-link:focus,
.navigation-link:hover {
	color: var(--accent-color);
}

.phone-link {
	margin-left: auto;
	margin-right: 43px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.33;
	text-transform: uppercase;
	color: var(--primary-text-color-theme-dark);
}

.phone-link:focus,
.phone-link:hover {
	color: var(--accent-color);
}

.header-button {
	color: var(--primary-text-color-theme-dark);
}
.header-button:focus,
.header-button:hover {
	background-color: var(--accent-color);
}
/* =========== /HEADER =========== */
/* =========== HERO =========== */
.hero-section {
	background-color: rgba(25, 28, 38, 0.2);
}
.hero-container {
	display: flex;
}
.hero-left-side {
	flex-basis: 100px;
}
.hero-right-side {
	flex-grow: 1;
	padding-top: 215px;
	padding-bottom: 208px;
	padding-left: 100px;
}
.media-list {
}
.media-item {
}
.media-link {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.36;
	color: var(--primary-text-color-theme-light);
}

.media-link:focus,
.media-link:hover {
	color: var(--accent-color);
}
.hero-suptitle {
	margin-bottom: 20px;
	color: rgba(157, 164, 189, 0.6);
}
.hero-title {
	margin-bottom: 20px;

	font-size: 72px;
	line-height: 1.18;
	color: var(--primary-text-color-theme-dark);
}

.hero-description {
	width: 360px;
	color: var(--secondary-text-color-theme-dark);
}
/* =========== /HERO =========== */
/* =========== ABOUT =========== */
.about-section {
	padding-top: 120px;
	padding-bottom: 120px;
}
.about-container {
	display: flex;
	justify-content: space-between;
	/* column-gap: 30px; */
}
.about-list {
	display: flex;
	flex-basis: calc((100% - 30px) / 2);
	justify-content: space-between;

	/* column-gap: 30px; */
}
.about-item {
}
.about-img {
}

.about-content {
	flex-basis: calc((100% - 30px) / 2);
}
.about-suptitle {
	margin-bottom: 20px;
	color: var(--primary-text-color-theme-light);
}
.about-title {
	margin-bottom: 20px;
	width: 470px;

	color: var(--primary-text-color-theme-light);
}
.about-description {
	margin-bottom: 20px;
	width: 450px;

	color: var(--secondary-text-color-theme-light);
}
.about-text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.86;
	margin-bottom: 42px;
	width: 450px;

	color: var(--secondary-text-color-theme-light);
}
.modal-button-about {
	color: var(--primary-text-color-theme-light);
}
.modal-button-about:focus,
.modal-button-about:hover {
	background-color: var(--accent-color);
}
/* =========== /ABOUT =========== */
/* =========== SERVICES =========== */
.services-section {
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #111319;
}
.services-suptitle {
	margin-bottom: 20px;
	color: rgba(157, 164, 189, 0.6);
}
.services-title {
	margin-bottom: 44px;
	color: var(--primary-text-color-theme-dark);
}
.services-table-container {
	display: flex;
	column-gap: 30px;
	margin-bottom: 44px;
}
.services-table {
	flex-basis: 50%;
	padding: 30px 20px;
	/* border: 1px solid #cccccc; */
}
.services-table-row {
	display: flex;
	justify-content: space-between;
}
.services-table-name,
.services-table-price {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.67;
	color: var(--secondary-text-color-theme-dark);
}

.modal-button-services {
	display: block;
	margin-left: auto;
	margin-right: auto;
	color: var(--primary-text-color-theme-dark);
}
.modal-button-services:focus,
.modal-button-services:hover {
	background-color: var(--accent-color);
}
/* =========== /SERVICES =========== */
/* =========== BENEFITS =========== */
.benefits-section {
	padding-top: 120px;
	padding-bottom: 120px;
}

.benefits-container {
	display: flex;
	column-gap: 130px;
}
.benefits-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-left: 69px;
}
.benefits-item {
	width: 170px;
	padding: 20px 24px;
	background-color: #f7f7f7;
}
.benefits-list-quantity {
	/* font-family: var(--main-font-family); */
	margin-bottom: 5px;
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.36;
	text-align: center;
	color: var(--primary-text-color-theme-light);
}
.benefits-list-description {
	/* font-family: var(--main-font-family); */
	font-size: 11px;
	font-weight: 600;
	line-height: 1.36;
	text-align: center;
	color: var(--primary-text-color-theme-light);
}
.benefits-content {
	/* display: flex; */
}
.benefits-suptitle {
	margin-bottom: 20px;
	color: var(--primary-text-color-theme-light);
}
.benefits-title {
	width: 430px;
	margin-bottom: 20px;

	color: var(--primary-text-color-theme-light);
}
.benefits-description {
	width: 500px;
	color: var(--secondary-text-color-theme-light);
}
/* =========== /BENEFITS =========== */
/* =========== BARBERS =========== */
.barbers-section {
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #f7f7f7;
}
.barbers-suptitle {
	margin-bottom: 20px;
	color: var(--primary-text-color-theme-light);
}
.barbers-title {
	margin-bottom: 44px;
	color: var(--primary-text-color-theme-light);
}
.barbers-list {
	display: flex;
	column-gap: 30px;
	flex-wrap: wrap;
}
.baebers-item {
	flex-basis: calc((100% - 60px) / 3);
}
.barbers-img {
}

.barbers-content {
	padding-top: 30px;
}
.barbers-name {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.39;
	text-align: center;
	color: var(--primary-text-color-theme-light);
}
.barbers-position {
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.36;
	text-align: center;
	color: var(--accent-color);
}
.barbers-social-list {
	display: flex;
	column-gap: 10px;
	justify-content: center;
}
.barbers-social-item {
	background-color: var(--primary-text-color-theme-dark);
}
.barbers-social-link {
	color: var(--primary-text-color-theme-light);
}
.barbers-social-link:focus,
.barbers-social-link:hover {
	color: var(--accent-color);
}
/* =========== /BARBERS =========== */
/* =========== GALLERY =========== */
.gallery-section {
	padding-top: 120px;
	padding-bottom: 120px;
}
.gallery-suptitle {
	margin-bottom: 44px;
	color: var(--primary-text-color-theme-light);
}
.gallery-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.gallery-item {
	flex-basis: calc((100% - 90px) / 4);
}
.gallery-img {
}
/* =========== /GALLERY =========== */
/* =========== CONTACTS =========== */
.contacts-section {
	padding-top: 130px;
	padding-bottom: 120px;
	background-color: #191c26;
}
.contacts-container {
	display: flex;
	/* column-gap: 130px; */
}
.booking-content {
	flex-basis: 50%;
}
.booking-title {
	margin-bottom: 44px;
	color: var(--primary-text-color-theme-dark);
}
.booking-button {
	color: var(--primary-text-color-theme-dark);
}
.booking-button:focus,
.booking-button:hover {
	background-color: var(--accent-color);
}
.contacts-content {
	flex-basis: 50%;
	padding-left: 100px;
}
.contacts-title {
	margin-bottom: 40px;
	color: var(--primary-text-color-theme-dark);
}
.contscts-address {
	width: 200px;
}

.contscts-address-list {
	margin-bottom: 70px;
}
.contscts-address-item:not(:last-child) {
	margin-bottom: 20px;
}
.contacts-address-link {
	font-size: 18px;
	font-weight: 400;
	font-style: normal;

	letter-spacing: 0.02em;
	line-height: 1.67;
	color: var(--secondary-text-color-theme-dark);
}
.contacts-address-link-map {
	font-weight: 700;
}

.contacts-address-link:focus,
.contacts-address-link:hover {
	color: var(--accent-color);
}
.contacts-subtitle {
	margin-bottom: 20px;
	color: rgba(157, 164, 189, 0.4);
}
.contacts-description {
	color: var(--secondary-text-color-theme-dark);
}
/* =========== /CONTACTS =========== */
/* =========== FOOTER =========== */

.footer-section {
	padding-top: 56px;
	padding-bottom: 56px;
	background-color: #f7f7f7;
}
.footer-container {
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.copyright {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.36;
	color: var(--secondary-text-color-theme-dark);
}

/* =========== /FOOTER =========== */
