html {
    scroll-behavior: smooth;
}
.wrapper {
    width: 100%;
    padding: 5rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.header h1 {
    text-align: center;
    color: #1E3050;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
}
.header-text {
    line-height: 25px;
}
.row {
    padding: 4rem 0;
    width: 100%;
}
.row-header h2 {
    color: #1E3050;
    font-size: 25px;
}
.row-header p {
    line-height: 25px;
    max-width: 700px;
}
.row-contents {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
}
.row-content {
    width: 33%;
    max-width: 300px;
    height: 270px;
    border: 2px solid #1eb53a;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.row-header-link {
    text-decoration: none;
    color: #1E3050;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}
.row-header-link:hover {
    text-decoration: underline;
}
.row-header-s-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 14px;
    color: black;
    text-decoration: none;
    height: 30px;
    transition: gap .4s ease;
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.row-header-s-link img {
    width: 6px;
}
.row-header-s-link:hover {
    gap: 2rem;
}
.row-header-s-link p {
    position: relative;
}
.row-header-s-link:hover p::after {
    display: block;
}
.row-header-s-link p::after {
    content: '';
    display: block;
    display: none;
    width: 100%;
    height: 2px;
    bottom: -5px;
    background-color: black;
    position: absolute;
}