body {
    color: #fff;
    background-color: #000 !important;
}

.master-breadcrumb {
    display: none;
}

p {
    font-size: 16px;
    line-height: 24px;
}

/* Heading */
.st-reseller-heading {
    text-align: center;
    padding: 30px 0 100px 0;
}

.st-reseller-heading .container {
    max-width: 900px !important;
}

.st-reseller-heading .m-title {
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0;
}

.st-reseller-heading .m-alttitle {
    font-size: 18px;
    font-weight: 500;
}

.st-reseller-heading .m-subtitle {
    font-size: 22px;
    font-weight: 600;
}

.st-reseller-heading .desc {
    margin: 50px 0;
}

/* Boxes */
.st-reseller-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}

.st-reseller-boxes .item {
    background-color: #03123D;
    padding: 20px;
    border-radius: 10px;
}

.st-reseller-boxes .item .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.st-reseller-boxes .item .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

/* WHY */
.st-reseller-why {
    padding: 60px 0 30px 0;
    text-align: center;
}

.st-reseller-why .container {
    max-width: 700px !important;
}

.st-reseller-why .title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 30px;
}


/* Content */
.st-reseller-content {
    padding: 50px 0;
}

.st-reseller-content .title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 30px;
}

.st-reseller-content ul {
    padding-left: 16px;
}

.st-reseller-content ul li {
    margin-bottom: 5px;
}


/* Contact */
.st-reseller-contact {
    padding: 40px 0;
}

.st-reseller-contact .grid {
    display: grid;
    grid-template-columns: 1fr 250px;
    align-items: center;
}

.st-reseller-contact .title {
    margin-bottom: 25px;
    font-weight: 600;
}

.st-reseller-contact p {
    max-width: 700px;
}

@media (max-width: 768px) {
    .st-reseller-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .st-reseller-content .title {
        font-size: 30px;
    }
    .st-reseller-why .title {
        font-size: 40px;
    }
    .st-reseller-content {
        padding: 20px 0;
    }
    .st-reseller-content .img {
        margin: 10px 0;
    }
    .st-reseller-contact .grid {
        grid-template-columns: 1fr;
    }
}