* {
    font-family: 'Muller', Arial, sans-serif;
}

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 30px 0;
}

.header a {
    display: inline-block;
}


.button-group {
    background-color: #191b39;
    border: 1px solid #2ab2b0;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
}

.button-group-btn {
    color: #fff;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(42, 178, 176, 1) 0%, rgba(29, 148, 204, 1) 100%);
    border-radius: 20px;
    border: none;
    min-height: 80px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    width: 100%;
    font-size: 20px;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 300px;
}

.button-group-btn span {
    z-index: 1;
}

.button-group-btn:hover {
    color: #fff;
}

.button-group-btn::after {
    content: "";
    width: 80px;
    height: 80px;
    filter: blur(10px);
    left: 50%;
    opacity: .8;
    top: 0;
    position: absolute;
    background: radial-gradient(circle, rgba(26, 255, 213, 1) 0%, rgba(23, 230, 192, 0) 100%);
    transform: translate(-50%, 33px) scale(1.5, 1.2);
    border-radius: 999999px;
    z-index: 0;
}

.button-group-content > h5 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.button-group-content > p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}


.button {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-style: solid;
    border-width: 1px;
    line-height: 135%;
    pointer-events: none;
    min-height: 38px;
}

.button-blue {
    color: #2ab2b0;
    border-color: #2ab2b0;
}

.button-white {
    color: #ffffff;
    border-color: #ffffff;
}

.slogan-text {
    display: inline-block;
    line-height: 85px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-weight: 1000;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    color: #fff;
    font-size: 80px;
}

.slogan-text p {
    line-height: 96px;
    margin: 0;
}

.slogan-text strong {
    font-size: 80px;
    color: transparent;
    background: linear-gradient(90deg, rgba(42, 178, 176, 1) 0%, rgba(29, 148, 204, 1) 100%);
    -webkit-background-clip: text;
    will-change: transform;
    text-transform: uppercase;
    font-weight: 800;
}

.modal-slogan-text {
    display: inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-weight: 1000;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    color: #fff;
    font-size: 43px;
    text-align: center;
}

.modal-slogan-text p {
    margin: 0;
}

.modal-slogan-text strong {
    font-size: 43px;
    color: transparent;
    background: linear-gradient(90deg, rgba(42, 178, 176, 1) 0%, rgba(29, 148, 204, 1) 100%);
    -webkit-background-clip: text;
    will-change: transform;
    text-transform: uppercase;
    font-weight: 800;
}

.gradient-title > h2 {
    color: transparent;
    background-image: linear-gradient(45deg, rgba(42, 178, 176, 1) 0%, rgba(25, 27, 57, 1) 100%);
    -webkit-background-clip: text;
    will-change: transform;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 48px;
}


.button-outline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-style: solid;
    border-width: 1px;
    line-height: 135%;
    pointer-events: none;
    min-height: 38px;
}

.button-outline-btn {
    border-color: #ffffff;
    color: #ffffff;
}

.button-inline-btn {
    background-color: #fff;
    color: #0b0c19;
}

@media (max-width: 1200px) {
    .slogan-text {
        font-size: 65px;

    }

    .slogan-text p {
        line-height: 70px;
    }

    .slogan-text strong {
        font-size: 65px;
    }
}


@media (max-width: 992px) {
    .header > .container {
        display: flex;
        justify-content: center;
    }

    .button-group {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        align-items: center;
    }
    .button-group-btn {
        min-height: 74px;
        max-width: 280px;
        font-size: 18px;
    }

    .button-group-content > h5 {
        font-size: 14px;
    }

    .button-group-content > p {
        font-size: 14px;
    }

    .gradient-title > h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .slogan-text {
        font-size: 35px;
        text-align: center;
    }

    .modal-slogan-text {
        font-size: 33px;
        text-align: center;
    }

    .slogan-text p {
        line-height: 42px;
    }

    .slogan-text strong {
        font-size: 35px;
    }

    .modal-slogan-text strong {
        font-size: 33px;
    }

    .gradient-title > h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

}