:root {
    --circle-size: 64px;
}

.greeting {
    height: 60vh;
    max-height: 1200px;
    width: 100%;
    background-image: url("../assets/images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #0b2e13;
}

.greeting-gradient {
    background: linear-gradient(90deg, #191919 0%, rgba(18, 18, 18, 0.92) 20%, rgba(18, 18, 18, 0.92) 80%, #191919 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.greeting-gradient .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 100%;
}

.greeting-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    margin-right: 5%;
    padding: 0 0 10px 0;
}

.greeting-title {
    color: var(--light-text-color-keep);
    font-size: 62px;
    font-weight: 600;
    padding-bottom: 2px;
}

.greeting-description {
    color: var(--light-text-color-keep);
    font-size: 20px;
    font-weight: 350;
}

.greeting-buttons {
    width: 267px !important;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    margin-left: 5%;
}

.login-button {
    width: 267px;
    min-height: 64px;
    background: #373737;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    margin-bottom: 6px;
    border: 0;
    opacity: 0.94;
}

.download-button {
    width: 267px;
    min-height: 64px;
    background: #05AF23;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    margin-top: 6px;
    border: 0;
    outline: none;
    opacity: 0.92;
}

.vqxbRXtkAvreqxEXoydoChmo {
    text-align: center;
    color: var(--light-text-color-keep);
    font-size: 30px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
}

.vqxbRXtkAvreqxEXoydoChmo:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, .15);
    opacity: 1;
}

.greeting-buttons {
    width: 50%;
}

.WtRgVkKwNaoxNVQdqLlqpVtK {
    margin: 80px 0 40px 0;
    color: var(--light-text-color);
    font-size: 40px;
    font-weight: 375;
}

.installation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 80px;
}

.installation-step {
    display: flex;
    width: 45%;
    padding-top: 25px;
}

.rqWfJfNYSRafaRSXomwxlkED {
    width: var(--circle-size);
    height: var(--circle-size);
    background: var(--nav-bar-active-color);
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rqWfJfNYSRafaRSXomwxlkED p {
    color: var(--light-text-color-keep);
    font-size: 45px;
    font-weight: 750;
    text-align: center;
    padding: 0;
    margin: 0;
}

.rNFvVGEFQNPNktIOjzRLOEmJ {
    padding-left: 40px;
    width: calc(100% - var(--circle-size));
}

.KDEkLkBSeAFmggrJcWDxPyCs {
    color: var(--green-color);
    font-size: 28px;
    font-weight: 350;
    margin-top: -0.3em;
}

.bOeczPErWzouvjloPjMFlmHt {
    color: var(--light-text-color);
    font-size: 18px;
    font-weight: 350;
    margin-bottom: 10px;
}

/*.installation-step-info-image-container {*/
/*    width: 100%;*/
/*    padding-right: var(--circle-size);*/
/*}*/

/*.installation-step-info-image {*/
/*    width: 100%;*/
/*    max-width: 250px;*/
/*    height: auto;*/
/*    background: #B6B6B6;*/
/*    border-radius: 38px;*/
/*    display: block;*/
/*    margin: 0 auto;*/
/*}*/


.index-load-anim {
    animation: index-fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

.index-button-anim {
    animation: index-softScaleIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes index-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes index-softScaleIn {
    from {
        opacity: 0;
        transform: scale(0.98) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}