/* gallery  start*/

.gallery {
    padding-top: 60px;
    padding-bottom: 60px;
}

.gallery h2 {
    font-family: 'Eurostile', sans-serif;
    font-size: 62px;
    line-height: 69px;
    text-align: left;
    margin-bottom: 70px;
}

.gallery .gallery-items {
    row-gap: 70px;
}

.gallery .gallery-item {
/*    margin-bottom: 70px;*/
    text-align: unset;
}

.gallery .title {
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0px;
    display: inline-block;
    text-decoration: unset;
    color: #000000 !important;
}

.gallery img {
    width: 100%;
	object-fit: cover;
    object-position: center;
    aspect-ratio: 104 / 71;
}

@media only screen and (max-width: 768px) {
    .gallery {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .gallery h2 {
        font-size: 30px;
        margin-bottom: 30px;
		line-height:35px;
    }

    .gallery .gallery-items {
        row-gap: 30px;
    }

    .gallery .title {
        font-size: 18px;
        margin-top: 7px;
        margin-bottom: 0px;
    }

}