.most-popular-section ul {
    list-style: none;
}

.most-popular-section ul li {
    color: var(--grey-color-500);
    padding: 1.2rem 0 1.2rem 3rem;
    position: relative;
}

.most-popular-section ul li:last-child {
    border: 0;
}

.most-popular-section ul li::before {
    content: '';
    display: block;
    background: url(../img/tick-shape.svg) no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
    top: 2.1rem;
    position: absolute;   
}

.most-popular-section .img-box img {
    position: relative;
    width: auto;
    max-height: 38rem;
    object-fit: cover;
    border-radius: 0.6rem;
    box-shadow: rgba(0,0,0,0.12) -2px 5px 10px;
}

.most-popular-section .img-box {
    position: relative;
    max-width: max-content;
}

.most-popular-section .img-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 19px;
    left: -19px;
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
    border: 1px solid var(--primary-color);
    opacity: 0.3;
}

.mt4-platforms .img-box {
    position: relative;
    top: -2.6rem;
}

.mt4-platforms .tabs-box {
    border-radius: 1rem;
    overflow: hidden;
}

.mt4-platforms .tabs-box .nav {
    justify-content: space-between;
    align-items: center;
    background: rgba(53, 60, 86, 0.5);
}

.mt4-platforms .tabs-box .nav li {
    flex: 1;
}

.mt4-platforms .tabs-box .nav li a {
    color: var(--white);
    padding: 2.6rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    height: 10rem;
    width: 100%;
    border-right: 1px solid #4E5570;
}

.mt4-platforms .tabs-box .nav li:last-child a {
    border: 0;
}

.mt4-platforms .tabs-box .nav li a svg {
    margin-right: .7rem;
}

.mt4-platforms .tabs-box .nav li a.active {
    background: #4E5570;
}

.mt4-platforms .tabs-box .nav li a.active svg * {
    fill-opacity: 1;
}

.mt4-platforms .tabs-box .tab-content {
    margin-top: 0.2rem;
    background: #4E5570;
    color: var(--white);
    padding: 3.6rem 4.2rem 5rem;
}

.mt4-platforms .tabs-box .tab-content ul {
    list-style: none;
}

.mt4-platforms .tabs-box .tab-content ul li {
    padding: 0.7rem 0 0.7rem 3rem;
    position: relative;
}

.mt4-platforms .tabs-box .tab-content ul li:last-child {
    border: 0;
}

.mt4-platforms .tabs-box .tab-content ul li::before {
    content: '';
    display: block;
    background: url(../img/tick-shape.svg) no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
    top: 1.6rem;
    position: absolute;   
}

/* Media Queries */
@media (max-width: 1199px) {
    .mt4-platforms .tabs-box .nav li a {
        font-size: 1.6rem;
        height: 7rem;
    }
    .mt4-platforms .tabs-box .tab-content {

        padding: 3rem 3.2rem 4rem;
    }
    .mt4-platforms .tabs-box .nav li a svg {
        width: 2rem;
        height: 2rem;
    }
}
@media (max-width: 767px) {
    .most-popular-section .img-box {
        max-width: calc(100% - 20px);
        left: 16px;
    }
    .most-popular-section .img-box::before {
        top: 14px;
        left: -14px;
    }
    .most-popular-section .img-box img {
        width: 100%;
        max-height: unset;
    }
    .most-popular-section ul li {
        padding: 0.5rem 0 0.5rem 3rem;
    }
    .most-popular-section ul li::before {
        top: 1.1rem;
    }
    .mt4-platforms .tabs-box .nav {
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .mt4-platforms .tabs-box .tab-content {
        padding: 2.4rem 2.2rem 3rem;
    }
}