/* ============= ---- Transitions ---- ================ */
li.benefit, button.cf7mls_next.action-button, button.cf7mls_back.action-button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* ============= ---- Generic Styles ---- ================ */


/* ============= ---- Main ---- ================ */
.te-intro-content {
    max-width: 800px;
    width: 100%;
    margin-bottom: 60px;
}

.approved-stockist h2 {
    font-size: 40px;
}

ul.approved-benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
    width: 100%;
}

li.benefit {
    width: calc(100% / 3 - 60px);
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: grid;
    gap: 0px 20px;
    justify-content: center;
    align-items: baseline;
}

.benefit:hover {
    box-shadow: 5px 8px #d6d5d4;
}

.benefit i {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    color: #f9f9f9;
    position: relative;
    top: 48px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 300;
    font-size: 50px;
    line-height: 20px;
    color: white;
    z-index: 2;
}

.benefit svg {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    width: 100%;
    align-self: center;
    z-index: 1;
}

.benefit h3 {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    font-size: 22px;
}

.benefit p {
    margin-bottom: 0;
}

.benefit-ordering svg { fill: #d2347f; }
.benefit-pricing svg { fill: #547472; }
.benefit-manager svg { fill: #2471a3; }

.section-find-out {
    background-color: #fff9F1;
    padding: 120px 0;
    position: relative;
}

.section-find-out .container-core {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.find-out-content {
    width: calc(100% - 450px - 150px);
}

.find-out-content p {
    margin-bottom: 50px;
}

picture.find-out-img {
    max-width: 450px;
    width: 100%;
}

picture.find-out-img * {
    display: block;
    width: 100%;
    height: auto;
}


/* ============= ----Trade Form ---- ================ */
.section-apply {
    text-align: center;
}

.section-apply form {
    max-width: 900px;
    width: 100%;
    margin: auto;
    text-align: left;
}

.tc {
    text-align: left;
    font-size: 16px;
    max-height: 300px;
    overflow-x: hidden;
    margin-bottom: 60px;
}

.tc ol {
    margin-bottom:  20px;
}

button.cf7mls_next.action-button {
    font-family: 'kepler-std', serif;
    font-style: normal;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    background-color: #05618f;
    -webkit-box-shadow: 6px 6px 7px -6px rgb(0 0 0 / 60%);
    -moz-box-shadow: 6px 6px 7px -6px rgba(0,0,0,0.6);
    box-shadow: 6px 6px 7px -6px rgb(0 0 0 / 60%);
}

button.cf7mls_next.action-button:hover { background-color: #05486a; box-shadow: 4px 4px #000; }

button.cf7mls_back.action-button {
    font-family: 'kepler-std', serif;
    font-style: normal;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    background-color: black;
    color: #fff;
    -webkit-box-shadow: 6px 6px 7px -6px rgb(0 0 0 / 60%);
    -moz-box-shadow: 6px 6px 7px -6px rgba(0,0,0,0.6);
    box-shadow: 6px 6px 7px -6px rgb(0 0 0 / 60%);
}

button.cf7mls_back.action-button:hover { box-shadow: 4px 4px #000; }

ul.trade-nav {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

ul.trade-nav:before {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #c2c2c2;
    position: absolute;
}

ul.trade-nav li {
    width: 40px;
    height: 40px;
    font-family: 'kepler-std', serif;
    font-size: 22px;
    font-weight: 500;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border-radius: 8px;
    background-color: #ffffff;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

ul.trade-nav li.active {
    background-color: #05618f;
    color: #fff;
}



/* ======================= -------- 7.0  Media Queries -------- ========================== */
@media (max-width: 1400px) {
    .benefit i {
        top: 40px;
        font-size: 40px;
    }
}

@media (max-width: 1376px) {
    .benefit i {
        top: 52px;
    }
}

@media (max-width: 1250px) {
    li.benefit {
        width: calc(100% / 3 - 30px);
    }
}

@media (max-width: 1090px) {
    li.benefit {
        width: calc(100% / 2 - 30px);
        margin-bottom: 60px;
    }

    li.benefit:last-child {
        margin-bottom: 0px;
    }

    .benefit i {
        font-size: 50px;
    }
}

@media (max-width: 1050px) {
    .find-out-content, picture.find-out-img {
        width: calc(50% - 75px);
        display: block;
    }
}

@media (max-width: 950px) {
    .find-out-content {
        width: 100%;
    }

    picture.find-out-img {
        max-width: 500px;
        width: 100%;
        display: block;
        margin: 60px auto 0 auto;
    }

    .benefit i {
        font-size: 40px;
        top: 44%;
    }

    .benefit p {
        font-size: 16px;
    }
}

@media (max-width: 850px) {
    .approved-stockist h2 {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (max-width: 800px) {
    li.benefit {
        width: calc(70% / 1 - 30px);
    }
}

@media (max-width: 650px) {
    .section-find-out {
        padding: 60px 0 60px;
    }
} 

@media (max-width: 600px) {
    li.benefit {
        margin-bottom: 30px;
    }
}

@media (max-width: 550px) {
    li.benefit {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .benefit h3 {
        font-size: 18px;
    }

    .benefit p {
        font-size: 14px;
    }
}

@media (max-width: 350px) {
    .benefit i {
        font-size: 30px;
    }
}