/*
    CSS Reset - A combination of Lazzzer00 and Josh's custom resets
    https://github.com/Lazzzer00/Best-CSS-Reset-2024/blob/main/css_reset.css
    https://www.joshwcomeau.com/css/custom-css-reset
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    /* Include padding and border in the element's total width and height */
}

/* Default margins and paddings to 0 */
* {
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.5;
    /* WCAG criteria states that line-height should be at least 1.5: improve readability */
    -webkit-font-smoothing: antialiased;
    /* Fonts anti-aliasing for WebKit-based browsers */
    font-smooth: antialiased;
    /* Fonts anti-aliasing for non-WebKit-based browsers */
}

body,
html {
    height: 100%;
    /* Make the body element full screen */
    scroll-behavior: smooth;
    /* Enable smooth scrolling */
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
    /* Turn off list decoration for semantic lists */
}

html:focus-within {
    scroll-behavior: smooth;
    /* Make the scrolling inside of any scrollable element smooth */
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    /* Improve link underline appearance */
}

img,
picture,
svg,
video,
canvas {
    max-width: 100%;
    /* Make media elements responsive */
    height: auto;
    vertical-align: middle;
    /* Improve text alignment next to inline images */
    font-style: italic;
    /* Style alt text for images that don't load */
    background-repeat: no-repeat;
    /* Background repeat and size for loading placeholder images */
    background-size: cover;
}

input,
button,
textarea,
select {
    font: inherit;
    /* Inherit font styles for consistency */
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    /* Allow long words to break across multiple lines */
}

/* Disable certain styles for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Regular.otf') format('opentype');
    font-weight: 400; /* Normal */
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Bold.otf') format('opentype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

body {
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 32px;
}

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

ul {
    list-style: none;
}

h1 {
    font-size: 42px;
    line-height: 52px;
}

h2 {
    font-size: 34px;
    line-height: 45px;
}

h3 {
    font-size: 24px;
    line-height: 33px;
}

h4 {
    font-size: 20px;
    line-height: 34px;
}

