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

/* general */
* {
    box-sizing: border-box;
}

html {
    /* min-height: 100vh; */
    position: relative;
    height: 100%;
}

body {
    position: relative;
    color: #fff;
    background: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Mulish', sans-serif;
    height: 100%;
}

.j-layout {
    position: relative;
    background: #fff;
}

.j-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0;
}

.header {
    position: relative;
    background-color: #fff;
    padding: 10px 0;
}

.header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .right-block {
    display: flex;
    align-items: center;
    flex-basis: 180px;
}

.header .right-block .btn-outline {
    padding: 5px 17px;
    font-size: 16px;
    color: #0095f6;
    box-shadow: inset 0px 0px 0px 1px rgb(0 149 246);
    border-radius: 6px;
    margin: 0 30px 0 15px;
    background: #fff;
}

.thumbnail-holder {
    display: flex;
    align-items: center;
}

.thumbnail-holder .thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-size: cover;
    margin-right: 10px;
}

.thumbnail-holder .name {
    font-size: 16px;
    font-weight: 500;
    color: #696A6C;
}

.more-info {
    display: block;
    background: url(../images/icon-more.png) no-repeat;
    width: 30px;
    height: 10px;
    flex-shrink: 0;
}

.pic-block {
    position: absolute;
    left: 0;
    top: 60px;
    right: 0;
    z-index: 1;
    height: 100vh;
}

