.text-inpool {
	margin-top: var(--text-inpool-mt-mobile, 0);
	margin-bottom: var(--text-inpool-mb-mobile, 0);
	background-color: var(--wp--preset--color--blanc);
	display: flex;
	width: 100%;
    position: relative;
}
@media (min-width: 851px) {
	.text-inpool {
		margin-top: var(--text-inpool-mt-desktop, 0);
		margin-bottom: var(--text-inpool-mb-desktop, 0);
	}
}
.text-inpool-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10vh var(--gutters) 20vh;
    width: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #1F2946 0%, #121730 100%);
    position: relative;
}
.text-inpool-inner::before{
    content: "";
    display: flex;
    width: calc(100% - calc(var(--gutters) * 2));
    position: absolute;
    background-color: var(--wp--preset--color--bleu-inpool);
    height: 6px;
    border-radius: 50% 50%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}
.text-inpool-inner img{
    width: 97px;
    height: 40px;
}
.text-inpool-text p{
    margin-top: 0;
}
.text-inpool-text h2{
    margin-bottom: 0;
}
.text-inpool-content{
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    justify-content: space-around;
}
.text-inpool-col-1, .text-inpool-col-2{
    width: 50%;
    max-width: 500px;
}
.text-inpool-btns-wrapper{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.inpool-underline-link{
    display: flex;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--wp--preset--color--beige);
    transition: color 0.3s ease, border-color 0.3s ease;
    font-size: var(--wp--preset--font-size--size-14);
    font-weight: 600;
    align-items: center;
}
.inpool-underline-link:hover{
    color: var(--wp--preset--color--bleu-inpool);
    border-bottom: 1px solid var(--wp--preset--color--bleu-inpool);
}
.text-inpool::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../../../assets/svg/vagues-bkg.svg) no-repeat center;
    width: 100%;
    display: flex;
    height: 28vh;
}
@media (max-width: 576px) {
    .text-inpool-inner{
        padding: 10vh var(--gutters) 10vh;
    }
    .text-inpool-text{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 2rem;
    }
    .text-inpool-content{
        flex-direction: column;
        gap: 0;
    }
    .text-inpool-col-1, .text-inpool-col-2{
        width: 100%;
    }
    .text-inpool-btns-wrapper{
        flex-direction: column;
        padding-top: 2rem;
    }
    .inpool-underline-link{
        width: fit-content;
    }
}