.hero-section {
    width: 100%;
    padding: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 30px 30px;
    background-image: radial-gradient(circle, #1eb53a 1.5px, rgba(0, 0, 0, 0) 1px);
}
.page-section {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.page-items {
    width: 80%;
    max-width: 1200px;
}
.page-header {
    color: #1E3050;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 10px;
}
.page-section-img-wrapper img {
    width: 100%;
    height: 100%;
    z-index: 3;
    position: relative;
}
.page-section-img-wrapper {
    width: 65%;
    height: 100%;
    max-width: 400px;
    position: relative;
    border: 2px solid #1eb53a;
    padding: 20px;
}
.page-section-img-wrapper::before {
    content: '';
    position: absolute;
    background-color: #1eb53a;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -60px;
    right: -50px;
    z-index: 2;
}
.header-sub-text {
    line-height: 25px;
}
.about-cta {
    text-decoration: none;
    color: white;
    background-color: #1eb53a;
    text-align: center;
    margin-top: 1rem;
    padding: 12px;
    font-weight: bold;
    transition: background-color .4s ease;
    max-width: 350px;
    font-size: 18px;
}
.ffsd {
    display: inline-block;
    width: 100%;
    max-width: 350px;
}
.ffsd:hover .about-cta {
    background-color: #1aa533;
}
.page-part {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
}
.page-h2 {
    color: #1E3050;
    font-size: 30px;
    position: relative;
    margin-bottom: 30px;
}
.page-h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    background-color: #1E3050;
    bottom: -10px;
    left: 0;
}
.page-items-img-wrapper {
    width: 50%;
    height: 370px;
    max-width: 580px;
    overflow: hidden;
}
.page-items-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-items.split {
    display: flex;
    justify-content: space-between;
}
.page-items-text {
    width: 40%;
    padding-top: 1rem;
}
.page-items-text p {
    line-height: 25px;
}
.page-items.split.diff .page-items-img-wrapper {
    order: 2;
}

.page-items.split.diff .page-items-text{
    order: 1;
}
.page-h2.spec::after {
    width: 0;
    height: 0;
}
.boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.box {
    position: relative;
    min-height: 190px;
}
.box::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #1eb53a;
    position: absolute;
    bottom: -0px;
    left: 0;
    transition: width .4s ease;
}
.box:hover::after {
    width: 100%;
} 
.box-header {
    color: #1E3050;
    font-size: 20px;
    margin: 10px 0;
}
.box-text-wrapper p {
    line-height: 25px;
    max-width: 370px;
    margin-bottom: 10px;
}
.box-img-wrapper {
    height: 30px;
}
.page-item-header.spec {
    text-align: center;
}
.page-item-profile {
    padding-bottom: 5rem;
}
.page-item-profile-img-wrapper {
    min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    overflow: hidden;
}
.page-item-profile-db-wrapper {
    position: relative;
}
.page-item-profile-db-wrapper::before {
    content: '';
    min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    background-color: #1eb53a;
    position: absolute;
    top: -20px;
    right: -30px;
    z-index: -1;
}
.page-item-profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-item-profile-text h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: #1E3050;
}
.page-item-profile-text p {
    line-height: 25px;
}
.page-item-profile {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.page-item-header.spec {
    margin-bottom: 2rem;
}