@charset "UTF-8";
#home-about-block1__column2 {
    margin-bottom: 60px;
}

#home-about-block1__column3 {
    width: 100%;
    margin-bottom: 30px;
}

#home-pdf-heading {
    margin-bottom: 20px;
	font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

#home-pdf-txt {
    max-width: 620px;
    margin: 0 auto 20px;
    line-height: 1.57;
    font-size: 14px;
}

#home-pdf-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#home-pdf-btn a {
    display: block;
    width: 200px;
    height: 50px;
    position: relative;
    line-height: 50px;
    text-align: center;
    background-color: #FD3C1D;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    overflow: hidden;
}

#home-pdf-btn a span {
    position: relative;
    z-index: 1;
}

#home-pdf-btn a:hover {
    box-shadow: 0 3px 13px 3px rgba(253,61,29,.3);
}

#home-pdf-btn a::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    transition: all .45s cubic-bezier(.43,.07,.51,1.14);
    border-radius: 105%;
    left: -100%;
    top: 100%;
    background: linear-gradient(90deg,orange,#fd3c1d);
}

#home-pdf-btn a:hover::after {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all .35s ease;
}


@media (min-width: 768px) {
    #home-about-block1__column3 {
        margin-bottom: 74px;
    }
    #home-pdf-btn {
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 1323px) {
    #home-about-block1__column3 {
        margin-top: 50px;
    }
}