.file-link-box {
    display: flex;
}

.file-link-box__container {
    display: flex;
    flex-flow: row nowrap;
    gap: 25px;
    padding: 25px;
    max-width: 784px;
    width: 100%;
}

.file-link-box .container__content {
    max-width: 410px;
}

.file-link-box .content__title {
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 130%;
    margin-bottom: 10px;
}

.file-link-box .content__description {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 25px;
}

.file-link-box .content__button {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 135%;
}

.file-link-box .content__button a {
    text-decoration: none;
}

.file-link-box .content__button button {
    display: flex;
    gap: 10px;
    box-sizing: border-box;
    padding: 15px 25px;
    border-radius: 50px;
    background: transparent;
    font-size: 15px;
    align-items: center;
}

.file-link-box .content__button button span {
    font-size: 20px;
    font-weight: 900;
}

.file-link-box .container__image {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.file-link-box .container__image img {
    max-height: 250px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 1200px) {
    .file-link-box {
        padding: 0 15px;
    }

    .file-link-box__container {
        max-width: 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .file-link-box__container {
        flex-flow: column nowrap;
    }

    .file-link-box .container__image {
        align-items: flex-start;
        margin-left: unset;
        min-width: unset;
        min-height: 240px;
    }

    .file-link-box .container__image img {
        width: auto;
    }
}

@media only screen and (max-width: 481px) {
    .file-link-box .container__image {
        width: 100%;
    }

    .file-link-box .container__image img {
        max-height: unset;
        width: 100%;
    }
}
