*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
}

a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

button {
    outline: none;
    border: none;
}

input {
    outline: none;
    border: none;
}

img {
    max-width: 100%;
}

/* Reuseble styles */
.container {
    max-width: 1180px;
    margin: 0 auto;
}

span.colored-yellow {
    font: inherit;
    background: linear-gradient(180deg, #FEE144 0%, #DBA007 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
}

.btn {
    cursor: pointer;
    width: 100%;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #FEE144 0%, #DBA007 100%);
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
}

.btn:hover {
    background: #FEE144;
}

.btn:active {
    background: #DBA007;
}

/* header */
.header {
    padding: 60px 0;
    margin-bottom: 25px;
}

.header__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__logo {
    max-width: 300px;
    width: 100%;
}

/* firstScreen section */
.firstScreen__disclaimer {
    position: absolute;
    top: 10px;
    left: calc(50% - (159px / 2));
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
    opacity: 0.5;
}

.firstScreen__form-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    display: flex;
    justify-content: center;
}

.firstScreen__form-arrow-item {
    position: absolute;
}

.firstScreen__background {
    background-image: url(../images/bg1-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 70px;
}

.firstScreen__background .container {
    position: relative;
}

.firstScreen__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 50px;
    margin-bottom: 70px;
}

.firstScreen__video-wrapper {
    width: 100%;
}

.firstScreen__form-wrapper {
    max-width: 380px;
    width: 100%;
}

.firstScreen__form-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;

    color: #FFFFFF;
    margin-bottom: 20px;
}

.firstScreen__form-title.tablet {
    display: none;
}

.firstScreen__form-subtitle.tablet {
    display: none;
}

.firstScreen__form-subtitle {
    font-size: 14px;
    line-height: 17px;
    text-align: center;

    color: #FFFFFF;
    margin-bottom: 30px;
}

.firstScreen__phrase {
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 30px 40px;
}

.firstScreen__how-many {
    max-width: 520px;
    width: 100%;
}

.firstScreen__how-many-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;

    color: #fff;
    margin-bottom: 10px;
}

.firstScreen__how-many-subtitle {
    font-size: 12px;
    line-height: 15px;
    color: #fff;
}

.firstScreen__check {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.firstScreen__check-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;

    color: #FFFFFF;
    margin-bottom: 10px;
}

.firstScreen__check-btn {
    max-width: 272px
}

/* welcome section */
.welcome {
    padding-bottom: 80px;
}

.welcome__wrapper {
    max-width: 1130px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    margin-top: 100px;
}

.welcome__images {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.welcome__images img {
    border-radius: 25px;
}

.welcome__images-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.welcome__image-2,
.welcome__image-3 {
    width: calc(50% - 10px);
}

.welcome__message {
    max-width: 580px;
    width: 100%;
    margin-top: 50px;
}

.welcome__message-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;

    color: #000000;
    margin-bottom: 10px;
}

.welcome__message-subtitle {
    font-size: 18px;
    line-height: 22px;
    color: #000000;

    opacity: 0.5;
    margin-bottom: 30px;
}

.welcome__message-letter-item {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    margin-top: 15px;
}

.welcome__message-letter-item:first-child {
    margin-top: 0;
}

/* our-members section */
.our-members {
    background-image: url(../images/bg2-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.our-members__wrapper {
    max-width: 1075px;
    margin: 0 auto;
}

.our-members__title {
    font-weight: 700;
    font-size: 60px;
    line-height: 73px;
    text-align: center;

    color: #FFFFFF;
    margin-bottom: 50px;
}

.our-members__reviews {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.our-members__reviews img {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}

/* what-you-get__wrapper section */
.what-you-get {
    padding: 100px 0;
}

.what-you-get__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 50px;
}

.what-you-get__info {
    max-width: 450px;
    width: 100%;
}

.what-you-get__info-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;

    color: #000000;
    margin-bottom: 20px;
}

.what-you-get__info-description {
    font-size: 16px;
    line-height: 26px;

    color: #000000;
    margin-bottom: 30px;
}

.what-you-get__info-illustration {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 50px;
}

.what-you-get__info-btn {
    height: 58px;
}

.what-you-get__info-btn.tablet {
    display: none;
}

.what-you-get__items {
    max-width: 680px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.what-you-get__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 30px;
}

.what-you-get__item-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

.what-you-get__item-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;

    color: #000000;
    margin-bottom: 10px;
}

