/*ABOUT ME*/
.about-me {
    margin-top: 10px;
    text-align: center;
    padding: 0 25px;
}

.am-title {
    margin-bottom: 10px;
}

.am-text {
    line-height: 2rem;
}

/*MY HISTORY*/
.my-history {
    margin-top: 25px;
    display: none;
}

.history-button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 50px;
    height: auto;
    width: auto;
    cursor: pointer;
}

/*SOCIAL MEDIA*/
.sm {
    width: 100%;
    text-align: right;
    bottom: 0;
    z-index: 100;
    padding-right: 25px;
}

.sm-title {
    position: absolute;
    display: flex;
    position: relative;
    justify-content: right;
    align-items: right;
    right: auto;
    padding-right: 25px;
}

.sm a {
    text-decoration: none;
}


/*COOKIES*/
.container {
    width: 1600px;
    height: auto;

}
.subcontainer {
    width: 85%;
    margin: auto;
}

#cookies {
    width: 100%;
    position: fixed;
    bottom: 0;
    color: antiquewhite;
    background-color: #512DA8;
    z-index: 1;
    /*display: none; */
}

.cookies {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    gap: 10px;

}

.cookies a {
    color: antiquewhite;
    font-weight: 500;
    text-decoration: none;
}

#cookie-btn {
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    border: 3px solid white;
    background-color: black;
    color: antiquewhite;
}


.home-reviews {
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.reviewSlider {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.homeReviewCard {
    display: none;
    padding: 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.homeReviewCard .stars {
    font-size: 22px;
    color: gold;
    margin-bottom: 10px;
}

.homeReviewCard .text {
    font-size: 18px;
    font-style: italic;
}

.homeReviewCard .name {
    margin-top: 15px;
    font-size: 16px;
    color: #ff8c8c;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 12px;
    font-size: 22px;
    user-select: none;
    color: white;
    transform: translateY(-50%);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.seeAll {
    display: block;
    margin-top: 15px;
    color: #ffcc00;
    text-decoration: underline;
}


/*MOBILE LAYOUT*/
@media screen and (max-width: 1024px) {
    body {
        overflow-y: hidden;
    }

    /*ABOUT ME*/
    .about-me {
        margin-top: 10px;
        text-align: center;
        padding-right: 5px;
        padding-left: 5px;
        font-size: smaller;
    }

    .am-title {
        margin-bottom: 5px;
    }

    .am-text {
        line-height: 1.15rem;
    }

    /*MY HISTORY*/
    .my-history {
        margin-top: 10px;
        display: none;
    }

    .history-button {
        margin-top: 5px;
        padding: 10px;
        border: none;
        border-radius: 50px;
        height: auto;
        width: auto;
    }

    .sm {
        width: 100%;
        text-align: right;
        bottom: 0;
        z-index: 100;
        padding-right: 5px;

        font-size: small;
    }

    .sm-title {
        position: absolute;
        display: flex;
        position: relative;
        justify-content: right;
        align-items: right;
        right: auto;
        margin-top: 25px;
        padding-right: 45px;
    }

    .sm a {
        text-decoration: none;
    }

    /*COOKIE POP-UP*/
    .cookies{
        width: 100%;
        padding: 10px 0;
    }


}

@media(max-width:1600px) {
    .container {
        width: 100%;
    }
}