.other-services {
    padding-top: 90px;
    margin-bottom: 160px;
}

.other-services .container {
    display: grid;
}

.other-services h2 {
    margin-bottom: 40px;
    width: fit-content;
}

.other-services__items {
    margin-bottom: 40px;
}

.other-services__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 45px;
}

.other-services__item {
    border-radius: 10px;
    background: #FAFAFA;
    box-shadow: 0 1px 3px 0 rgba(215, 211, 209, 0.10), 0 5px 5px 0 rgba(215, 211, 209, 0.09), 0 11px 6px 0 rgba(215, 211, 209, 0.05), 0 19px 7px 0 rgba(215, 211, 209, 0.01), 0 29px 8px 0 rgba(215, 211, 209, 0.00);
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;

    height: 100%;
}

.other-services__item.active {
    background: #F7F0EB;
    cursor: default;
}

.other-services__items .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.other-services__item .image {
    position: relative;
    width: 100px;
    height: 100px;
}

.other-services__item .image img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.other-services__item .image img:nth-child(1) {
    opacity: 1;
}

.other-services__item:hover.image img:nth-child(1) {
    opacity: 0;
}

.other-services__item:hover .image img:nth-child(2) {
    opacity: 1;
}

.other-services__item:hover {
    color: #BD461B;
}

.other-services__item:active {
    background: #F7F0EB;
}

.other-services__contact-us {
    align-self: flex-end;
    margin-left: auto;
}

@media screen and (max-width: 1024px) {
    .other-services {
        padding-top: 60px;
        padding-bottom: 120px;
        margin-bottom: 0;
    }

    .other-services__items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
    }

    .other-services__items .title {
        font-size: 22px !important;
    }
}

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

    .other-services__items {
        grid-gap: 15px;
    }

    .other-services__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .other-services__items .title {
        font-size: 16px !important;
    }

    .other-services h2 {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 480px) {
    .other-services .title--circle:after {
        right: auto;
        left: 290px;
    }
}
