.home-top-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home-top-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.choose-us-block .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.seotext-block {
    padding-top: 100px;
}

.seo-container {
    margin-left: 20px;
    margin-right: 20px;
}

.seo-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-inline-start: auto; margin-inline-end: auto; }

.seo-block__text {
    position: relative;
    height: 135px;
    color: rgb(0 0 0 / .6);
    text-align: center;
    overflow: hidden;
    transition: height 0.4s ease;
}

.seo-block__text:after {
    content: "";
    opacity: 1;
    background: linear-gradient(180deg, rgb(247 249 253 / 0%), rgb(247 249 253 / 100%));
    width: 100%;
    height: 160px;
    transition: opacity .3s;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.seo-block.is-expanded .seo-block__text:after {
    opacity: 0;
}

.seo-block.is-expanded .seo-block__text {
    height: auto;
}

.seo-block__toggle {
    display: flex;
    align-items: center;
    justify-content: safe center;
    cursor: pointer;
    position: relative;
}

.seo-block__button {
    position: relative;
    font-size: 11px;
    height: 15px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgb(0 0 0 / .6);
}

.seo-block__button:hover {
    color: #000;
}

.seo-block__button:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: rgb(0 0 0 / .2);
    opacity: 1;
    visibility: visible;
    transition: transform .3s, opacity .3s;
    transform: translateY(0);
}

.seo-block__button:after {
    content: "";
    width: 0;
    height: 1px;
    background-color: rgb(0 0 0);
    ; position: absolute;
    right: 0;
    bottom: -1px;
    opacity: 1;
    visibility: visible;
    transition: width .3s;
    transform: translateY(0);
}

.seo-block__button:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

@media screen and (min-width: 700px) {
    .seo-block {
        max-width: 720px;
    }
}

@media screen and (min-width: 1400px) {
    .seo-block {
        max-width: 921px;
    }
}

@media screen and (max-width: 700px) {
}

.seo-block [hidden] {
    display: none !important;
}