* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /* font-family: 'Roboto', sans-serif; */
    font-family: 'Work Sans', sans-serif;
}

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

/* body {
    max-width: 1440px;
    margin: 0 auto;
} */

.wrapper {
    max-width: 1174px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

.content-wrapper {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-header {
    width: 100%;
    padding-top: 107px;
    padding-bottom: 264px;
    background-repeat: no-repeat;
    background-position: center bottom;
    /* background-size: 1460px auto; */
    background-size: cover;
    margin-bottom: -80px;
}

.main-header .btn {
    height: 60px;
    width: 214px;
    border-radius: 35px;
    border: 1px solid #ffffff;
    animation: pulse 1.5s infinite;
    -webkit-animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(203, 122, 255, .7);
}

.main-header .btn:hover {
    animation: none;
    -webkit-animation: none;
}

@keyframes pulse {
    0% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    70% {
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 50px rgba(203, 122, 255, 0);
    }
    100% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(203, 122, 255, 0);
    }
  }


.main-header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.main-title {
    font-size: 64px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.btn {
    width: 163px;
    height: 40px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 19px;
    border-radius: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.pink-btn {
    background: #FA29CA;
    -webkit-box-shadow: 8px 8px 15px rgba(116, 28, 118, 0.5);
            box-shadow: 8px 8px 15px rgba(116, 28, 118, 0.5);
    color: #ffffff;
}

.pink-btn:hover {
    background-color: #ff4ed6;
}

.white-btn {
    background-color: #ffffff;
    color: #530089;
}

.white-btn:hover {
    text-decoration: underline;
}

.read-btn {
    text-decoration: underline;
    color: #ffffff;
    font-weight: 400;
    padding: 0;
    height: auto;
    text-transform: uppercase;
}

p:not([class]) {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin: 15px 0;
    line-height: 170%;
    color: #535353;
}

p:not([class]) a {
    color: #FA29CA;
}

ul:not([class]) {
    font-size: 18px;
    margin: 15px 0;
    line-height: 170%;
    color: #535353;
    padding-left: 25px;
}

ul:not([class]) li {
    font-family: 'Roboto', sans-serif;
}

.content-wrapper img:not([class]) {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.small-title {
    font-size: 24px;
    color: #FA29CA;
    font-weight: bold;
    margin-bottom: 15px;
}

.title {
    font-size: 48px;
    font-weight: bold;
    color: #9613EA;
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 70px;
}

.pink2 {
    padding: 70px 0 0;
    /* background-size: 1440px auto; */
    background-size: cover;
    background-repeat: repeat-y;
}

.pink2 .title {
    margin-top: 0;
}

.heart-rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.heart-rate img {
    margin: 0 -2px;
    width: 35px;
}

.legal-wrapper {
    max-width: 753px;
    padding-bottom: 50px;
    margin-top: -130px;
}

@media(max-width: 767px) {
    .title, .main-title {
        font-size: 30px;
    }

    .pink2 {
        padding-top: 40px;
    }
}

@media(max-width: 560px) {
    .main-header {
        background-size: cover;
    }
}