@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope';
    color: #000000;
}

a {
    text-decoration: none;
}

.bg-gray {
    background-color: #F5F5F5;
}

.bg-pink {
    background-color: #F971F5 !important;
}

/* content */
.custom-max-width-sec {
    max-width: 656px;
    margin: 0 auto;
}

.image-caption-text {
    font-size: 32px;
    font-weight: 300;
}

.digital-text-area {
    font-size: 22px;
}

.section-sub-text {
    font-size: 18px;
    font-weight: 600;
    color: #828282;
    margin-top: 35px;
}

.section-heading {
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
}

.card {
    flex-direction: row;
    background-color: #F5F5F5;
    border: none;
}

.card-img-top {
    width: auto;
    border-radius: 6px 0 0 6px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
}

.card-text {
    font-size: 18px;
    color: #828282;
}

.social-area {
    cursor: default;
}

.social-icon {
    margin-left: 10px;
}

.social-icon:hover {
    transform: scale(1.08);
}

.right-arrow-icon {
    position: absolute;
    right: 6%;
    bottom: 10%;
}

.trip-advisor-area {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.rating-text {
    font-size: 22px;
}

.rating-amount span {
    font-size: 18px;
    font-weight: bold;
}

.rating-amount {
    display: flex;
    align-items: center;
}

.box-heading-area {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.user-logo {
    width: 40px;
    height: 40px;
    background-color: #8C79D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
}

.username {
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
}

.address {
    font-size: 16px;
    color: #80868E;
    line-height: 18px;
}

.content-text {
    font-size: 22px;
}

.box-content {
    margin-top: 50px;
}

.box-wrapper {
    padding: 30px 15px 10px 30px;
    height: 345px;
    overflow-x: auto;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
}

.carousel-control-next {
    right: -14%;
}

.carousel-control-prev {
    left: -14%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 100%;
    height: 100%;
    background-size: auto;
}

.carousel-control-next-icon {
    background-image: url(../images/right-arrow-2.png) !important;
}

.carousel-control-prev-icon {
    background-image: url(../images/left-arrow.png) !important;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: #D9D9D9;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #27BDBE;
}

.section-divide-hr {
    margin: 25px 0;
    border: 1px solid #D9D9D9;
    opacity: .75;
}

.rating-text span {
    font-weight: bold;
    margin-right: 8px;
}

.section-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #80868E;
}

.associate-logos {
    margin: 10px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .content-text {
        height: 155px;
        overflow-y: auto;
    }

    .box-wrapper {
        height: auto;
        overflow: unset;
    }

    .card {
        flex-direction: column;
    }

    .image-caption-text {
        font-size: 26px;
    }
}

.section-sub-heading {
    font-size: 30px;
    font-weight: bold;
}

.star-list {
    padding-left: 0px;
    margin-top: 15px;
}

.star-list li {
    list-style-type: none;
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 25px;
    background-repeat: no-repeat;
    background-image: url(../images/star.svg);
    background-size: 16px;
    background-position: left 7px;
}

.author-mobile {
    border-radius: 6px 6px 0 0;
}