.btn {
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #D9B600;
    border-bottom: 3px solid #000000;
    background: #FED606;
    font-size: 20px;
    line-height: 34px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.d-none {
    display: none;
}

.btn:hover {
    background-color: #dcbd19;
}

.semibold-text {
    font-weight: 600;
}

.bold-text {
    font-weight: 700;
}

.d-flex {
    display: flex;
}

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

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.white-color {
    color: #ffffff;
}

.blue-color {
    color: #003DB8;
}

.blue-color-2 {
    color: #2E73EA;
}

.blue-color-3 {
    color: #172D67;
}

.green-color {
    color: #00AF00;
}

.red-color {
    color: #FF0000;
}

.black-color {
    color: #000;
}

.red-bg {
    background-color: #FF0000;
}

.green-bg {
    background-color: #20A508;
}

.white-bg {
    background-color: #ffffff;
}

.blue-bg {
    background-color: #0969B5;
}

.blue-bg-2 {
    background-color: #22DDD2;
}

.blue-bg-3 {
    background-color: #2E73EA !important;
}

.check-availability-btn {
    background-color: #172D67 !important;
    height: 88px;
}

.yellow-bg {
    background-color: #FFF4BB;
}

.black-bg {
    background-color: #000;
}

.light-yellow-bg {
    background-color: #FFF0C7;
}

.dark-bg {
    background-color: #121212;
}

.text-highlight {
    background-image: linear-gradient(0deg, transparent 0, transparent 8px, #FFEE98 8px, #FFEE98 45px, transparent 0);
}

.text-underline {
    text-decoration: underline;
}

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

.text-left {
    text-align: left;
}

.text-block p {
    margin-bottom: 32px;
}

.margin-top-48 {
    margin-top: 48px;
}

.text-block h4 {
    line-height: 28px;
    margin-bottom: 20px;
}

.text-24 {
    font-size: 24px !important;
}

.text-32 {
    font-size: 32px;
    line-height: 40px;
}

.bigger {
    font-size: 32px;
}

.italic {
    font-style: italic;
}

.border-radius-8 {
    border-radius: 8px;
}

.meet-sarah {
    margin-bottom: 32px;
}

.meet-sarah h4 {
    margin-bottom: 28px;
    font-weight: 400;
}

.meet-sarah img {
    border-radius: 8px;
    margin-bottom: 48px;
    width: 100%;
    height: 520px;
    object-fit: cover; 
    object-position: center;
}

.image-block {
    margin: 40px 0;
    position: relative;
}

.separate {
    width: 72px;
    height: 3px;
    background-color: #2E73EA;
}

.list-block {
    margin: 30px 0;
    max-width: 720px;
}

.list-block li {
    margin-bottom: 32px;
}

.list-block li::before {
    content: '';
    display: inline-block;
    background-image: url('../images/checkmark.png');
    background-size: 100%;
    height: 18px;
    width: 18px;
    transform: translate(0, 2px);
    margin-right: 8px;
}

section h2 {
    margin-bottom: 16px;
}

.container {
    padding: 0 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

header {
    border-bottom: 1px rgba(209, 209, 209, 0.4) solid;
}

.topbar {
    color: rgba(255, 255, 255, 0.68);
    font-family: "Source Sans Pro", sans-serif;
    font-size: 17px;
}

.header-title {
    padding: 8px 0;
}

.header-title h3 {
    font-family: "Source Sans Pro", sans-serif;
    line-height: 45px;
    margin-right: 8px;
}

.notification {
    margin: 31px 0 36px 0;
}

.notification-inner {
    line-height: 28px;
    padding: 11px;
}

.notification-inner.blue-bg-2 {
    padding: 11px 3px;
}

.content {
    gap: 72px;
    margin-top: 18px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.article {
    flex: 1;
}

.article-top h1 {
    margin-bottom: 13px;
}

.article-top p {
    font-size: 16px;
    line-height: 28px;
}

.article-author {
    font-size: 14px;
    line-height: 28px;
    margin: 14px 0 26px 0;
}

.article-author-stars {
    margin: 0 5px 3px 0;
}

.article-author-photo {
    border-radius: 50%;
    margin: 0 2px;
}

.what {
    margin: 40px 0;
}

.what h2 {
    max-width: 660px;
}

.reviews-items {
    gap: 22px;
    align-items: flex-start;
    margin: 20px 0 50px 0;
}

.reviews-items img {
    max-width: 314px;
    flex: 1;
    min-width: 267px;
}

.buy p,
.authentic p {
    font-size: 20px;
}

.authentic .text-block a {
    font-size: 18px;
}

.thank-you-text {
    line-height: 32px;
    max-width: 750px;
}

.update-block {
    font-family: "Source Sans Pro", sans-serif;
    border: 2px dashed #000;
    background-color: #FFF593;
    margin-top: 28px;
}

.update-block-header {
    background-color: #2E5BFF;
}

.update-block-header h2 {
    font-size: 28px;
    line-height: 48px;
    padding: 4px 36px;
    margin-bottom: 0;
}

.update-block-content {
    padding: 17px 36px 50px 36px;
}

.update-block-content p {
    margin-bottom: 32px;
}

.update-block-content p span {
    color: #0077EE;
}

.update-block-content .btn {
    border: 1px solid #265D8A;
    background-color: #2F74AD;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-family: "Source Sans Pro", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 184.615% */
    padding-top: 4px;
    padding-bottom: 4px;
}

.update-block-content .btn:hover {
    background-color: #3785c6;
}

.sidebar {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #D9D9D9;
    padding: 12px;
    width: 293px;
    position: sticky;
    top: 30px;
}

.sidebar-inner {
    background-color: #F5F7F9;
    padding: 14px 18px;
}

.sidebar-limit {
    max-width: 230px;
    margin: 0 auto;
}

.sidebar-top h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
}

.sidebar-rating span {
    font-size: 14px;
    line-height: 28px;
}

.sidebar-image {
    margin: 19px 0 13px 0;
}

.sidebar-content {
    font-size: 16px;
    line-height: 24px;
}

.sidebar-content .btn {
    font-size: 18px;
    line-height: 34px;
    padding: 7px 14px;
    margin-top: 15px;
}

.sub-title {
    margin: 25px 0px;
}

.user-review-profile, .article-author-date {
    margin: 0px 3px;
}

.article-author-written-by {
    margin-top: 8px;
}

.five-reasons-why .warning {
    padding: 12px 0px;
    margin-top: 12px;
    border-top: 1px solid #C4C4C4;
    border-bottom: 1px solid #C4C4C4;
}

.five-reasons-why .warning p {
    font-size: 16px;
    line-height: 18px;
}

.five-reasons-why .text-content .warning img {
    height: 48px;
    width: 48px;
    margin-right: 16px;
}

.five-reasons-why .text-content h4 {
    margin-top: 23px;
    margin-bottom: 16px;
    font-size: 32px;
}

.five-reasons-why .list-item {
    margin-bottom: 47px;
}

.concerns .header {
    border-radius: 8px 8px 0px 0px;
    padding-top: 31px;
    padding-bottom: 12px;
    padding-left: 16px;
    font-size: 24px;
}
.concerns .dotted {
    display: none;
}

.concerns ul {
    padding: 0px 10px 34px;
    margin-bottom: 24px;
    border-radius: 0px 0px 8px 8px;
}
.concerns ul li {
    gap: 24px;
    padding: 14px 0px;
    background-image: linear-gradient(to right, grey 17%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
    height: 76px;
}
.concerns ul li .emoji {
    font-size: 22px;
    padding: 5px;
    border-radius: 8px;
}
.concerns ul li .emoji {
    background-color: #fff;
}
.concerns ul li .emoji img {
   width: 30px;
   height: 30px;
   aspect-ratio: 1/1;
   min-width: 30px; 
}
.concerns ul li p {
    font-size: 16px;
    line-height: 24px;
}
.concerns .concern-table ul {
    background-color: #ffe5e5;
}
.concerns .how-table ul {
    background-color: #eff5ff;
}

footer {
    color: #505050;
    padding: 50px 0;
    color: #505050;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 21px;
}

.footer-links a {
    display: block;
    padding: 10px 25px;
    transition: color 0.12s ease-in-out;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-content {
    gap: 21px;
    margin: 11px 0 30px 0;
}

.cta-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 7px;
    width: 100%;
    transition: opacity 0.11s ease-in, transform 0.125s ease-in-out;
}

.cta-fixed.hidden {
    opacity: 0;
    transform: translate(0, 15%);
    transition: opacity 0.1s ease-out, transform 0s 0.105s;
}

.h4-body-title {
    line-height: 40px;
}

.text-highlight-2 {
    background-color: #fff4bb;
}

body.pre-6 {
    background-color: #f9f9f7;
}
body.pre-6 header {
    background-color: #fff;
}

@media screen and (min-width: 449px) {
    .article-author-written-by {
        font-size: 16px;
    }
    .user-review-profile, .article-author-date {
        margin: 0px 5px;
    }
}

@media screen and (min-width: 764px) {
    .five-reasons-why .list-item {
        margin-bottom: 64px;
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        align-items: center;
        gap: 24px;
    }
    .five-reasons-why .list-item.reverse {
        grid-template-columns: 1fr 0.7fr;
    }
    .five-reasons-why .list-item.reverse > a {
        order: 2;
    }
    .meet-sarah {
        margin-bottom: 72px;
    }
    .meet-sarah h4 {
        margin-bottom: 48px;
    }
}

@media screen and (min-width: 992px) {
    .hide-dt {
        display: none;
    }
    .text-32 {
        font-size: 48px;
        line-height: 72px;
    }
    .h4-body-title {
        line-height: 45px;
    }
    .article-author {
        display: flex;
        align-items: baseline;
    }
    .article-author .article-author-written-by {
        margin-left: 15px;
        gap: 5px;
    }
    .article-author .article-author-written-by .user-review-profile{
        gap: 3px;
    }
    .container.wider {
        max-width: 1310px;
    }
    .container.wider article {
        min-width: 882px;
    }
    .meet-sarah img {
        object-fit: contain;
        height: auto; 
    }
    .five-reasons-why .list-item .text-content h4 {
        margin-top: 0px;
        font-size: 34px;
    }
    .five-reasons-why .warning {
        border: none;
    }
    .five-reasons-why .warning p {
        padding: 12px 0px;
        border-top: 1px solid #C4C4C4;
        border-bottom: 1px solid #C4C4C4;
    }
    .concerns {
        display: grid;
        grid-template-columns: 0.8fr  16px 1fr;
    }
    .concerns .dotted {
        display: block;
    }
    .concerns .dotted .header {
        height: 75px;
        border-bottom: 1px solid grey;
    }
    .concerns .dotted ul {
        padding: 0px;
    }
    .concerns .dotted ul li {
        height: 76px;
        width: 20px;
        background-image: linear-gradient(to right, grey 17%, rgba(255, 255, 255, 0) 0%);
        background-position: bottom;
        background-size: 3px 1px;
        background-repeat: repeat-x;
    }
    .notification-wrapper {
        margin: 50px auto;
    }
}

@media screen and (max-width: 991px) {
    .hide-mb {
        display: none;
    }

    .flex-column-mb {
        flex-direction: column;
    }

    h1 {
        font-size: 27px;
        line-height: 40px;
    }

    h2 {
        font-size: 28px;
        line-height: 38px;
    }

    h3 {
        font-size: 20px;
        line-height: 33px;
    }

    .header-title .container>div {
        justify-content: center;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        font-size: 21px;
        line-height: 30px;
    }

    .image-block {
        margin: 24px 0;
    }

    .header-title h3 {
        font-size: 20px;
        line-height: 38px;
    }

    .content {
        margin-bottom: 150px;
    }

    .content.extra {
        margin-bottom: 300px;
    }

    .article-author {
        align-items: flex-end;
        font-size: 14px;
        line-height: 22px;
        gap: 3px;
    }

    .article-author-photo {
        align-self: center;
        margin-right: 7px;
    }

    .article-author-stars {
        margin-bottom: 0;
        order: 1;
    }

    .built h2 {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 0;
    }

    .popular h2 {
        max-width: 640px;
    }

    .list-block li {
        display: flex;
    }

    .list-block li::before {
        margin-top: 4px;
    }

    .list-block li span {
        flex: 1;
    }

    .reviews-items {
        justify-content: center;
    }

    .update-block-header h2 {
        padding: 4px 16px;
    }

    .update-block-content {
        padding: 16px;
    }

    .update-block-content .btn {
        font-size: 24px;
    }

    footer {
        padding: 30px 0 150px 0;
    }

    .footer-links a {
        padding: 0 24px;
    }
    .sidebar {
        margin: 0px auto;
        width: 100%;
    }
    .sidebar .sidebar-top {
        max-width: 100%;
    }
    .sidebar .sidebar-content {
        max-width: 100%;
    }
    .notification-wrapper {
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .cta-fixed .btn {
        padding: 14px 10px;
        letter-spacing: -0.52px;
        font-size: clamp(14px, 4.6vw, 20px);
        line-height: 26px;
    }
}
@media screen and (max-width: 396px) {
    .article-author-written-by {
        font-size: 11px;
    }
    .notification-inner {
        font-size: 14px;
    }
}