.banner-thin {
    margin-top: 100px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 16px;
    position: relative;
}
.banner-thin__body {
    position: relative;
    z-index: 100;
    min-height: 300px;
    display: flex;
    align-items: end;
    padding-bottom: 50px;
}
.banner-thin__content {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}
.banner-thin__title {
    font-size: 50px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}
.banner-thin__content p {
    font-size: 25px;
    line-height: 100%;
    margin-bottom: 0;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .banner-thin__content p {
        font-size: 20px;
    }
}
.banner-thin__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    overflow: hidden;
}
.banner-thin__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-thin__background--substrate {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 1200px) {
	.banner-thin {
		margin-top: 70px;
	}
}
@media (max-width: 960px) {
	.banner-thin {
		margin-top: 70px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 40px;
	}
    .banner-thin__body {
		min-height: 250px;
        padding-bottom: 25px;
	}
    .banner-thin__content {
        flex-wrap: wrap;
    }
    .banner-thin__title {
        font-size: 40px;
    }
}
@media (max-width: 640px) {
	.banner-thin {
		margin-top: 80px;
        margin-bottom: 16px;
        margin-left: 10px;
        margin-right: 10px;
	}
    .banner-thin__body {
		min-height: 200px;
	}
    .banner-thin__title {
        font-size: 28px;
    }
}