:root{
    --red: #EB5757;
}

body{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

header{
    border-bottom: 1px solid #D9DBE9;
}

#header{
    font-weight: 700;
    font-size: 34px;
    color: var(--red);

    height: 122px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
#header > a{
    color: var(--red);
}

#header > .menu-button{
    display: flex;
    height: 122px;
    justify-content: center;
    align-items: center;
    position: relative;
}

#header > .menu-button > img{
    cursor: pointer;
    width: 28px;
    height: auto;
}

.top-section{
    padding: 134px 0;
    position: relative;
}

button.button{
    height: 64px;
    padding: 0 32px;
    border-radius: 32px;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
button.button.red{
    color: white;
    background: var(--red);
    border: 1px solid white;
    transition: 0.5s all;
}
button.button.red:hover{
    color: var(--red);
    background: white;
    border: 1px solid var(--red);
    transition: 0.5s all;
}
button.button.white{
    color: var(--red);
    background: white;
    border: 1px solid var(--red);
    transition: 0.5s all;
}
button.button.white:hover{
    color: white;
    background: var(--red);
    transition: 0.5s all;
}
button.button.wwhite{
    color: white;
    background: none;
    border: 1px solid white;
}

button.button.small{
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    text-transform: none;
}

.pref-box{
    display: flex;
    align-items: flex-start;
    border-right: 1px solid #D9DBE9;
}
.pref-box:last-child{
    border-right: none;
}
.pref-box:nth-child(2){
    padding-right: 32px;
}
.pref-box > img{
    height: 30px;
    width: auto;
}

.pref-box > .inner{
    margin-left: 16px;
    display: flex;
    flex-direction: column;
}

.pref-box > .inner > .count{
    color: var(--red);
    font-size: 30px;
    line-height: 30px;
    height: 30px;
    font-weight: 700;
}
.pref-box > .inner > .description{
    margin-top: 16px;
    color: #6E7191;
}

.red-header{
    color: #EB5757;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

.conditions{
    padding-top: 64px;
}

.primary-black{
    color: black;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.info-box{
    border: 1px solid #FF5C3C;
    border-radius: 16px;
    padding: 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-box > img{
    height: 180px;
    width: auto;
}
.info-box > .header{
    font-size: 18px;
    font-weight: bold;
}
.info-box > span{
    text-align: center;
}

.blog{
    padding-top: 64px;
}

.gallery-slider > div{
    height: 600px;
    width: auto;
}

.gallery-img{
    border-radius: 20px;
}

#pluses{
    margin-top: 64px;
    background-image: url("../icons/hostess23 1.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 500px;
}

.plus{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    font-size: 18px;
    font-weight: 600;
    color: #4E4B66;
}

.plus > img{
    width: 70px;
    height: 70px;
}

.plus-row{
    margin-top: 70px;
}

.plusImg{
    width: 100%;
    height: auto;
}

.plus-row-mob{
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.plus-row-mob > img{
    height: 70px;
    width: 70px;
}

.plus-row-mob > span{
    margin-left: 16px;
}

.feedbacks-pc{
    margin-top: 96px;
}

.feedbacks-mob{
    margin-top: 32px;
}

.feedback-box{
    border: 1px solid #E4DAFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    height: calc(100% - 48px);
}

.feedback-box > .name{
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--red);
    border-bottom: 1px solid #E4DAFF;
    width: 60%;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.feedback-box > .country{
    font-size: 18px;
    font-weight: 400;
    color: var(--red);
    border-bottom: 1px solid #E4DAFF;
    width: 60%;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.feedback-box > .review{
    font-size: 18px;
    font-weight: 400;
    color: #4E4B66;
}

.avatar > img{
    position: absolute;
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
}

.bottom-block{
    background-image: url("../icons/block-background.png");
    background-position: top right;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    color: white;
}

footer{
    margin-top: 92px;
    margin-bottom: 64px;
}

.footer-header{
    font-size: 20px;
    font-weight: 600;
    color: black;
}
.footer-header.red{
    color: var(--red);
}

.footer-link{
    font-size: 14px;
    font-weight: 400;
    color: #6E7191;
    text-decoration: none;
}

.section{
    padding: 48px 0;
}

.tour-row{
    padding: 32px 0;
    border-bottom: 1px solid #D9DBE9;
}

.tour-image{
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.tour-name{
    font-size: 24px;
    font-weight: 600;
    color: var(--red);
}

.tour-description{
    font-size: 16px;
    font-weight: 400;
    color: #575758;
}

.tour-data{
    display: flex;
}

.tour-data > .data{
    margin-right: 28px;
    height: 40px;
    display: flex;
    align-items: center;
}

.data-name{
    font-size: 14px;
    font-weight: 600;
}

.data-value{
    margin-left: 16px;
    font-size: 24px;
    font-weight: 600;
}

.tour-info-row{
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
}

.tour-info-row > .v{
    font-weight: 600;
}

.tour-buttons{
    display: flex;
    height: 64px;
    align-items: flex-end;
    justify-content: space-evenly;
}

.tour-buttons > img{
    height: 64px;
    width: auto;
}

.tour-buttons > a > img{
    height: 64px;
    width: auto;
}

.tour-card{
    min-width: 40%;
    width: 40%;
}

.tour-img{
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.tour-img > .images{
    display: flex;
    width: 100%;
    align-items: center;
}

.tour-img > .images > img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.tour-card > .tour-content > .name{
    padding: 16px 0;
    font-size: 32px;
    font-weight: 700;
    color: black;
}
.tour-card > .tour-content > .description{
    font-size: 16px;
    font-weight: 400;
    color: black;
}

.cards-wrapper{
    display: flex;
    width: 100%;
}

.cards-list{
    width: 100%;
}

.card-button{
    font-family: "Nunito", sans-serif;
    height: 70px;
    color: white;
    background: #191D21;
    font-size: 24px;
    font-weight: 800;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 16px;
    outline: none;
}

.card-amounts{
    font-family: "Nunito", sans-serif;
    height: 70px;
    background: none;
    color: #191D21;
    border: 1px solid #191D21;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 28px;
    font-weight: 800;
}

.c-pointer{
    cursor: pointer;
}

.checkbox-circle{
    margin: 12px 0;
    display: flex;
}

.checkbox-circle input[type="checkbox"] {
    display: none;
}
.checkbox-circle input[type="checkbox"] + label {
    display: flex;
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    align-items: center;
}

.checkbox-circle input[type="checkbox"] + label > span{
    display: flex;
    flex-direction: column;
    margin-left: 24px;
}

.checkbox-circle input[type="checkbox"]:hover + label:before {
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    background: #50565a;
    box-shadow: 0 0 0 1px #000;
}
.checkbox-circle input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
}
.checkbox-circle input[type="checkbox"] + label:before {
    flex-shrink: 0;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #343a3f;
    border-radius: 1em;
    -webkit-transition: all 0.2s, transform 0.3s ease-in-out;
    transition: all 0.2s, transform 0.3s ease-in-out;
    background: #f3f3f3;
}
.checkbox-circle input[type="checkbox"]:checked + label:before {
    border-radius: 1em;
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    background: #50565a;
    box-shadow: 0 0 0 1px #000;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

#menu-block{
    position: absolute;
    display: none;
    right: 0;
    top: 50px;
    width: 0;
    height: 0;
    background: var(--red);
    color: white;
    transition: all 0.25s;
    z-index: 10;
}
#menu-block.active{
    display: block;
    width: 400px;
    height: 700px;
    transition: all 0.25s;
}

#menu-block > .header{
    height: 84px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    border-bottom: 1px solid white;
}
#menu-block > .header > a{
    color: white;
}
#menu-block > .header > img{
    height: 24px;
    width: auto;
    cursor: pointer;
}
#menu-block > a{
    display: block;
    padding: 32px 0 32px 64px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    color: white;
}
#menu-block > a:hover{
    background: #FF84B7;
}
#menu-block > a.down{
    width: 100%;
    position: absolute;
    bottom: 0;
}

