* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.ttf') format('ttf');
}

@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/LeagueSpartan.woff2') format('woff2');
}

html,
body {
    line-height: 1.5;
    color: rgb(27, 27, 27);
    font-family: 'Helvetica', arial, sans-serif;
    font-size: 16px;
    word-break: break-word;
    word-wrap: break-word;
    min-height: 100vh;
}

#home-container {
    margin-top: 120px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    z-index: -1;
}

.carrousel-item {
    flex: 0 0 100%;
    min-height: calc(100vh - 120px);
    transform: translateX(-100%);
}

.carrousel-item.first {
    background-image: url('../images/banner1.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carrousel-item.second {
    background-image: url('../images/1.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}

.indicator>span {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0);
    margin-right: 10px;
    cursor: pointer;
}

.indicator>span.active {
    background: #fff;
}

.home-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.home-introduce {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.home-introduce-content {
    max-width: 800px;
    margin: 2rem auto;
}

.home-introduce-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2.5rem;
    text-align: center;
    color: rgb(94, 94, 94);
    overflow-wrap: break-word;
    margin-bottom: 2rem;
}

.home-introduce .more,
.home-solution .more,
.home-team .more {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    background-color: #00396f;
    margin: 0;
}

.home-introduce .more a,
.home-solution .more a,
.home-team .more a {
    display: block;
    height: 56px;
    line-height: 56px;
    letter-spacing: 2px;
}

.home-introduce .more:hover,
.home-solution .more:hover,
.home-team .more:hover {
    background-color: #035eb3;
    background-color: #2e59bf;
}

.home-solution {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 4rem;
}

.home-solution-title {
    max-width: 800px;
    margin: 1rem auto 2rem;
    font-size: 3rem;
    line-height: 1.25;
    color: rgb(27, 27, 27);
    font-weight: 400;
    font-family: 'League Spartan', arial, helvetica, sans-serif;
}

.home-solution-content p {
    font-weight: 400;
    color: rgb(27, 27, 27);
    font-size: 1.5rem;
    font-family: Helvetica, arial, sans-serif;
    line-height: 1.25;
}

.home-solution .more {
    margin: 1rem auto;
}

.home-solution-content {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.solution-item {
    font-family: Helvetica, arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(27, 27, 27);
    padding: 0 1.5rem 2rem;
}

.home-team {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem
}

.home-team-content {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 0;
    text-align: center;
}

.home-team-content img {
    max-width: 100%;
    margin-bottom: 2rem;
}

.home-team-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2.5rem;
    text-align: center;
    color: rgb(94, 94, 94);
    overflow-wrap: break-word;
    margin-bottom: 2rem;
}