
/* HERO SECTION AND TALKING POINTS */
/* media orientation default (portrait) */
* {

.main-title {
    font-size: 2.5rem;
    color: #212529 !important;
    display: flex;
    flex-direction: column;
}

.black {
    color: rgba(1, 1, 1, 1);
}

input::placeholder {
    opacity: 25%;
}

.white {
    color: rgba(1, 1, 1, 0);
}

.sub-title {
    font-size: 1.5rem;
    width: 90%;
    text-align: center;
    margin-inline: auto;
}

.talking-point-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: whitesmoke;
    padding: 2rem 1rem !important;
    gap: 2rem;
}

.talking-point {
    width: 100%;
    text-align: center;
    max-width: 100%;
}

.talking-point > h1 {
    font-size: 3rem;
    color: black;
}

.talking-point > p {
    font-size: 1.5rem;
    color: black;
}

.talking-point-image {
    width: 100%;
}

.video {
    width: 100% !important;
}

.talking-point-container > .talking-point-panel:nth-of-type(even) {
    background-color: white;
}

}

@media (orientation: portrait) {

    .only-landscape, .only-small-and-wide, .except-portrait {
        display: none;
    }
}

/* media orientation (landscape) */
@media (orientation: landscape) {

    .only-portrait, .only-small-and-wide, .except-landscape {
        display: none;
    }

    .main-title {
        font-size: 4.5rem;
        color: #212529 !important;
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }

    .sub-title {
        font-size: 2.2rem;
    }

    .talking-point > h1 {
        font-size: 5rem;
    }

    .talking-point > p {
        font-size: 2rem;
    }

    .talking-point {
        max-width: 50%;
    }

    .talking-point-panel {
        flex-direction: row;
        gap: 50px;
        height: 50rem;
    }

    .talking-point-container > .talking-point-panel:nth-of-type(even) > .talking-point {
        text-align: left;
    }

    .talking-point-container > .talking-point-panel:nth-of-type(odd) > .talking-point {
        text-align: right;
    }

    .talking-point-container > .talking-point-panel:nth-of-type(even) {
        flex-direction: row-reverse;
    }

    .video {
        width: 50% !important;
    }

}

/* media orientation (landscape and phone) */
@media (orientation: landscape) and (min-aspect-ratio: 16/9) and (max-width: 900px) {
    .only-portrait, .only-landscape, .except-small-and-wide {
        display: none;
    }

    .main-title {
        font-size: 2.5rem;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    #boost-title {
        font-size: 2.5rem;
    }

    .sub-title {
        font-size: 1.2rem;
    }

    .talking-point > h1 {
        font-size: 2rem;
    }

    .talking-point > p {
        font-size: 1rem;
    }

    .talking-point-panel {
        height: 20rem;
    }

    #productCarousell {
        display: flex;
        flex-direction: row;
        scale: 0.5;
    }

}




/* REVIEW CONTAINERS */
/* media orientation default (portrait) */
* {
.review-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.review {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    background-color: var(--blue);
    color: white;
    border-radius: 2rem;
    padding: 3.5rem 2rem 0 2rem;
}

.review-text {
    font-size: 1.5rem;
}

.review-text::before {
    content: '“';
    font-size: 6rem;
    position: relative;
    line-height: 3px;
}

.attribution-text {
    text-align: end;
    bottom: 0;
    font-style: italic;
    font-size: 1.5rem;
}

.attribution-text::before {
    content: '-- '
}

}

/* media orientation landscape */
@media (orientation: landscape) {
    .review {
        padding: 65px;
    }
    .review-container {
        flex-direction: row;
    }
}

/* media orientation (landscape and phone) */
@media (orientation: landscape) and (min-aspect-ratio: 16/9) and (max-width: 900px) {

    .review {
        padding: 3rem 0.8rem 0 0.8rem;
    }

    .review-container {
        flex-direction: row;
    }

    .review-text {
        font-size: 1rem;
    }

    .attribution-text {
        font-size: 1rem;
    }

}



input[type='radio'] {
    appearance: none;

  border-radius: 100%;
  width: 16px;
  height: 16px;

  border: 2px solid var(--blue);
}

input[type='radio']:checked {
  border: 6px solid var(--blue);
}




/* CAMPAIGN ELEMENTS */
/* media orientation default (portrait) */

* {
    .stats-title {
        text-align: center;
        font-size: 3rem;
    }

    .stats-subtitle {
        font-size: 1.75rem;
    }
}

@media (orientation: landscape) {
    .stats-title {
        font-size: 5rem;
        display: flex;
    }
}