/* Enter type your CSS */

.ls-icons-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    font-size: 40px;
}

.ls-icons-list li {
    margin: 25px 50px;
}

/*=== 11. Overview-CSS ===*/
.premium-backpack {
    margin: 0;
    text-align: center;
    padding: 30px;
    background: url('assets/images/theme-1/premium-backpack-bg2.png') no-repeat scroll center center / contain;
}

.feature-box-2 {
    position: relative;
    padding-left: 88px;
    margin-bottom: 40px;
}

.feature-box-2 .icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
    line-height: 64px;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-box-shadow: 0px 15px 35px rgba(255, 112, 49, 0.3);
    box-shadow: 0px 15px 35px rgba(255, 112, 49, 0.3);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.feature-box-2:hover .icon {
    background-color: #ffffff;
    color: var(--primary-color);
}

.feature-box-2 .title {
    font-size: 24px;
    margin-bottom: 8px;
}

/*=== 12. Video-CSS ===*/
.video-play-box {
    background-image: url('assets/images/theme-2/video-image.jpg');
    padding: 225px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.video-play-box .play-button {
    width: 120px;
    height: 120px;
    font-size: 36px;
    text-align: center;
    line-height: 120px;
    color: var(--primary-color);
    background-color: #ffffff;
    display: inline-block;
    border-radius: 120px;
    padding-left: 5px;
}

.video-play-box .play-button:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.video-play-box .overlay-text {
    position: absolute;
    left: -50px;
    bottom: 0;
    font-size: 238px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.3;
    line-height: 0.4em;
}
.wave-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100px;
    height: 100px;
}


.wave-effect span {
    width: 100%;
    height: 100%;
    border-style: solid;
    border-color: #ffffff;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 200px;
    -webkit-animation-name: wave;
    animation-name: wave;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.wave-effect span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-effect span:nth-child(2) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.wave-effect span:nth-child(3) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.wave-effect span:nth-child(4) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

@-webkit-keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        border-width: 1px;
    }

    100% {
        -webkit-transform: scale(2.6);
        transform: scale(2.6);
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        border-width: 1px;
    }

    100% {
        -webkit-transform: scale(2.6);
        transform: scale(2.6);
        opacity: 0;
        border-width: 0px;
    }
}

/*=== 16. FAQ-CSS ===*/
.faq-image {
    border-radius: 6px;
    overflow: hidden;
}

.accordion .item {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    margin-bottom: 20px;
}

.accordion .item:last-child {
    margin-bottom: 0;
}

.accordion .item .title {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 24px;
    margin: 0;
    cursor: pointer;
}

.accordion .item .title a {
    display: block;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion .item .title a:after {
    content: "\e963";
    font-family: 'landshop';
    float: right;
    line-height: 1;
    margin-left: 10px;
}

.accordion .item .title a[aria-expanded="true"]:after {
    content: "\e962";
}

.accordion .item .desc p {
    padding: 0 24px 24px 24px;
}

