* {
    font-family: "Nunito", sans-serif;
}

:root, :host {
  margin-left: 0;
}

:root {
  --primary-color: #9454FD;
  --primary-light-color: #25a4b9;
  --text-color: #000;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1250px;
  }
}

body {
  background-color: #FFFFFF;
  font-feature-settings: "cv03", "cv04", "cv11";
  letter-spacing: 0.0375em;
  color: var(--text-color);
  overflow-x: hidden;
}

.text-color {
    color: var(--text-color);
}

.card .card-body, .card .card-header {
    color: var(--text-color);
}

/* header */

#mainHeader .navbar {
    box-shadow: 0px 4px 7px 0px #7D7D7D12;
}

header img.logo {
    width: 100px;
}

@media screen and (max-width: 767px) {
    header img.logo {
        width: 60px;
    }
}

.card-beauty {
    box-shadow: 0px 1px 22.6px 0px #0000001C;
    border: none;
}

.card-page-header {
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: center;
    color: #000;
}

label {
    color: var(--text-color);
}

@media screen and (max-width: 767px) {
    .card-page-header {
        font-size: 24px;
    }
}

/* home */

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    box-shadow: 2px 3px 6.1px 0px #DDC5FF;
}

.btn-primary-gradient {
    border-color: white;
    background: linear-gradient(92.38deg, #D2B1FF 0%, #A56FFD 46.61%, #9454FD 100%);
}

.btn-primary-gradient:hover {
    border-color: var(--primary-color);
}

.btn-mega {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.2px;
}

.btn-modal-region {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    letter-spacing: 0.2px;
    border: none;
    box-shadow: 2px 3px 6.1px 0px #DDC5FF;
    color: #000000;
    border-radius: 12px;
    padding-block: 20px;
    transition: all .3s;
}
.btn-modal-region:hover {
    box-shadow: 2px 6px 6.1px 0px #DDC5FF;
    color: #000000;
    text-decoration: none;
}

.btn-registration {
    background: linear-gradient(92.38deg, #FCF0F0 0%, #FFB0C7 100%);

}

.btn-regis-payment {
    background: linear-gradient(180deg, #53FBB1 0%, #19BEF8 100%);

}

.list-step {
    list-style: none;
}

.list-step .step {
    display: flex;
    gap: 10px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.list-step .lead-step {
    font-weight: 700;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: center;
    white-space: nowrap;
}

.list-step .content-step {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .btn-mega {
        font-size: 24px;
    }

    .btn-modal-region {
        font-size: 20px;
        padding-block: 16px;
    }
}

/* footer */

.footer {
    background-color: var(--primary-color);
}