.images-grid {
    padding: 70px 0;
}

.images-grid .sec-title {
    font-family: 'Eurostile', sans-serif;
    font-size: 62px;
    line-height: 69px;
    text-align: left;
    color: #000000;
    margin-bottom: 70px;
}

.images-grid .images-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.images-grid .images-grid-wrapper img{
    object-fit: cover;
    object-position: center;
    width:100%;
    height:100%;
}
.images-grid .images-grid-wrapper .item-text {
    font-family: 'Open Sans',sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: #000000;
    margin-top: 14px;
}
.images-grid .images-grid-wrapper .item-text a{
	    color: #000000 !important;
}
.images-grid .images-grid-wrapper .item-url {
    font-family: 'Open Sans',sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 14px;
}
.images-grid .images-grid-wrapper .item-url:after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 20px;
    background: url("../../img/arrow-right-color.svg") no-repeat center center;
    background-size: contain;
    margin-left: 8px;
    vertical-align: middle;
}
.images-grid .images-grid-wrapper.two-element{
    grid-template-columns: repeat(2, 1fr);
    gap: 63px;
}
.images-grid .images-grid-wrapper.three-element{
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}
.images-grid .images-grid-wrapper.four-element{
    grid-template-columns: repeat(4, 1fr);
    gap: 33px;
}
.images-grid .images-grid-wrapper.five-element{
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.images-grid .images-grid-wrapper.six-element{
    grid-template-columns: repeat(6, 1fr);
    gap: 21px;
}
.images-grid .images-grid-wrapper.six-element .item-text,
.images-grid .images-grid-wrapper.six-element .item-url{
    font-size: 20px;
    line-height: 30px;
}

@media screen and (max-width:991.9px) {
    .images-grid .images-grid-wrapper {
        grid-template-columns: repeat(1, 1fr) !important;
    }
		.images-grid .images-grid-wrapper img{
	object-fit:cover;
	object-position:center;
	display:block;
	margin:0 auto;
}
}
@media screen and (max-width:767.9px) {

    .images-grid {
        padding: 40px 0;
    }

    .images-grid .sec-title {
        font-family: 'Eurostile', sans-serif;
        font-size: 40px;
        font-weight: 500;
        line-height: 48px;
        text-align: left;
        color: #000000;
        margin-bottom: 40px;
    }

}