
:root {
    --el-color-primary: #1059F2;
    --theme-primary-color: #1059F2;
    --theme-text-color: #303133;
    --theme-content-width: 1200px;
    --theme-font-family:
            -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans',
            sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

html, body {
    color: var(--theme-text-color);
    font-family: var(--theme-font-family), sans-serif;
    margin: 0;
    padding: 0;
}

.custom-button {
    font-size: 30px;
    padding: 32px;
    border-radius: 15px;
}

.home {}
.home__header_image {
    width: 100%;
}
.home__body {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.home__context {
    margin-top: 320px;
    margin-left: 120px;
}
.home__title {
    font-size: 78px;
    letter-spacing: 5px;
    color: var(--theme-primary-color);
    font-weight: 600;
}
.home__buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.charge{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.charge__body{
    width: var(--theme-content-width);
    display: flex;
    justify-content: space-between;
}
.charge__body_image {
    width: 100%;
}
.charge__body_image img {
    width: 100%;
}

.core-function {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.core-function__body {
    width: var(--theme-content-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.core-function__buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.service{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.service__body{
    width: var(--theme-content-width);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.service__body_image {
    width: 50%;
}
.service__body_image img {
    width: 100%;
}
.service__buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.team{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.team__body{
    width: var(--theme-content-width);
    display: flex;
    justify-content: space-between;
}
.team__body_image {
    width: 100%;
}
.team__body_image img {
    width: 100%;
}
.team__buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.copyright {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8F9FA;
    padding: 30px 0;
}
.copyright__company {
    font-size: 16px;
}
.copyright__number {
    margin-left: 15px;
    font-size: 16px;
    text-decoration: none;
    color: var(--theme-text-color);
}
.copyright__number:hover {
    color: var(--theme-text-color);
}