.models{
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex-wrap: wrap;
    @media (min-width: 768px){
        flex-direction: row;
        justify-content: center;
    }
    .single-model{
        width: 100%;
        @media (min-width: 768px){
            width: calc((100% / 3) - 32px);
        }
        .model-image{
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            padding-bottom: 56.49%;
            overflow: hidden;
            height: 0;
            width: 100%;
            margin-bottom: 10px;
            &.model-image-small {
                @media (min-width: 768px){
                    width: 25%;
                    margin-left: auto;
                    margin-right: auto;
                }
            }
        }
        img{
            &.icon{
                max-width: 50%;
                margin-left: auto;
                margin-right: auto;
                display: block;
                margin-bottom: 10px;
            }
        }
        h3{
            color: #251B1B;
            font-size: 24px;
            line-height: 1.2;
            margin: 0 !important;
            text-align: left;
            @media (min-width: 768px){
                font-size: 28px;
            }
            @media (min-width: 1024px) {
                font-size: 34px;
            }
        }
        p{
            font-size: 16px;
            line-height: 1.68;
            color: #251B1B;
            margin: 0 !important;
            text-align: left;
            &.gray{
                font-size: 14px;
                color: #323232;
                opacity: 0.5;
                margin-top: 20px !important;
                margin-bottom: 5px !important;
            }
        }
        ul{
            list-style: none;
            margin: 0;
            padding: 0;
            text-align: left;
            li{
                display: flex;
                gap: 13px;
                color: #323232;
                font-size: 14px;
                margin: 0 !important;
                i{
                    color: #002c5f;
                    line-height: 1;
                }
                span{
                    flex: 1;
                }
                &:before{
                    display: none;
                }
            }
        }
        .btn{
            margin-top: 40px;
            width: 100%;
        }
    }
}