.what-you-get__item-description {
    font-size: 14px;
    line-height: 24px;
    text-align: center;

    color: #000000;
}

/* faq section */
.faq {
    padding: 100px 0;
    border-top: 1px solid #E9E9E9;
    background: rgba(0, 0, 0, 0.02);
}

.faq__title {
    font-weight: 700;
    font-size: 50px;
    line-height: 73px;
    text-align: center;

    color: #000000;
    margin-bottom: 50px;
}

.faq__wrapper {
    max-width: 1165px;
    margin: 0 auto;
}

.faq__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 35px;
    grid-row-gap: 50px;
}

.faq__item {
    display: flex;
}

.faq__item-icon {
    width: 40px;
    height: 40px;
    margin-right: 25px;
}

.faq__item-question {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;

    color: #000000;
    margin-bottom: 15px;
}

.faq__item-answer {
    font-size: 14px;
    line-height: 24px;

    color: #000000;
}

/* join-us section */
.join-us {
    background-image: url(../images/bg3-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 116.5px 0;
}

.join-us__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}

.join-us__title {
    font-weight: 700;
    font-size: 80px;
    line-height: 97px;
    text-transform: uppercase;

    color: #FFFFFF;
    margin-bottom: 20px;
}

.join-us__title .colored-yellow {
    display: block;
}

.join-us__subtitle {
    max-width: 715px;
    font-size: 20px;
    line-height: 30px;

    color: #FFFFFF;
}

.join-us__form-wrapper {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.join-us__form-arrow {
    position: absolute;
    top: -70px;
    right: calc(50% - (50px / 2));
}

.join-us__form-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 19px;
    }

    .welcome__wrapper {
        margin-top: 0;
    }
}

