.fms{
    padding: 130px 80px 130px 80px;
}

a{
    text-decoration: none;
}

.fms__container {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
}

.fms__title {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width:600px;
}

.fms__title h2 {
    color: #161620;
font-family: "Montserrat", sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 110%;
letter-spacing: -0.96px;
}

.fms__title p {
    color: #161620;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%;
max-width: 500px;
}

.fms__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fms__card {
    display: flex;
    min-width: 230px;

padding: 16px 16px 16px 16px;
flex-direction: column;
align-items: flex-start;
gap: 38px;
border-radius: 13px;
background: #FFF;
box-shadow: -2px 1px 6.1px 0 rgba(0, 0, 0, 0.25);
box-sizing: border-box;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
}

.fms__card:hover {
    background: #0A360A;
}

.fms__card:hover .fms__card-title span {
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    /* font-weight: 600; */
    line-height: 136%;
    letter-spacing: -0.4px;
}

.fms__card:hover .fms__card-title p {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 136%;
    letter-spacing: -0.42px;
}

.fms__card:hover .fms__card-images svg:first-child path {
    fill: #03C321;
    stroke: #03C321;
}

.fms__card:hover .fms__card-images svg:last-child path {
    fill: #03C321;
    fill-opacity: 1;
}

.fms__card-images {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.fms__card-images img {
}

.fms__card-title {
    display: flex;
    flex-direction: column;
}

.fms__card-title span {
    color: #161620;
font-family: "Montserrat", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 136%; 
letter-spacing: -0.4px;
}

.fms__card-title p {
    color: rgba(22, 22, 32, 0.75);
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-style: italic;
font-weight: 400;
line-height: 136%;
letter-spacing: -0.42px;
}

@media (max-width: 768px) {
    .fms{
        padding: 16px;
        padding-bottom: 100px;
    }
    .fms__title h2 {
        font-size: 24px;
    }
    .fms__title p {
        display: none;    
    }
    .fms__container {
        flex-direction: column;
        gap: 32px;
    }
    .fms__cards{
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 170px);
        justify-content: center;
        gap: 16px;
    }
    .fms__card {
        min-width: 0;
        width: 170px;
        height: 100%;
        gap: 20px;
        padding: 12px;
    }
    .fms__card-images svg {
        width: 32px;
    }
    .fms__card-images img {
        width: 15px;
    }
    .fms__card-title p{
        display: none;
    }
    .fms__card-title span{
        color: #161620;
font-family: "Montserrat", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 113%;
letter-spacing: -0.32px;
    }
}
@media (max-width: 1200px) {

    .fms__container {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
}