section.services {
    margin-top: 50px;
}
section.services .links_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-content: flex-end;
}
section.services .top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 15px 0 40px;
}
section.services .top .search_container {
    position: relative;
}
section.services .top .search_container {
    width: 50%;
}

section.services .top .search_container .search_results {
    position: absolute;
    z-index: 3;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 22px;
    width: 100%;
    height: 130px;
    overflow-y: auto;
    display: none;
}

section.services .top .search_container .search_results:focus {
    border: 2px solid #67A260;
}

section.services .top .search_container .search_results .no_results {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    margin-bottom: auto;
}
section.services .top .search_container .search_results .no_results .icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: url(images/icons/lens_grey.svg) center / 60px 60px no-repeat;
}
section.services .top .search_container .search_results.visible {
    display: flex;
}
section.services .top .search_container .search_results .search_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section.services .top .search_container .search_results .search_group .search_group-title {
    font-weight: 700;
    color: #7F7F7F;
    font-size: 12px;
    text-transform: uppercase;
    cursor: default;
}
section.services .top .search_container .search_results .search_group .search_item a {
    font-size: 14px;
    font-weight: 400;
    color: #292929;
    text-decoration: none;
}
section.services .top .search_container .search_results .search_group .search_item a:hover {
    color: #FFA10F;
}
section.services .top .search_container .search_results .search_group .search_item .section {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

section.services .top .search_container .block {
    display: flex;
    padding: 0 25px;
    margin: 0 0 2px;
    border-radius: 15px;
    background-color: #F2F2F2;
    gap: 20px;
}

section.services .top .search_container .block input[type="search"] {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    color: inherit;
    background: transparent;
    border: none;
    font-size: 16px;
}
section.services .top .search_container .block button {
    background: inherit;
    border: none;
    border-radius: inherit;
}

section.services .top .search_container .block input[type="search"]::placeholder {
    color: #bbb;
}
section.services .top .search_container .block input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
    width: 16px; height: 16px;
    background: url(images/icons/cross.svg) center / 26px 26px no-repeat;
}

section.services .top .search_container .block input[type="search"]::-webkit-search-cancel-button:hover {
    opacity: 0.7;
}

section.services .bottom {
    margin-bottom: 40px;
}
section.services .bottom {
    display: flex;
    gap: 30px 60px;
}
section.services .bottom .left {
    padding: 22px 0 0;
    flex: 0.5;
}
section.services .bottom .left .links_block {
    display: flex;
    flex-direction: column;
    gap: 15px 30px;
}
section.services .bottom .left .links_block .links_column {
    display: flex;
    column-gap: 40px;
}
section.services .bottom .right {
    --servicePerRow: 2;
    display: flex;
    flex-wrap: wrap;
    flex: 0.5;
    align-content: flex-start;
    gap: 20px 40px;
    padding: 22px 24px;
    border-radius: 15px;
    background: #F2F2F2;
}
section.services .bottom .right .links_block {
    width: calc((100% / var(--servicePerRow)) - 40px);
    display: flex;
    flex-direction: column;
    gap: 15px 30px;
}
section.services .title {
    font-family: "Nunito", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 128.2%;
}
section.services .links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.services .links a {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    color: #292929;
}
section.services .links a:hover {
    color: #FFA10F;
}
@media(max-width: 1200px) {
    section.services .top .search_container {
        min-height: unset;
    }
    section.services .top .search_container .search_results {
        height: 230px;
    }
    section.services .bottom {
        flex-direction: column;
    }
}
@media(max-width: 768px) {
    section.services .top .search_container {
        width: 100%;
    }
    section.services .bottom .right {
        --servicePerRow: 1;
    }
    section.services .bottom .right .links_block {
        width: 100%;
    }
    section.services .bottom .left .links_block .links_column {
        flex-wrap: wrap;
    }
}