:root {
	--text-color:#1B1B1B;
	--accent-color:#486EAD;
	--main-text:'Manrope', sans-serif;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	min-height: 100vh;
	background: url(img/bg.png);
	background-position: center;
	background-size: inherit;
	background-repeat: no-repeat;
	font-family: var(--main-text);
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1, h2 {
	text-transform: uppercase;
}

a {
	color: var(--text-color);
	text-decoration: none;
}

.links_block {
	width: 576px;
	display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.logo_img {
	display: flex;
	justify-content: center;
	width: 107px;
	height: 107px;
	background: #FBFAFB;
	padding: 42px 9px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.logo_img img {
	width: 100%;
}

.links__wrapper {
	padding: 64px 40px 15px;
	background: #FFFFFF5C;
	backdrop-filter: blur(14.5px);
	border: 1px solid #FFFFFF;
	width: 576px;
	border-radius: 30px;
	position: relative;
    top: -53px;
    text-align: center;
}

.main__title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

.desc {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.48em;
	font-weight: 300;
}

.social__links {
	display: flex;
	gap: 20px;
	list-style: none;
	justify-content: center;
}

.social__links a {
	display: flex;
	width: 45px;
	height: 45px;
}

.block__title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 7px;
	margin-top: 16px;
}

.links__list {
	list-style: none;
}

.link__item {
	width: 100%;
	padding: 2px 10px;
	border:1px solid #DDDDDD;
	border-radius: 200px;
	transition: ease 1s all;
	margin-bottom: 15px;
}

.link__item:last-child {
	margin-bottom: 0px;
}

.svg_path {
	transition: ease 1s all;
}

.link__item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site__title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 5px;
	transition: ease 1s all;
}

.site__desc {
	font-size: 14px;
	font-weight: 400;
	transition: ease 1s all;
}

.link__item:hover .svg_path {
	fill: #fff;
}

.link__item:hover .site__desc {
	color: #fff;
}

.link__item:hover .site__title {
	color: #fff;
}

.link__item:hover {
	background: var(--text-color);
	border-color: var(-text-color);
	transform: translateY(-5px);
}

.left_content {
	display: flex;
	align-items: center;
}

.contact__list {
	list-style: none;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__item {
	transition: all 1s ease;
}

.contact__item a {
	display: flex;
	align-items: center;
}

.contact__item:hover {
	transform: translateY(-5px);
}

.contact__item:first-child {
	margin-bottom: 10px;
}

.contact__item img {
	margin-right: 5px;
}

.link__image {
	display: flex;
	width: 38px;
	height: 38px; 
	justify-content: center;
    align-items: center;
}

.link_img {
	width: 28px;
	height: auto; 
  	object-fit: cover; 
	transition: all 1s ease;
}

.link_img_hidden {
	display: none;
}

.link__item:hover .link_img {
	display: none;
}

.link__item:hover .link_img_hidden {
	display: block;
}

@media (max-width: 1200px) {

}

@media (max-width: 992px) {
	
}

@media (max-width: 768px) {
	.links__wrapper {
    width: 85%;
	}
	.links_block {
		 width: 85%;
	}
}

@media (max-width: 576px) {
	.links__wrapper {
	    padding: 50px 15px 10px;
	}
	.logo_img {
	    width: 70px;
	    height: 70px;
	    padding: 28px 7px;
	}
	.links__wrapper {
	    top: -36px;
	}
	.links__wrapper {
    width: 95%;
	}
	.links_block {
		 width: 95%;
	}
	.main__title {
	    font-size: 18px;
	}
	.desc {
	    font-size: 13px;
	}
	.site__title {
	    font-size: 14px;
	}
	.site__desc {
	    font-size: 12px;
	}
	.site__title {
	    margin: 0 3px;
	}
	.contact__item a {
	    font-size: 14px;
	}
}





