@import url(https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;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;
}

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

.pic-block:before {
    content: '';
    display: block;
    background: linear-gradient(165deg, #56FDE4 0%, #2B95DE 100%);
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0 180px 180px;
}

.pic-block:after {
    content: '';
    display: block;
    background: linear-gradient(0, #000000, transparent);
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    /* height: 100%; */
    opacity: 0.8;
    border-radius: 0px 0px 180px 180px;
    bottom: 10px;
}

.item-pic {
    /* width: 100%; */
    position: absolute;
    transition-duration: 0ms;
    object-fit: cover;
    height: 100vh;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 0px 180px 180px;
    padding: 5px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.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 {
    background-image: url(../images/5.jpg);
}

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

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

.stepbox {
    height: 80vh;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 180px 180px;
}

.logo {
    display: block;
    max-width: 220px;
    position: relative;
}

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

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

.location-count .row {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    justify-content: center;
    height: 32px;
    padding: 0 10px;
}

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

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

.location-count .row .count {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-right: 5px;
    background: linear-gradient(135deg, #56FDE4 0%, #2B95DE 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: linear-gradient(135deg, #56FDE4 0%, #2B95DE 100%);
    border-radius: 35px;
    text-decoration: none;
    margin: 0 auto 10px;
}

.btn-outline {
    background: #fff;
    color: #696A6C;
    border: 2px solid #32a6df;
    padding: 13px 15px;
}

/* contant */
.step-content {
    background: linear-gradient(90deg, rgba(38, 41, 51, 0.6) 13.3%, rgba(0, 5, 24, 0.6) 87.1%);
    border-radius: 30px;
    padding: 20px 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-size: cover;
}

.step-content h3 {
    font-size: 27px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #56FDE4 0%, #2B95DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.step-content p {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
}

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

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

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

/* 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: 150px;
}

.step-1 {
    padding-top: 100px;
}

.step.current {
    display: block;
}

@media (max-width: 1440px) {
    .btn-flex-wrap {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .pic-block:after {
        left: 0;
        right: 0;
    }
    
    .item-pic {
        left: 0;
        right: 0;
    }

    .step-content {
        padding: 15px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 16px;
    }

    .logo {
        max-width: 160px;
    }

    .location-count {
    }

    .location-count img {
        max-width: 10px;
    }

    .location-count .row {
        height: 25px;
    }
    
    .location-count .row-1 {
        margin-bottom: 10px;
    }

    .location-count .row p,
    .location-count .row .count {
        font-size: 13px;
    }
    
    .btn-wrap {
        margin-top: 25px;
    }
    
    .top-content {
        top: 10px;
    }
    
    .step {
        padding: 150px 15px 0;
    }
}
.timer {
    position: relative;
    background: url(../images/icon-timer.png) left 15px center no-repeat, linear-gradient(90deg, rgb(38, 41, 51, 0.6) 13%, rgb(0, 5, 24, 0.6) 87%);
    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;
    min-width: 120px;
    border: 2px solid #34addf;
    padding-left: 40px;
}

@media (max-width: 480px) {
    .timer {
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 14px;
        background-size: 16px;
    }
}
/* SAFETY BLOCK */

.safety-block {
    position: relative;
    max-width: 800px;
    margin: 20px 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: 20px;
    margin: 10px 0 10px;
    font-weight: 600;
}

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

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

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

@media (max-width: 480px) {
    .safety-block {
        margin: 15px 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;
    max-width: 990px;
}

.comments_list_row {
    position: relative;
    border-radius: 20px;
    color: #44454A;
    font-size: 15px;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    padding: 28px;
    background: #fff;
}

.comments_list_row:after {
    content: '';
    display: block;
    background: linear-gradient(165deg, #56FDE4 0%, #2B95DE 100%);
    position: absolute;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    z-index: -1;
}

.photo_avatar {
    padding-right: 20px;
}

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

.comment_name {
    font-weight: 600;
    padding-bottom: 7px;
    font-size: 16px;
    background: linear-gradient(135deg, #56FDE4 0%, #2B95DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.comment_text {
    font-size: 20px;
    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: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #a9abaf;
}

.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 20px 10px;
        margin-top: 30px;
    }

    .comments_list_row {
        padding: 10px;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .photo_avatar {
        padding-right: 8px;
    }

    .photo_avatar img {
        max-width: 42px;
        height: 42px;
    }

    .comment_name,
    .comments__item__meta {
        font-size: 12px;
    }

    .comment_text {
        font-size: 14px;
    }

    .comments_list_btn {
        font-size: 12px;
        margin-left: 0;
        margin-right: 10px;
    }

    .custom-icon-comment {
        width: 13px;
        height: 10px;
    }

    .custom-icon-like {
        width: 13px;
        height: 12px;
    }

    .comments_list_btns {
        padding-top: 13px;
        justify-content: flex-start;
    }

    .comments_list_row:after {
        left: -3px;
        top: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 22px;
    }
}