#top-banner{
    max-width: 1250px;
    margin: 95px auto 25px;
    padding: 0 25px;
    position: relative;
}
#top-banner img{
    object-fit: cover;
    width: 100%;
    height: 450px;
    object-position: bottom left;
    border-radius: 8px;
}
#top-banner .caption{
    position: absolute;
    inset: 0;
    left: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    padding: 48px 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}
#top-banner .caption .text{
    display: flex;
    flex-direction: column;
    max-width: 420px;
    color: #FFFFFF;
}
#top-banner .caption .text h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}
#top-banner .caption .text p{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}
#top-banner .caption .text .btn{
    font-weight: 600;
    align-self: baseline;
    padding: 14px 22px;
    line-height: 1;
    background-color: #FFFFFF;
    color: #2660D2;
    border-radius: 8px;
}
#top-banner .caption .text .btn:hover{
    background-color: #2660D2;
    color: #FFFFFF;
}

.selection_tour{
    max-width: 1250px;
    min-height: 500px;
    margin: 0 auto 40px;
    padding: 5px 25px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.advantages{
    max-width: 1250px;
    margin: 0 auto 40px auto;
    padding: 0 25px;
}
#advantages_swiper {
    overflow: visible;
}
#advantages_swiper .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 16px;
}
#advantages_swiper .item {
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #eee;
    background: #fff;
    height: 100%;
    box-sizing: border-box;
}
#advantages_swiper .item > .caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
#advantages_swiper .item > .caption div{
    height: 40px;
    width: 40px !important;
    min-width: 40px;
}
#advantages_swiper .item > .caption span{
    font-weight: 700;
    font-size: 16px;
}
#advantages_swiper .item > p {
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 14px;
    flex-grow: 1;
}

.aboutPanel{
    display: flex;
    max-width: 1200px;
    gap: 15px;
    margin: 0 auto 40px auto;
    padding: 32px 25px;
    background-color: #d2e1ff;
    border-radius: 8px;
}
.aboutPanel > .about-content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 350px);
}
.aboutPanel > .about-content > h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.aboutPanel > .about-content > .text > p:last-child{
    margin-bottom: 0;
}
.aboutPanel > .about-img {
    display: flex;
    max-width: 350px;
    width: 100%;
    gap: 15px;
}
.aboutPanel > .about-img > img {
    min-height: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 16px;
}

.reviews{
    max-width: 1250px;
    margin: 0 auto 40px auto;
    padding: 0 25px;
}
.reviews .caption h4{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}
.reviews .caption p{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}
.reviews-container{
    display: flex;
    max-width: 1400px;
    padding: 16px 0;
    overflow: hidden;
}
.reviews-container .swiper-wrapper {
    display: flex;
    justify-content: stretch;
}
.reviews-container .swiper-wrapper .swiper-slide{
    align-self: stretch;
}
.reviews-container .item{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}
.reviews-container .item p{
    margin-bottom: 0;
    font-size: 14px;
}
.reviews-container .item .caption{
    display: flex;
    gap: 20px;
}
.reviews-container .item .caption .avatar {
    border-radius: 50%;
    overflow: hidden;
}
.reviews-container .item .caption .avatar span{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    font-size: 20px;
    background-color: #005fd4;
    color: #fff;
}
.reviews-container .item .caption .avatar img{
    height: 60px;
    width: 60px;
    object-fit: contain;
}
.reviews-container .item .caption .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reviews-container .item .caption .info .name{
    font-size: 18px;
    font-weight: 500;
}
.reviews-container .item .caption .info .dop{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.reviews-container .item .caption .info .dop .stars{
    color: #fca32d;
}
.reviews-container .item .caption .info .dop .date{
    color: #555555;
}
.reviewsBtn {
    width: 100%;
    max-width: 400px;
    margin: 10px auto 40px;
    display: block;
    background-color: #fca32d;
    color: #fff;
}
.reviewsBtn:hover{
    background-color: #e08d1f;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    #top-banner{
        margin: 0 0 25px;
        padding: 0;
    }
    #top-banner img{
        border-radius: 0;
        height: 400px;
    }
    #top-banner .caption{
        left: 0;
        right: 0;
        padding: 48px 16px;
        border-radius: 0;
    }
    #top-banner .caption .text h2{
        font-size: 24px;
    }
    #top-banner .caption .text p{
        font-size: 16px;
    }
    #top-banner .caption .text .btn{
        font-size: 14px;
    }
    .destinations .items .item:nth-child(n+9) {
        display: none;
    }

    #advantages_swiper {
        overflow: hidden;
        padding: 5px 0;
    }
    #advantages_swiper .swiper-wrapper {
        display: flex;
        justify-content: stretch;
        gap: 0;
    }
    #advantages_swiper .swiper-slide {
        height: auto;
    }
    #advantages_swiper .item > .caption{
        flex-direction: column;
        align-items: baseline;
    }
    .aboutPanel{
        border-radius: 0;
    }
    .aboutPanel > .about-content{
        width: 100%;
    }
    .aboutPanel > .about-img{
        max-width: inherit;
    }
    .aboutPanel > .about-content > .text > p:nth-child(3) {
        display: none;
    }
}
@media (max-width: 768px) {
    .selection_tour{
        min-height: 380px;
        padding: 0 16px;
    }
    .advantages{
        padding: 0 16px;
    }
    .aboutPanel{
        padding: 32px 16px;
    }
    .reviews{
        padding: 0 16px;
    }
    .reviews .caption h4{
        font-size: 24px;
    }
    .reviews .caption p{
        font-size: 16px;
    }
    .aboutPanel > .about-content > h4{
        font-size: 24px;
    }
    .aboutPanel > .about-content > h4 span{
        display: block;
    }
    .aboutPanel > .about-content > .text > p:nth-child(4) {
        display: none;
    }
}
@media (max-width: 576px) {
    #top-banner img{
        height: 300px;
    }
    #top-banner .caption .text h2{
        font-size: 24px;
    }
    #top-banner .caption .text p{
        font-size: 16px;
    }
    #top-banner .caption .text .btn{
        font-size: 14px;
    }
    .destinations .items .item:nth-child(n+6) {
        display: none;
    }

    .aboutPanel{
        flex-direction: column;
        gap: 17px;
    }

    .aboutPanel > .about-content > .text > p:nth-child(4) {
        display: inherit;
    }
    .reviews-container{
        max-width: 1400px;
        margin: 15px auto;
    }
    .reviewsBtn {
        margin: 10px auto;
    }
}