.iota-section {
    width: 100%;
    position: relative;
    top: -130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.iota-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.iota-card {
    flex: 1 1 calc(33.333% - 32px);
    max-width: calc(33.333% - 32px);
    min-width: 280px;
    height: auto;
    position: relative;
    background: white;
    border-radius: 8px;
    box-shadow: 0 40px 60px -30px rgba(0, 0, 0, 0.15);
    background-position: bottom right;
    background-repeat: no-repeat;
}
.iota-card-content {
    width: 369.33px;
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
	width: 100%;
	height: 100%;
    position: static;
	padding: 18px;
}
.iota-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
	height: 100%;
    align-self: stretch;
	flex-grow: 1;
}
.iota-card-inner{
    display: contents;
}
.iota-card-title {
    color: #353535;
    font-size: 23px;
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 700;
    line-height: 33px;
    word-wrap: break-word;
    max-height: 59px;
    align-self: stretch;
}
.iota-card-title:hover{
    color: #9F131C;
}
.iota-card-description {
    color: #353535;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 27px;
    word-wrap: break-word;
    min-height: 110px;
}
.iota-card-link-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.iota-card-link {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.iota-card-link-text {
    color: #353535;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 24px;
    word-wrap: break-word;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.iota-card-link-text:hover , .iota-card-link:hover,
.iota-card-link:hover .iota-card-link-icon svg path {
    color:var(--red-iota);
    fill:var(--red-iota);
}
.iota-card-link-icon {
    padding: 4px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
/* Responsive : 1 colonne sur tablette et mobile */
@media (max-width: 1023px) {
    .iota-section {
        top:48px;
    }
    .iota-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .iota-card-title {
        max-height: max-content;
    }
}


/*  From Tablette */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .iota-section {
        top: 48px;
    }
    .iota-card-title {
        max-height: max-content;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1299px) {
    .iota-cards-wrapper {
        gap: 20px !important;
    }
    .iota-section {
        margin-bottom: 180px;

    }
    .iota-card-title{
        max-height: 100%;
    }
}
@media only screen and (min-width: 1300px) and (max-width: 1500px) {
    .iota-cards-wrapper {
        gap: 20px !important;
    }
    .iota-section {
        margin-bottom: 100px;
    }
}
@media (max-width: 1400px) {
    .iota-section {
        top: -60px !important;
    }
}
@media (max-width: 1350px) {
    .iota-section {
        top: 10px !important;
    }
}
