.our-services-area {
    background: #EFF0F3;
    padding: 90px 0 145px;
}
.our-services-container {
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}
.our-services-head {
    text-align: center;
    margin: 0 0 40px;
}
.our-services-head .title {
    font-weight: 600;
    font-size: 55px;
    line-height: 67px;
    color: #000000;
    margin: 0 0 7px;
}
.our-services-head .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.52px;
    color: #000000;
    margin: 0;
}
.our-services-all {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 40px 30px;
}
.our-services-all .our-services-single {
    background: #ffffff;
    border-radius: 15px;
    margin: 0;
    overflow: hidden;
}
.our-services-all .our-services-single .image {
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.our-services-all .our-services-single .image img {
    width: 100%;
    transition: 0.1s;
}
.our-services-all .our-services-single:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.our-services-all .our-services-single .content {
    text-align: center;
    padding: 22px 24px 30px;
}
.our-services-all .our-services-single .content .name-link {
    display: inline-block;
    color: #080808;
    text-decoration: none;
    margin: 0 0 10px;
    transition: 0.1s;
    font-family: Instrument Sans;
    font-size: 21px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0;
}
.our-services-all .our-services-single .content .text {
    color: rgba(0, 0, 0, 0.74);
    margin: 0 0 18px;
    font-family: Instrument Sans;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0;
}
.our-services-all .our-services-single .content .link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.1s;
    justify-content: center;
}
.our-services-all .our-services-single .content .link span{
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #000000;
    text-decoration: none;
    transition: 0.1s;
}
.our-services-all .our-services-single:hover .content .link span{
    color: #F6A335;
}
.our-services-all .our-services-single .content .link svg {
    margin-left: 11px;
    transition: 0.1s;
    margin-top: 2px;
}