.card-img{
    height: 64px;
    width: auto;
}

.card-table{
    font-size: 24px;
    font-weight: bold;
}

.card-row{
    font-size: 24px;
    font-weight: bold;
}

.card-name{
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.remove-card{
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: normal;
    font-size: 32px;
}

.card-sum{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
    font-size: 24px;
    font-weight: bold;
}

.services-header{
    font-size: 32px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
}

.services-parent-category{
    font-size: 36px;
    font-weight: bold;
}

.services-category{
    font-size: 16px;
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .gallery-img{
        height: 600px;
    }

    .container-fluid.sized{
        max-width: 1440px;
        margin: auto;
    }

    .top-section > img{
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: auto;
    }

    .section-header{
        font-size: 64px;
        font-weight: 700;
        color: #4E4B66;
    }

    .primary-header{
        font-size: 48px;
        font-weight: 700;
        color: #4E4B66;
        line-height: 50px;
    }

    .second-header{
        color: black;
        font-size: 32px;
        font-weight: 700;
    }


    .pref-box{
        padding: 48px 0 48px 64px;
    }

    .pref-box:first-child{
        padding-left: 0;
    }

    #pluses-mob{
        display: none;
    }

    .feedbacks-mob{
        display: none;
    }

    .avatar{
        width: 120px;
        height: 120px;
        position: relative;
        /*top: -74px*/
    }

    .footer-menu{
        padding-left: 32px
    }

    .bottom-block{
        padding: 140px;
    }

    .bottom-block > span{
        font-size: 48px;
        font-weight: 700;
        text-align: center;
    }

    .tour-card.single{
        width: 100%;
        min-width: 100%;
        display: flex;
    }

    .tour-img.single{
        width: 40%;
        height: 100%;
    }

    .tour-card.single > .tour-content{
        position: relative;
        width: 60%;
        padding-left: 32px;
        display: flex;
        flex-direction: column;
        overflow-y: visible;
        overflow-x: visible;
    }

    .tour-card.single > .tour-content > .name{
        padding: 0;
    }

    .tour-card.single > .tour-content > .b-zero{
        position: absolute;
        width: calc(100% - 32px);
        bottom: 0;
    }

    .small-bold{
        font-size: 32px;
        font-weight: 700;
    }

    .swiper-slide {
        width: 30%;
    }
}
@media (max-width: 768px) {
    .swiper-slide {
        width: 80%;
    }

    #header{
        padding: 0 16px;
    }

    .top-section > img{
        height: auto;
        width: 100%;
    }

    .section-header{
        font-size: 48px;
        font-weight: 700;
        color: #4E4B66;
    }

    .primary-header{
        font-size: 32px;
        font-weight: 700;
        color: #4E4B66;
        line-height: 35px;
    }

    .second-header{
        color: black;
        font-size: 32px;
        font-weight: 700;
    }


    button.button{
        width: 100%;
    }

    .mm-t-3{
        margin-top: 16px;
    }

    .pref-box{
        padding: 48px;
        border-bottom: 1px solid #D9DBE9;
    }

    #pluses-pc{
        display: none;
    }

    .feedbacks-pc{
        display: none;
    }

    .avatar{
        width: 120px;
        height: 120px;
        position: relative;
    }

    .footer-header{
        margin-top: 32px;
    }
    .footer-header:first-child{
        margin-top: 0;
    }

    .bottom-block{
        padding: 140px 16px;
    }

    .bottom-block > span{
        font-size: 32px;
        font-weight: 600;
        text-align: center;
    }

    .cards-wrapper{
        display: inline-block;
    }

    .tour-card{
        width: 100%;
        min-width: 100%;
        margin-bottom: 32px;
    }

    .tour-img{
        width: 100%;
        height: auto;
    }

    .tour-buttons > a > img{
        height: 32px;
        width: auto;
    }

    #menu-block.active{
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        transition: all 0.25s;
        top: 0;
    }

    #header{
        font-size: 28px;
    }

    .m-hidden{
        display: none;
    }

    .card-row{
        font-size: 16px;
        font-weight: normal;
    }

    .small-bold{
        font-size: 24px;
        font-weight: 500;
    }

    .data-value{
        margin-left: 6px;
    }

    .gallery-img{
        width: 100%;
    }
}