@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/*
 * HootClub Page
 */
.hootclub-page {
    font-family: "Poppins", sans-serif;
    background-color: #FFF3E0;
}

.hootclub-page * {
    box-sizing: border-box;
}

.hootclub-page a:hover {
    opacity: 1;
}

/*
 * HootClub Hero
 */
.hootclub-hero {
    text-align: center;
    background: transparent url(../img/bg-hootclub-hero-mobile.jpg) top center no-repeat;
    background-size: cover;
    color: white;
}

.hootclub-hero__inner {
    max-width: 752px;
    padding: 30px;
    margin: 0 auto;
}

.hootclub-hero__logo {
    width: 210px;
    margin: 0 auto 40px auto;
}

.hootclub-hero__heading {
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    line-height: 116%;
    margin-bottom: 20px;
}

.hootclub-hero__description {
    margin-bottom: 32px;
}

.hootclub-hero__description p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
}

.hootclub-member {
    margin-top: 40px;
}

.hootclub-member__heading {
    font-size: 16px;
    font-style: normal;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-bottom: 16px;
}

.hootclub-member__button {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    display: inline-block;
    padding: 2px 24px;
    background-color: #FF4E00;
    color: white;
    border-radius: 50px;
}

/*
 * HootClub Links
 */
.hootclub-links {
    width: 364px;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.hootclub-links__heading {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 14px;
}

.hootclub-links__buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 362px;
}

.hootclub-links__button {
    padding: 0 8px;
    flex: 0 1 50%;
}

.hootclub-links__button:first-child {
    padding-left: 0;
}

.hootclub-links__button:last-child {
    padding-right: 0;
}

.hootclub-links__description {
    margin-top: 20px;
}

.hootclub-links__description p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 125%;
}

.hootclub-links__description p a {
    color: white;
    text-decoration: underline;
}

/*
 * HootClub Perks
 */
.hootclub-perks {
    padding-bottom: 80px;
}

.hootclub-perks__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 30px;
}

.hootclub-perks__heading {
    text-align: center;
    color: #571700;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 116%;
    margin-bottom: 20px;
}

.hootclub-perks__items {
    margin: -10px;
}

.hootclub-perks__item {
    display: flex;
    align-items: center;
    padding: 10px;
}

.hootclub-perks__icon {
    flex: 0 1 160px;
    max-width: 160px;
}

.hootclub-perks__icon img {
    display: block;
    width: 160px;
    max-width: 100%;
}

.hootclub-perks__label {
    flex: 0 1 calc(100% - 160px);
    max-width: calc(100% - 160px);
    padding: 10px 20px;
    font-size: 20px;
    line-height: 120%;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #571700;
}

.hootclub-perks__label strong {
    font-weight: 800;
}

.hootclub-perks__faq {
    text-align: center;
    color: #571700;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 162.5%;
    margin-top: 36px;
}

.hootclub-perks__faq a {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    display: inline-block;
    padding: 2px 12px;
    background-color: #FF4E00;
    color: white;
    border-radius: 50px;
}

/*
 * HootClub Download
 */
.hootclub-download {
    background-color: #571700;
    color: white;
}

.hootclub-download__inner {
    max-width: 874px;
    margin: 0 auto;
    padding: 30px;
}

.hootclub-download__image {
    margin: -110px 0 30px 0;
}

.hootclub-download__image img {
    display: block;
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
}

.hootclub-download__heading {
    font-size: 26px;
    line-height: 115%;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}

.hootclub-download__description p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
}

.hootclub-download__icon {
    max-width: 130px;
    margin: 16px auto;
}

@media (max-width: 767px) {
    .hootclub-perks__item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .hootclub-download {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .hootclub-hero {
        background-image: url(../img/bg-hootclub-hero-desktop.jpg);
    }

    .hootclub-hero__logo {
        width: 280px;
    }

    .hootclub-hero__heading {
        font-size: 39px;
    }

    .hootclub-hero__description p {
        font-size: 22px;
    }

    .hootclub-links__heading {
        font-size: 23px;
    }

    .hootclub-links__button {
        padding: 0 10px;
    }

    .hootclub-perks {
        padding-bottom: 0;
        position: relative;
    }

    .hootclub-perks__heading {
        font-size: 29px;
        margin-bottom: 24px;
    }

    .hootclub-perks__items {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hootclub-perks__item {
        flex: 0 1 50%;
        max-width: 50%;
    }

    .hootclub-perks__icon {
        flex: 0 1 180px;
        max-width: 180px;
    }

    .hootclub-perks__icon img {
        width: 180px;
    }

    .hootclub-perks__label {
        flex: 0 1 calc(100% - 180px);
        max-width: calc(100% - 180px);
        font-size: 21px;
        padding: 10px 0 10px 10px;
    }

    .hootclub-download {
        overflow: hidden;
        padding-top: 30px;
        position: relative;
    }

    .hootclub-download:after {
        content:"";
        display: block;
        width: 100%;
        height: 30px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #FFF3E0;
    }

    .hootclub-download__row {
        display: flex;
    }

    .hootclub-download__image {
        margin: 0;
        flex: 0 1 320px;
        padding-right: 20px;
        z-index: 1;
        position: relative;
    }

    .hootclub-download__image img {
        position: absolute;
        top: -62px;
        left: 0;
        width: calc(100% - 20px);
    }

    .hootclub-download__content {
        flex: 0 1 calc(100% - 320px);
    }

    .hootclub-download__heading {
        font-size: 29px;
    }

    .hootclub-download__description p {
        font-size: 21px;
    }

    .hootclub-download__content .hootclub-download__row {
        margin-top: 20px;
        align-items: center;
        position: relative;
    }

    .hootclub-download__content .hootclub-download__row:after {
        content:"";
        display: block;
        width: 300vw;
        height: 800px;
        position: absolute;
        top: calc(100% + 30px);
        left: -100vw;
        background-color: #FFF3E0;
    }

    .hootclub-download__icon {
        flex: 0 1 140px;
        margin: 0;
        padding-right: 10px;
    }

    .hootclub-download .hootclub-links {
        flex: 0 1 calc(100% - 140px);
    }
}

@media (min-width: 992px) {
    .hootclub-hero__logo {
        width: 350px;
    }

    .hootclub-hero__heading {
        font-size: 42px;
    }

    .hootclub-hero__description p {
        font-size: 24px;
    }

    .hootclub-links__heading {
        font-size: 26px;
    }

    .hootclub-links__button {
        padding: 0 12px;
    }

    .hootclub-member {
        margin-top: 44px;
    }

    .hootclub-member__heading {
        display: inline-block;
        margin-right: 8px;
    }

    .hootclub-perks__heading {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .hootclub-perks__label {
        font-size: 22px;
    }

    .hootclub-download__heading {
        font-size: 32px;
    }

    .hootclub-download__description p {
        font-size: 22px;
    }

    .hootclub-download__content .hootclub-download__row {
        margin-top: 24px;
    }

    .hootclub-download__image {
        flex: 0 1 330px;
        padding-right: 30px;
    }

    .hootclub-download__image img {
        width: calc(100% - 40px);
    }

    .hootclub-download__content {
        flex: 0 1 calc(100% - 330px);
    }

    .hootclub-download__icon {
        flex: 0 1 160px;
        padding-right: 10px;
    }

    .hootclub-download .hootclub-links {
        flex: 0 1 calc(100% - 160px);
    }
}
