.head-desc {
	display: flex;
    align-items: center;
    flex-direction: row;
    background: #ffffff;
    border-radius: 100px;
    padding: 15px;
	margin-top: 15px;
}

.head-logo img {
	 width: 44px;
}

.head-logo .site-name {
    color: #1a1b1d;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
}

.head-logo a {
	display: flex;
    align-items: center;
    gap: 5px;
}

.head-menu .menu {
	margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 35px;
}

.head-logo {
	width: 25%;
}

.head-menu {
	width: 50%;
	display: flex;
    justify-content: center;
}

.head-button {
	width: 25%;
	display: flex;
    justify-content: flex-end;
}

.btn {
	background-image: linear-gradient(53deg, #f63869, #ab1b3b);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
	transition: 0.3s;
}

.btn:hover {
    background-image: linear-gradient(175deg, #f63869, #ab1b3b);
    box-shadow: -1px 1px 8px 4px #e334607a;
}

.menu li a {
	color: #1a1b1d;
    font-size: 20px;
    font-weight: 700;
}

.menu li a:hover {
	color: #f63869;
}

.intro {
	margin: 40px 0;
}

.intro-block {
	display: flex;
    align-items: center;
    flex-direction: row;
    gap: 70px;
    padding: 40px 0;
}

.intro-img, .intro-txt {
	width: 50%;
}

.intro_img {
	max-height: 300px;
    width: 100%;
    border-radius: 200px;
}


























