
html, body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background: var(--Black, #12141A);
  }
  

h1, p{
    margin: 0;
}
.container {
    min-height: 100vh;
    background: var(--Black, #12141A);
    display: flex;
    padding: 40px 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
    flex: 1 0 0;
    align-self: stretch;
}

.logo {
    display: flex;
    flex-shrink: 0;
}

.info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-inline: 16px;
    gap: 30px;
    color: white;
}

.button-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    width: 100%;
}

.button-block__button {
    display: flex;
    height: 42px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 10px;
    text-decoration: none;
    box-sizing: border-box;
}

.button-block__button:hover {
    opacity: 0.7;
}

.button-block__button:nth-child(1) {
    gap: 8px;
    background: linear-gradient(90deg, #00983D 0%, #00C71E 100%);
    box-shadow: 0px 10px 20px 0px rgba(67, 228, 117, 0.20);
}

.button-block__button:nth-child(2) {
    gap: 8px;
    background: linear-gradient(90deg, #3853FF 0%, #6194FF 100%);
}



.button-block__logo {
    width: 25px;
    height: 25px;
    display: flex;
    flex-shrink: 0;
}

.button-block__text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--Light-Text-OnColor, #FFF);
    font-family: Montserrat;
    font-style: normal;
    line-height: normal;
    padding: 0px;
    gap: 2px;
}

.button-block__name {
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
}


.info__title {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Panchang;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.info__text {
    display: flex;
    flex-direction: column;
    color: var(--White, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    gap: 15px;
}

.info__contact-us-ar{
    font-size: 12px;
    opacity: 0.6;
}
.hidden-mobile{
    display: none;
}