/*  LONG CARDS  */

.ss-card {
    display: flex;
    margin-top: 25px;
    transition: all .3s ease;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

.ss-card:hover {
    border-color: rgba(2, 171, 245, .4);
    -webkit-box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    outline: 0;
}

.ss-card-left {
    background-color: #03243b;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: grid;
    place-items: center;
    text-align: center;
    /* height: 100%; */
}

.ss-card-right {
    padding: 10px;
    padding-left: 20px;
    width: 100%;
}

.ss-card-title {
    color: #3CB4E6;
    margin-bottom: 10px;
}

.ss-card-cta {
    float: right;
    margin-right: 30px;
    margin-top: 10px;
}

.st-link .st-link__icon--arrow-small,
a .st-link__icon--arrow-small {
    width: 6px;
    height: 15px;
}

/*  LONG CARDS END */

/* stm32mpu ecosystem */
.ss-stm32mpu-wrapper {
    background-color: #f8f8f8;
}

.ss-stm32mpu-section-title {
    padding: 15px 0 0 15px;
}

.ss-stm32mpu-cards {
    display: flex;
    flex-wrap: wrap;
}

.ss-stm32mpu-card {
    width: 25%;
}

.ss-stm32mpu-title {
    font-size: 16px;
    font-weight: bold;
    color: #03234b;
    text-align: center;
    height: 40px;
}

.ss-stm32mpu-img {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ss-stm32mpu-img {
    display: grid;
    justify-content: center;
    height: 125px;
}

.ss-stm32mpu-img img {
    max-height: 125px;
    min-height: 125px;
    height: 100%;
}

.ss-button {
    display: flex;
    justify-content: center;
}

.ss-button-yellow {
    width: 200px;
    height: 42px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #ffd200;
    color: #03234b;
    font-weight: bold;
    border-radius: 10px 0 10px 0;
}
 
.ss-button-yellow:hover {
    width: 200px;
    height: 42px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #ffdb33;
    color: #03234b;
    font-weight: bold;
    border-radius: 10px 0 10px 0;
}
 
.ss-button-yellow:active {
    width: 200px;
    height: 42px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #f5ca00;
    color: #03234b;
    font-weight: bold;
    border-radius: 10px 0 10px 0;
}

@media only screen and (max-width: 768px) {
    .ss-stm32mpu-card {
        width: 100%;
        margin-bottom: 30px;
    }
}
 
@media only screen and (min-width: 768px) {
    .ss-stm32mpu-card {
        width: 25%;
        margin-bottom: 20px;
    }
}
 
@media only screen and (min-width: 1083px) {
    .ss-stm32mpu-card {
        width: 25%;
        margin-bottom: 20px;
    }
}

h2.ss-stm32mpu-section-title,
.ss-stm32mpu-title{
    position: relative;
}
h2.ss-stm32mpu-section-title {
    padding-top: 40px;
}
.ss-stm32mpu-card {
    margin-bottom: 40px;
}
/* stm32mpu ecosystem end */

/* partners */
.ss-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5px;
}

.ss-partner{
    width: 14%;
}

.ss-partner-img{
    display: flex;
    justify-content: center;
}

.ss-partner-img{
    display: grid;
    place-items: center;
    height: 125px;
}

.ss-partner img{
    max-height: 125px;
    min-height: 125px;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .ss-partner {
        width: 100%;
        margin-bottom: 30px;
    }
}
 
@media only screen and (min-width: 768px) {
    .ss-partner {
        width: 20%;
        margin-bottom: 25px;
    }
}
 
@media only screen and (min-width: 1083px) {
    .ss-partner {
        width: 14%;
        margin-bottom: 25px;
    }
}
/* partners end */

.ss-devzone-section {
    display: grid;
    place-items: center;
    height: 260px;
}

.ss-button-devzone {
    display: flex;
    justify-content: center;
    margin-top: -75px;
}