.hero-project {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 6% 12% 4% 7%;
    border-radius: 16px;
    overflow: hidden;
	font-family: 'Inter', sans-serif;
}
.hero-project__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(30, 20, 13, 0.00) -6.56%, rgba(21, 22, 25, 0.54) 57.37%, #1B1B1B 100%);
}
.hero-project__content {
    position: relative;
    max-width: 95%;
    z-index: 2;
}
.hero-project__logo {
    height: 40px;
    margin-bottom: 48px;
}
.hero-project__badge {
	margin-bottom: 24px;
    border-radius: 47px;
    background: rgba(255, 255, 255, 0.10);
    width: 110px;
    display: flex;
    width: 110px;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	color: #FEFEFE;
}

.hero-project__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #FEFEFE;
    border-radius: 1px;
}
.hero-project__title {
    margin: 24px 0px 22px 0px;
	font-size: 50px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	color: #FEFEFE;
}
.hero-project__description {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; 
    max-width: 70%;
	color: #FEFEFE;
 
}
.hero-project__btn {
    display: inline-block;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 12px 20px;
    border: 1px solid #FEFEFE;
	border-radius: 12px;
    color: #FEFEFE;
    text-decoration: none;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.hero-project__tags {
    display: flex;
    flex-wrap: wrap;
}
.hero-project__tag {
	padding: 10px 10px;	
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; 
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

a.hero-project__tag {
    color: #979797;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

a.hero-project__tag:hover {
    color: #FEFEFE;
}

.hero-project__tag.is-hidden {
    display: none;
}
.hero-project__toggle {
    background: none;
    border: none;
 	color: #979797;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: pointer;
}

.hero-project__toggle:hover {
    color: #FEFEFE;
}
.hero-project__btn-icon {
	width: 25px;
	height: 26px;
    margin-top: -2px;
    vertical-align: middle;
}


@media (max-width: 768px) {
    .hero-project {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .hero-project__logo {
        height: 51px;
        margin-bottom: 44px;
    }

    .hero-project__badge {
        font-size: 16px;
        padding: 4px 10px;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-project__title {
        font-size: 30px;
        line-height: 120%;
        margin: 0px 0 24px 0;
    }

    .hero-project__description {
        font-size: 16px;
        line-height: 150%;
        max-width: 100%;
    }

    .hero-project__btn {
        font-size: 16px;
        padding: 12px 20px;
        margin-top: 44px;
        margin-bottom: 44px;
    }

    .hero-project__btn-icon {
/*         width: 20px;
        height: 20px; */
    }


	.hero-project__tags {
    	margin-top: 0px; 
        gap: 0px;
        row-gap: 0px;
    }

    a.hero-project__tag {
		padding: 10px 10px 10px 0px;
		font-size: 14px;
    }

    .hero-project__toggle {
        font-size: 14px;
    }
}

