* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: Gilroy;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.one-line-text {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .hidden-on-mobile {
        display: none !important;
    }
}

@media (min-width: 1025px) {

    .container {
        padding: 0 24px;
    }

    .hidden-on-desktop {
        display: none !important;
    }
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.top-container {
    width: 100%;
    background-color: #141836;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 20px;
}

.top-container img{
    width: 120px;
    height: auto;
}

.top-container p{
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

.bottom-container {
    width: 100%;
    background-color: #1286D2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 12px 16px;
    gap: 16px;
}

.header-feature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.header-feature:not(:last-child) {
    border-right: solid 1px #FFFFFF;
    padding-right: 16px;
}

.header-feature__image {
    display: none;
}

.top-text {
    color: rgba(242, 239, 234, 1);
    font-size: 15px;
    font-weight: 450;
    text-align: center;
    line-height: 20px;
}

.header-feature__text {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 450;
}

