.header {
    background-image: url(/img/application_server-bg.png);
}
.header_desc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5.625rem;
    margin-top: 7.1875rem;
}
.header_desc .title {
    font-size: 52px;
    text-transform: none;
}
.header_desc-text p {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    text-align: justify;
}
.header_desc-text hr {
    margin-top: 1.875rem;
    margin-bottom: 2.1875rem;
    display: block;             
    border: none;            
    border-top: 1px solid #FFFFFF;       
}
.header_desc-text a {
    font-weight: 600;
    color: #AAAAAC;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    display: flex;
    align-items: center;
    gap: .375rem;
}
.header_desc-text a::before {
    content: "";
    min-width: .75rem;
    min-height: .75rem;
    background: url(/img/header_desc-text-link.png);
    background-size: cover;
}
.header_desc-text a:last-child {
    margin-top: 1.25rem;
}
@media (max-width: 1024px) {
    .header_desc {
        flex-direction: column;
    }
}
.functional {
    margin: 7.5rem 0;
}
.functional_items {
    margin-top: 2.8125rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.125rem;
}
.functional_item {
    display: flex;
    gap: 1rem;
}
.functional_item img {
    width: 4.375rem;
    height: 4.375rem;
    object-fit: cover;
}
.functional_item p {
    padding: 1.5rem;
    background-color: #1D1E20;
    border-radius: 1.25rem;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}
@media (max-width: 768px) {
    .functional_items {
        grid-template-columns: 1fr;
    }
    .functional {
       margin: 2.1875rem 0;
    }
}
.bullets {
    margin-bottom: 7.5rem;
}
.bullets_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
}
.bullets_item {
    padding: 2rem;
    border: 1px solid #EAEAEA;
    background-color: #fff;
    border-radius: 1.875rem;
}
.bullets_item .icon {
    width: 2rem;
    height: 2rem;
}
.bullets_item .title {
    font-weight: 600;
    font-size: 24px;
    padding: 1.125rem 0 .625rem 0;
}
.bullets_item .desc {
    font-size: 16px;
    font-weight: 400;
}
.bullets_item .desc a {
    color: #CC2B24;
}
.bullets_item .link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    margin-top: 2rem;
}
@media (max-width: 1024px) {
    .bullets_items {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .bullets {
       margin-bottom: 2.1875rem;
    }
}