@media (max-width: 1023px) {
    .header {
        padding: 55px 0 15px;
        margin-bottom: 15px;
    }

    .firstScreen__form-arrow {
        display: none;
    }

    .firstScreen__form-title.desk {
        display: none;
    }

    .firstScreen__form-subtitle.desk {
        display: none;
    }

    .firstScreen__form-title.tablet {
        display: block;
    }

    .firstScreen__form-subtitle.tablet {
        display: block;
    }

    .firstScreen__form-title {
        font-size: 30px;
        line-height: 36px;
    }

    .firstScreen__form-subtitle {
        margin-bottom: 30px;
    }

    .firstScreen__wrapper {
        align-items: flex-start;
        column-gap: 20px;
        margin-bottom: 30px;
    }

    .firstScreen__form-wrapper {
        max-width: 355px;
    }

    .firstScreen__wrapper .form {
        padding: 30px 20px;
    }

    .firstScreen__phrase {
        padding: 30px 20px;
        column-gap: 30px;
    }

    .firstScreen__how-many-title {
        font-size: 22px;
        line-height: 27px;
    }

    .firstScreen__check {
        max-width: 272px;
    }

    .firstScreen__check-btn {
        max-width: 100%;
    }

    .firstScreen__background {
        padding-bottom: 70px;
    }

    .welcome {
        padding-bottom: 70px;
    }

    .welcome__wrapper {
        column-gap: 20px;
    }

    .welcome__image-2,
    .welcome__image-3 {
        width: calc(50% - 7.5px);
    }

    .welcome__message {
        margin-top: 0;
    }

    .our-members {
        padding: 70px 0;
    }

    .our-members__title {
        font-size: 46px;
        line-height: 56px;
    }

    .our-members__reviews {
        column-gap: 20px;
    }

    .what-you-get {
        padding: 70px 0;
    }

    .what-you-get__wrapper {
        flex-direction: column;
    }

    .what-you-get__info {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .what-you-get__info-title {
        font-size: 46px;
        line-height: 56px;
        text-align: center;
    }

    .what-you-get__info-description {
        text-align: center;
    }

    .what-you-get__info-illustration {
        margin-bottom: 0;
    }

    .what-you-get__info-btn.desk {
        display: none;
    }

    .what-you-get__items {
        max-width: 100%;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        margin-bottom: 30px;
    }

    .what-you-get__info-btn.tablet {
        display: block;
        max-width: 730px;
        margin: 0 auto;
    }

    .faq {
        padding: 70px 0;
    }

    .faq__title {
        font-size: 46px;
        line-height: 56px;
    }

    .faq__wrapper {
        grid-column-gap: 20px;
    }

    .faq__item-icon {
        margin-right: 15px;
    }

    .join-us {
        padding: 100px 0;
    }

    .join-us__wrapper {
        flex-direction: column;
    }

    .join-us__title {
        font-size: 46px;
        line-height: 56px;
        text-align: center;
    }

    .join-us__text-wrapper {
        margin-bottom: 50px;
    }

    .join-us__title .colored-yellow {
        display: unset;
    }

    .join-us__subtitle {
        max-width: 100%;
        text-align: center;
    }

    .join-us__form-arrow {
        display: none;
    }
}

@media (max-width: 700px) {
    .title{
        font-size:28px;
    }
    .container {
        padding: 0 10px;
    }

    .header__logo {
        max-width: 240px;
    }

    .header {
        padding: 45px 0 15px;
    }

    .firstScreen__form-title {
        margin-bottom: 10px;
    }

    .firstScreen__form-subtitle {
        font-size: 12px;
        line-height: 15px;
    }

    .firstScreen__wrapper {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .firstScreen__video-wrapper {
        margin-bottom: 20px;
    }

    .firstScreen__form-wrapper {
        max-width: 380px;
    }

    .firstScreen__wrapper .form {
        padding: 20px;
    }

    .firstScreen__phrase {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .firstScreen__how-many {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .firstScreen__how-many-title {
        font-size: 22px;
        line-height: 27px;
        text-align: center;

        color: #FFFFFF;
    }

    .firstScreen__how-many-subtitle {
        font-size: 12px;
        line-height: 15px;
        text-align: center;

        color: #FFFFFF;
    }

    .firstScreen__check {
        max-width: 100%;
    }

    .firstScreen__background {
        padding-bottom: 150px;
    }

    .welcome {
        margin-top: -100px;
        padding-bottom: 50px;
    }

    .welcome__wrapper {
        flex-direction: column;
    }

    .welcome__images {
        max-width: 100%;
        gap: 13px;
        margin-bottom: 20px;
    }

    .welcome__image-1 {
        width: 100%;
    }

    .welcome__image-2 {
        width: calc(55% - 6.5px);
    }

    .welcome__image-3 {
        width: calc(45% - 6.5px);
    }

    .welcome__message {
        max-width: 100%;
    }

    .welcome__message-title {
        font-size: 30px;
        line-height: 36px;
    }

    .welcome__message-subtitle {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 20px;
    }

    .welcome__message-letter-item {
        font-size: 14px;
        line-height: 24px;
    }

    .our-members {
        padding: 50px 0;
    }

    .our-members__title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .our-members__reviews {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    .what-you-get {
        padding: 50px 0;
    }

    .what-you-get__info {
        margin-bottom: 20px;
    }

    .what-you-get__info-title {
        font-size: 30px;
        line-height: 36px;
    }

    .what-you-get__info-description {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .what-you-get__items {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 20px;
    }

    .what-you-get__item {
        padding: 20px;
    }

    .faq {
        padding: 50px 0;
    }

    .faq__title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .faq__wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 20px;
    }

    .faq__item-icon {
        margin-right: 10px;
    }

    .faq__item-question {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 10px;
    }

    .join-us {
        padding: 50px 0 15px;
    }

    .join-us__text-wrapper {
        margin-bottom: 30px;
    }

    .join-us__title {
        font-size: 30px;
        line-height: 36px;
    }

    .join-us__subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .join-us__form-title {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 460px) {
    .firstScreen__background {
        background-image: url(../images/bg1-min-mob.jpg);
    }

    .firstScreen__form-wrapper {
        max-width: 100%;
    }
}

.footer__disclaimer h2{
    font-size: 20px;
    padding: 20px 0;
}

.footer__disclaimer ul{
    padding-left: 20px;
}
