#banner-block {
    position: relative;
    width: 100%;
    height: 945px;
    padding-top: 122px;
}
#banner-block::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: var(--secondary);
	opacity: 0.6;
	position: absolute;
	left: 0;
	top: 0;
}
.banner-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner__content {    
    padding-top: 90px;
    padding-bottom: 60px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}
.banner__head {
    max-width: 620px;
    width: 100%;
    margin-bottom: 30px;
}
.banner-title {
    font-size: var(--font-size-28-48);
    font-weight: 500;
    line-height: 100%;
    color: var(--head-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.banner-title span {
    color: var(--primary);
    font-size: var(--font-size-28-48);
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.banner-subtitle {
    color: var(--head-secondary);
    font-size: var(--font-size-18-24);
    line-height: 120%;
    font-weight: 400;
}
.banner-advantages {
    color: var(--head-secondary);
    font-size: var(--font-size-18-24);
    font-weight: 500;
    line-height: 100%;
}
#banner-block .btn {
    margin-bottom: 30px;
}
.banner-advantages__title {
    color: var(--head-secondary);
    font-size: var(--font-size-18-24);
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 15px;
}
.banner-advantages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.banner-advantages-item {
    padding: 10px 15px;
    background-color: var(--secondary);
    border-radius: 100px;
    display: flex;
    gap: 10px;
}
.banner-advantages-item__icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
}
.banner-advantages-item__text {
    color: var(--head-secondary);
    font-size: var(--font-size-16-20);
    font-weight: 500;
    line-height: 100%;
}
.banner-list-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.banner-list-link {
    background-color: rgba(17, 24, 38, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    padding: 30px;
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: all .3s;
}
.banner-list-link__title {
    color: var(--head-secondary);
    font-size: var(--font-size-18-24);
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.banner-list-link__text {
    color: var(--head-secondary);
    font-size: var(--font-size-16-20);
    line-height: 120%;
    font-weight: 400;
}
.banner-list-link__text span {
    color: var(--primary);
}
.banner-list-link-arrow__text {
    color: var(--primary);
    font-size: var(--font-size-16-20);
    font-weight: 500;
    line-height: 100%;
    width: 0;
    transition: all .3s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
}
.banner-list-link-arrow {
    position: relative;
}
.banner-list-link-arrow svg {
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s ease-in-out;
}
.banner-list-link:hover {
    background-color: var(--third);
}
.banner-list-link:hover .banner-list-link-arrow svg {
    left: calc(100% - 30px);
}
.banner-list-link:hover .banner-list-link-arrow__text {
    width: 100%;
}
@media (max-width: 1024px) {
    .banner-list-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    #banner-block {
        height: auto;
    }
    .banner__content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .banner-list-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}