.item-pic {
    width: 100%;
    position: absolute;
    transition-duration: 0ms;
    object-fit: cover;
    height: calc(100vh - 60px);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

.item-pic-1 {
    background-image: url(../images/1.jpg);
}

.item-pic-2 {
    background-image: url(../images/2.jpg);
}

.item-pic-3 {
    background-image: url(../images/3.jpg);
}

.item-pic-4 {
    background-image: url(../images/4.jpg);
}

.item-pic-5,
.item-pic-6 {
    background-image: url(../images/5.jpg);
}

.main {
    position: relative;
    z-index: 2;
}

.stepbox {
    height: calc(80vh - 60px);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 15px;
    padding: 0 15px;
}

/* location */
.location-count {
    position: relative;
}

.location-count .row {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    border: 0;
    justify-content: center;
    height: 32px;
    padding: 0 10px;
}

.location-count .row-1 {
    margin-bottom: 15px;
}

.location-count .row p {
    font-size: 13px;
    font-weight: 700;
    color: #3d3d3d;
    line-height: 1;
}

.location-count .row .count {
    font-size: 13px;
    font-weight: 700;
    color: #1FB9F2;
    margin-right: 5px;
    background: linear-gradient(92.15deg, #311EB1 0%, #B044C1 30.73%, #FF6EA6 67.19%, #FDD165 100%, #FDD165 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.location-count img {
    display: block;
    margin-right: 5px;
}

/* btn */
.btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    position: relative;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    /* border: 3px solid transparent; */
    color: #ffffff;
    max-width: 320px;
    background: #0095F6;
    border-radius: 14px;
    text-decoration: none;
    margin: 0 auto 10px;
}

.btn:after {
    content: '';
    display: block;
    background: linear-gradient(91.43deg, #FA9A2B 1.18%, #F1315F 50.66%, #813197 99.11%);
    position: absolute;
    left: -2px;
    top: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    z-index: -1;
}

.btn-outline {
    /* background: #fff; */
    color: #ffffff;
    box-shadow: inset 0px 0px 0px 3px rgb(0 149 246);
}

/* contant */
.step-content {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
}

.step-content:after {
    content: '';
    display: block;
    width: 23px;
    height: 23px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    transform: rotate(45deg);
    position: absolute;
    bottom: -12px;
}

/* .step-content:before {
    content: '';
    display: block;
    background-color: rgb(235, 235, 235, 0.9);
    position: absolute;
    left: 15px;
    bottom: -5px;
    height: 5px;
    right: 15px;
    border-radius: 0 0 20px 20px;
}

.step-content:after {
    content: '';
    display: block;
    background-color: rgb(211, 211, 211, 0.8);
    position: absolute;
    left: 25px;
    bottom: -10px;
    height: 5px;
    right: 25px;
    border-radius: 0 0 20px 20px;
} */

.step-content h3 {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(91.43deg, #FA9A2B 1.18%, #F1315F 50.66%, #813197 99.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.step-content p {
    color: #696A6C;
    text-align: center;
    font-size: 18px;
}

.btn-wrap {
    margin: 30px auto 0;
}

.btn-flex-wrap {
    display: flex;
    justify-content: space-between;
    margin: 25px auto 0;
    flex-wrap: wrap;
}

.btn-flex-wrap .btn {width: 45%;}

/* step */
.step {
    width: 100%;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    display: none;
    padding: 0px 30px;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 120px;
}

.step.current {
    display: block;
}

.step-bottom {
    margin-top: auto;
}

@media (max-with: 1440px) {
    
}

@media (max-width: 768px) {
    .header .wrap {
        padding: 0 15px;
    }
    
    .pic-block {
        /* left: 15px; */
        /* right: 15px; */
    }
    
    .step-content {
        padding: 10px;
        margin: 0 10px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 18px;
        padding: 10px;
    }
    
    .location-count {
    }
    
    .location-count img {
        max-width: 10px;
    }
    
    .location-count .row-1 {
        margin-bottom: 10px;
    }
    
    .location-count .row p,
    .location-count .row .count {
        font-size: 10px;
    }
    
    .top-content {
        top: 10px;
    }
    
    .step {
        padding: 120px 10px 0;
    }
}

.timer {
    position: relative;
    background: url(../images/icon-timer.png) left 15px center no-repeat #0095f6;
    border-radius: 35px;
    padding: 7px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    max-width: fit-content;
    z-index: 2;
    padding-left: 40px;
}

@media (max-width: 480px) {
    .timer {
        font-size: 14px;
        background-size: 16px;
        padding: 8px 20px 6px;
        padding-left: 35px;
    }
}
/* SAFETY BLOCK */

.safety-block {
    position: relative;
    max-width: 800px;
    margin: 30px auto 30px;
    z-index: 2;
}

.safety-block ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
}

.safety-block ul li {
    list-style-type: none;
    width: calc(100% / 3);
    text-align: center;
    padding: 0 10px;
    color: #fff;
}

.safety-block h4 {
    font-size: 19px;
    margin: 10px 0 10px;
    font-weight: 600;
}

.safety-block img {
    max-width: 74px;
    margin: 0 auto
}

.safety-block p {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

@media (max-width: 1440px) {
    .safety-block {
        margin-top: 15px;
    }
    
    .safety-block img {
        max-width: 65px;
    }
}

@media (max-width: 480px) {
    .safety-block {
        margin: 25px 0;
    }
    
    .safety-block img {
        max-width: 40px;
    }

    .safety-block h4 {
        font-size: 14px;
        margin: 5px 0;
    }

    .safety-block p {
        font-size: 10px;
    }
    
    .safety-block ul li {
        padding: 0 5px;
    }
}
/*Comments*/

.comments_list {
    display: block;
    width: 100%;
    margin: 30px auto 0;
    position: relative;
    z-index: 10;
    padding-bottom: 10px;
}

.comments_list_row {
    border-radius: 0;
    color: #3D3D3D;
    font-size: 15px;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* margin-bottom: 30px; */
    background-color: #fff;
    padding: 15px 15px 25px;
}

.photo_avatar {
    padding-right: 20px;
}

.photo_avatar img {
    display: block;
    max-width: 70px;
    height: 70px;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.comment_name {
    color: #0095F6;
    padding-bottom: 7px;
    font-size: 16px;
}

.comment_text {
    font-size: 18px;
    color: #696A6C;
}

.reviews {
    position: relative;
    flex-grow: 1;
}

.comments__item__meta {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    color: #696A6C;
}

.comments_list_btns {
    color: #3D3D3D;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 16px;
}

.comments_list_btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    color: #0095F6;
}

.comments_list_btn:hover,
.comments_list_btn:focus,
.comments_list_btn:active {
    opacity: 1;
}

.custom-icon {
    display: inline-block;
    vertical-align: bottom;
    width: 20px;
    height: 20px;
    margin: 0 3px 0 0;
    padding: 0;
    background-size: 100% !important;
    background-repeat: no-repeat;
}

.custom-icon-like {
    background-image: url(../images/icon-like.png);
    width: 16px;
    height: 15px;
}

.custom-icon-comment {
    background-image: url(../images/icon-comment.png);
    width: 16px;
    height: 13px;
}

.custom-icon-share {
    background-position: 0 -100px !important;
}

.custom-icon-view {
    background-position: 0 -161px !important;
}

.comments_list_icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.comments_list_icons_item {
    color: #64efdc;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.comments_list_icons_item:hover,
.comments_list_icons_item:focus,
.comments_list_icons_item:active {
    opacity: 1;
}

.item_views {
    margin-left: auto;
}

.item_like {
    margin-right: 20px;
}

.likes_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.like_people_image {
    border-radius: 100%;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    display: block;
}

.like_people_image_wrap {
    position: relative;
}

.like_people_image_wrap:nth-child(1) {
    z-index: 2;
}

.like_people_image_wrap:nth-child(2) {
    margin-left: -15px;
}

.like_people_images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 10px;
}

.like_people_text {
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .comments_list {
        /* padding: 0 15px 10px; */
        margin-top: 25px;
    }
    
    .comments_list_row {
        padding: 10px 10px 20px;
        align-items: flex-start;
    }
    
    .photo_avatar {
        padding-right: 8px;
    }

    .photo_avatar img {
        max-width: 40px;
        height: 40px;
    }
    
    .comment_name,
    .comments__item__meta {
        font-size: 13px;
    }
    
    .comment_text {
        font-size: 14px;
    }
    
    .comments_list_btn {
        font-size: 13px;
        margin-left: 0;
        margin-right: 15px;
    }
    
    .custom-icon-comment {
        width: 13px;
        height: 10px;
    }
    
    .custom-icon-like {
        width: 13px;
        height: 12px;
    }
    
    .comments_list_btns {
        padding-top: 13px;
        justify-content: flex-start;
    }
}