.intro{
    min-height: unset;
}
.project-search-wrapper{
    position: relative !important;
    height: auto !important;
}

.references-content{
    display: flex;
    flex-wrap: wrap;
    column-gap: 45px;
    row-gap: 80px;
}
.reference-item{
    width: calc(33% - (90px / 3));
    cursor: pointer;
}
.reference-item:hover .reference-item-img img:first-child{
    transform: scale(.7);
}
.reference-item-img{
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.reference-item-img img:first-child{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(.6);
    transition: 250ms all ease-out !important;
}
.reference-item-img:not(.full){
    border: 2px solid #ccc;
}
.reference-item-img.full img{
    width: 100%;
    height: 100%;
    transform: scale(1);
    object-fit: cover;
}
.reference-item:hover .reference-item-img.full img:first-child{
    transform: scale(1.1);
}
.reference-item-img .country{
    position: absolute;
    width: 30px;
    right: 10px;
    bottom: 10px;
}
.reference-item-title{
    margin-top: 5px;
    font-size: 1.3rem !important;
}
.references .standart-button{
    margin: 0 calc(50% - 150px);
}