@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--blue: #1B92D0;
	--green: #5BD86F;
	--green-light: #D6F5DB;
	--white: #FFFFFF;
	--black: #323232;
}

*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.25;
	color: var(--black);
	background: var(--white);
}
a {
	color: var(--blue);
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--green);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', serif;
	font-weight: 600;
	margin: 0 0 20px;
	line-height: 1.25;
}
h1 {
	font-size: 24px;
}
h2 {
	font-size: 22px;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 14px;
}
p, ul, ol, blockquote {
	margin: 0 0 20px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}


.wrapper {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 420px;
	margin: auto;
	padding: 30px 0 40px;
	z-index: 1;
}
.logo {
	text-align: center;
}
.logo img {
	max-height: 52px;
}
.phone {
	width: 100%;
	max-width: 336px;
	margin: 0 auto;
}
.phone a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	border: 1px solid var(--green-light);
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	text-decoration: none;
}
.phone a:hover {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
}
.phone a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
	background-color: var(--blue);
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	transition: .5s;
}
.phone a:hover:before {
	background-color: var(--white);
}
.menu {
	margin: 0;
	padding: 60px 40px;
	list-style: none;
	background: var(--blue);
	-moz-border-radius: 80px;
	-webkit-border-radius: 80px;
	border-radius: 80px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-weight: 600;
}
.menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--white);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	min-height: 50px;
	text-decoration: none;
}
.menu li a:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
	transition: .5s;
}
.menu li.menu-site a:before {
	-webkit-mask-image: url(images/website.svg);
	mask-image: url(images/website.svg);
}
.menu li.menu-price a:before {
	-webkit-mask-image: url(images/price-label-tag.svg);
	mask-image: url(images/price-label-tag.svg);
}
.menu li.menu-reviews a:before {
	-webkit-mask-image: url(images/drawing-tablet.svg);
	mask-image: url(images/drawing-tablet.svg);
}
.menu li.menu-payment a:before {
	-webkit-mask-image: url(images/payment-method-credit-card.svg);
	mask-image: url(images/payment-method-credit-card.svg);
}
.menu li.menu-jobs a:before {
	-webkit-mask-image: url(images/employee.svg);
	mask-image: url(images/employee.svg);
}
.menu li a:hover:before {
	background-color: var(--green);
}
.soc-links {
	width: 100%;
	max-width: 230px;
	margin: auto auto 0;
}
.soc-links p {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}
.soc-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.soc-links ul li a {
	width: 44px;
	height: 44px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
}
.soc-links ul li a:hover {
	background: var(--blue);
}
.soc-links ul li a svg {
	flex: 0 0 22px;
	max-width: 22px;
	height: 22px;
}