img {
    height: auto;
}
.row-title {
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    color: #2c3078;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}
.row-primary,
.row-secondary {
    padding: 0;
}
.row-list {
    display: grid;
    grid-template-columns:repeat(3,1fr);
    grid-gap: 40px 24px;
}
.row-item {
    display: flex;
    align-items: center;
}
.bg-row-image{
    background: #eeeeee;
    padding:14px;
    border-radius: 999px;
}
.row-image {
    flex-shrink: 0;
    position: relative;
    z-index: 4;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(274deg, #5fc5cc 0%, #1c7bae 90%, #2068a3 0%);
    padding: 5px;
    overflow: hidden;
    box-shadow: -3px 0 5px 2px #aaa;
}
.row-image__inner{
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    overflow: hidden;
}
.row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.row-content_bcv {
    flex: 1;
    background: linear-gradient(90deg, #085f98 10%, #0c9fc5 50%, #dbf0fb 130%);
    overflow: hidden;
    margin-left: -50px;
    text-align: center;
    border-bottom-right-radius: 999px;
    border-top-right-radius: 999px;
    height: 95px;
}
.row-content {
    flex: 1;
    background: linear-gradient(90deg, #402d5e 10%, #3e7197 50%, #2db8d2 130%);
    overflow: hidden;
    margin-left: -50px;
    text-align: center;
    border-bottom-right-radius: 999px;
    border-top-right-radius: 999px;
    height: 95px;
}
.row-text1 {
    font-family: roboto condensed, sans-serif;
    font-size: 18px;
    color: #f0b15d;
    font-weight: bold;
    padding-bottom: 0;
    text-shadow: 1px 1px #666666;
    margin-top: 12px;

}
.row-secondary .row-text1 {
    font-size: 14px;
}

h4.text-secondary{
    margin-top: 5px;
    margin-bottom: 5px;
}
h3.text-primary{
    margin-bottom: 3px;
}
.row-text2 {
    font-family: roboto condensed, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    padding-bottom: 0;
    text-shadow: 1px 1px #555555;
}
.row-secondary  .row-text2 {
    font-size: 12px;
}
.row-text3 {
    font-family: roboto condensed, sans-serif;
    font-size: 12px;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 0;
    font-weight: bold;
    text-shadow: 1px 1px #666666;
}
@media (min-width: 1200px) {
    .container {
        width: 1300px !important;
    }
}
@media (max-width: 1000px) {
    .container {
        width: 95% !important;
    }
}
@media (max-width: 850px) {
    .container {
        width: 70% !important;
    }
    .row-list {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media (max-width: 500px) {
    .container {
        width: 99% !important;
    }
}
@media (max-width: 600px) {
    .row-list {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media only screen and (max-width: 1200px) {
    .row-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .row-title {
        font-size: 40px;
        margin-bottom: 24px;
    }
}
@media only screen and (max-width: 640px) {
    .row-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 24px;
    }
    .row-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}
