@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');

html {
	font-family: "Open Sans", sans-serif;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
img {
    max-width: 100%;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
}
.btn {
	padding: 10px 16px;
	border-radius: 40px;
	border: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}
.btn-primary {
	background: rgba(0, 183, 104, 1);
	color: #fff;
}
.header__top {
    display: flex;
    justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid rgba(0, 128, 72, .2);
}
.header__logo a {
	display: flex;
	flex-direction: column;
	font-size: 24px;
	font-weight: 600;
	gap: 4px;
	color: rgba(0, 183, 104, 1);
}
.header__logo span {
	color: rgba(103, 114, 129, 1);
	font-size: 12px;
	font-weight: 400;
}
.header__right {
    display: flex;
	gap: 64px;
}
.header__address {
	display: flex;
	flex-direction: column;
	font-weight: 600;
    gap: 4px;
}
.header__phone {
	display: flex;
	flex-direction: column;
    gap: 4px;
}
.header__email {
	display: flex;
	flex-direction: column;
    gap: 4px;
}
.header__email a {
	color: rgba(0, 128, 72, 1);
	font-size: 14px;
	font-weight: 700;
}
.header__social {
	display: flex;
	gap: 8px;
}
.header__secondary-text {
	color: rgba(103, 114, 129, 1);
	font-size: 12px;
	font-weight: 400;
}
.header__city {
	color: rgba(0, 128, 72, 1);
}
.header__phone a {
	font-weight: 600;
	color: #000;
	font-size: 16px;
}
.header__social-item a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(237, 248, 242, 1);
	border-radius: 4px;
}

.menu ul {
	display: flex;
	list-style: none;
	justify-content: space-between;
	padding: 0;
	align-items: center;
}
.menu a {
	color: #000;
	font-size: 14px;
}
.right-panel {
    background: rgba(244, 247, 248, 1);
    padding: 32px;
    border-radius: 20px;
	position: sticky;
    top: 16px;
}
.right-panel ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.right-panel ul a {
	color: #000;
	font-weight: 600;
}
.wrap {
    display: grid;
    padding: 48px 0;
    grid-template-columns: auto 368px;
    grid-gap: 32px;
	align-items: flex-start;
}
h1 {
	font-size: 40px;
}
.right-panel h3 {
	color: rgba(0, 183, 104, 1);
	font-size: 26px;
	margin: 0;
	margin-bottom: 16px;
}
.footer {
    border-top: 1px solid rgba(0, 128, 72, .2);
}
.footer__links {
	border-top: 1px solid rgba(0, 128, 72, .2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
}
.footer__links a {
	color: #000;
	text-decoration: none;
	font-weight: 600;
}
.mobile-menu {
    background: #fff;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: 1px 1px 13px #a0a0a0;
	padding: 16px 24px;
	transform: translateX(700px);
	transition: all .2s;
}
.mobile-menu.active {
	transform: translateX(0px);
}
.mobile-menu ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mask {
    background: #0000005c;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	display: none;
}
.mask.active {
	display: block;
}
.menu-btn {
	display: none;
}

@media(max-width: 1400px){
	.container {
		max-width: 1200px;
		padding: 0 16px;
	}
	.wrap {
		grid-template-columns: 1fr;
	}
	.header__right {
		display: flex;
		gap: 20px;
	}
	.header__address {
		font-size: 14px;
	}
	.header__phone {
		font-size: 14px;
	}
	.header__address span:nth-child(1) {
		display: flex;
		flex-direction: column;
	}
}
@media(max-width: 1200px){
	.menu-btn {
		display: flex;
	}
	.menu ul li {
		display: none;
	}
	
}
@media(max-width: 992px){
	.header__right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 768px){
	.header__top {
		display: grid;
        grid-template-columns: 1fr;
    }
}
@media(max-width: 400px){
	.header__right {
        grid-template-columns: 1fr;
    }
}