﻿@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&display=swap');


/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.defaultButton::before, .defaultButton::after {
    pointer-events: none;
}
/* Flex container for the layout */
CoursesContainer, pathcontainer, reviewscontainer {
    height: auto;
    max-width: 850px;
    margin: 20px auto 5px auto;
}

CoursesContainer {
    position: relative;
    display: flex;
    border: solid 1.5px #e8eef8;
    margin: 0px auto 20px auto;
}

pathcontainer {
    display: block;
    position: relative;
}

pathoptionsholder {
    display: flex;
    justify-content: center;
    width: 100%;
}

    pathoptionsholder div {
        background-color: #edf7fb;
        transition: all .2s ease;
        width: 32%;
        border-radius: 10px;
        border: solid 1px #c1e3f1;
        padding: 25px 10px 10px 10px;
        text-align: center;
        font-size: 0.8em;
        position: relative;
        line-height: 1.4em;
        cursor: pointer;
        margin: 0 5px;
    }

@media all and (max-width:630px) {
    pathoptionsholder {
        display: block !important;
    }

        pathoptionsholder div {
            width: 100% !important;
            margin-bottom: 30px;
        }
}

pathoptionsholder div:hover {
    box-shadow: rgba(100, 100, 111, 0.5) 0px 2px 2px 0px;
}

pathoptionsholder div badge:after {
    content: "Quick question";
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #39a537c4;
    color: #fff;
    font-size: 0.8em;
    padding: 2px 5px;
    border-radius: 5px;
    transform: rotate(-1deg);
    transition: all .2s ease-in-out
}

pathoptionsholder div:hover badge:after {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 9px 0px;
}

pathoptionsholder div:nth-of-type(1) badge:after {
    content: "Quote via email"
}

pathoptionsholder div:nth-of-type(2) badge:after {
    content: "Direct route to booking"
}

pathoptionsholder div.selected {
    background-color: #eaf3fa;
    border: solid 1.5px #2991fb;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    pathoptionsholder div.selected:after, .pathoptionbody.GreyedOut:before {
        position: absolute;
        content: "";
        width: 0px;
        height: 0px;
        right: calc(50% - 5px);
        bottom: -10px;
        transform: rotate(45deg);
        border-left: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-bottom: 20px solid #2991fb;
    }

.pathoptionbody.GreyedOut:before {
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-top: 20px solid #ccc;
    transform: rotate(-45deg);
    bottom: unset;
    top: -14px;
}

.pathoptionbody.GreyedOut {
    color: #ccc;
    Border: solid 1px #ccc;
    padding-top: 30px;
    padding-bottom: 200px;
    position: relative;
    margin-top: 30px;
    font-family: "Chelsea Market", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.pathoptionbody {
    max-width: 700px;
    background-color: #fff;
    width: 100%;
    border: 1.5px solid #2991fb;
    margin-top: 20px;
    padding: 10px 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

pathoptionsholder div:before {
    display: block;
    width: 60px;
    height: 45px;
    content: "";
    margin: 0 auto 10px auto;
    background: url(/lib/aesthetics-graphics/icons/CourseContactOptions.png) transparent no-repeat;
    transition: all linear .1s;
    background-color: transparent !important;
    background-size: 200px;
}

pathoptionsholder div:nth-of-type(1):before {
    background-position: -5px -7px;
    height: 49px;
    margin-bottom: 6px;
}

pathoptionsholder div:nth-of-type(2):before {
    background-position: -75px -5px;
}

pathoptionsholder div:nth-of-type(3):before {
    background-position: -145px -2px;
}

pathoptionsholder button {
    font-size: 1em;
    margin: 10px 0;
    min-width: 90%;
}

pathdesc {
    font-size: 0.9em;
}

.master {
    width: 30%;
    background-color: #fff;
    min-width: 300px;
    border-right: 1px solid #ddd;
    overflow-x: hidden !important;
    overflow-y: auto;
    padding: 0;
    direction: rtl
}

@media all and (max-width:800px) {

    .master {
        width: 25%;
        min-width: 150px;
    }

    coursescontainer {
        width: 100% !important;
        max-width: unset !important;
        margin: -3453 0 50px 0;
        padding: 0;
    }
}

@media all and (max-width:450px) {
    .RootBodyHolder {
        padding: 0 3px;
    }

    .master * {
        font-size: 0.85em !important;
    }
}

.csTitle {
    margin: 20px 0px 5px 0;
    display: block;
    color: #000;
    font-size: 1em !important;
    line-height: 1.2em;
    font-weight: bold;
    clear: both;
}

#Dates {
    padding: 10px;
    margin: 20px 0px 10px 0px;
    border-top: .5px solid #c0e3f1;
    border-bottom: .5px solid #c0e3f1;
    background-color: #edf7fb;
}

    #Dates .csTitle {
        margin-top: 5px;
        text-align: center;
        font-size: 1.2em !important;
    }

    #Dates .PriceNotice {
        text-align: center;
    }
/* Detail View (right side) */
.detail {
    flex-grow: 1;
    padding: 30px 0 0 0;
    justify-content: center;
    background-color: #fff;
    font-size: 0.8em;
    line-height: 1.45em;
    position: relative;
    overflow-x: hidden;
    font-size: 0.8em !important;
    overflow-y: auto;
    min-height: 300px;
}

viewstart {
    background: url(/lib/SVGs/OutlineMockUp.svg) no-repeat;
    display: block;
    width: 90%;
    height: 90%;
    background-size: 380px;
    position: absolute;
    background-position: 4px -32px;
    overflow: hidden;
}

@media all and (max-width:600px) {
    .detail {
        padding-left: 10px;
        padding-right: 5px;
    }
}

.detail a.FullCourse {
    position: absolute;
    top: 7px;
    right: 7px;
    bordeR: solid 1px #cfcfcf;
    padding: 4px;
    font-size: 0.7em;
    transition: all .2s ease;
    color: #666;
}

    .detail a.FullCourse:hover {
        background-color: #eaf3fa;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px;
        color: #000;
        border: solid 1px #2991fb;
    }

.cContentSection, .cCourseTitle, coursedetail, courseduration {
    display: block;
    margin-left: 35px !important;
    margin-right: 35px !important;
}

.master > ul > li.selected {
    background-color: #eaf3fa;
    border: solid 0.5px #4c9dea;
    border-bottom: solid 0.5px #4ba2ce;
    overflow: visible;
    padding-right: 40px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-weight: bold;
}

    .master > ul > li.selected selecteddeco {
        position: absolute;
        width: 0px height:5px;
        top: calc(50% - 7px);
        right: 10px;
    }

        .master > ul > li.selected selecteddeco:before {
            content: "<";
        }

/* Style for list items */
.master ul {
    list-style-type: none;
}

.master li {
    margin: 0 0 0px 0;
    padding: 10px 25px 10px 15px;
    line-height: 1.4em;
    background-color: transparent;
    font-size: 0.8em;
    border: solid 1.5px transparent;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-sizing: border-box;
    text-align: left !important;
}

    .master li:before {
        position: absolute;
        left: 10%;
        width: 80%;
        pointer-events: none;
        height: 1px;
        background-color: #e3edf2;
        content: "";
        top: -1px;
    }

    .master li:hover + li:before {
        background-color: transparent;
    }

    .master li:first-of-type:before {
        display: none;
    }

    .master li.selected:before {
        display: none;
    }

    .master li.selected + li:before {
        display: none;
    }

    .master li:hover:before {
        background-color: transparent;
    }



    .master li:hover {
        border: solid 1.5px #6da9f8;
    }


        .master li:hover:after {
            background-color: #fff;
            color: #1b4e7e;
        }
/* Default style for detail view */
.detail p {
    font-size: 1em;
}

count, step, stepexplanation {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #666;
}

stepexplanation {
    max-width: 230px;
    line-height: 1.2em;
    font-size: 0.7em;
    color: #000;
    padding-top: 10px;
}

count {
    margin-top: 100px;
}

step {
    color: #000;
    font-size: 1.2em;
}


    step:nth-of-type(2) {
        margin-top: 5px;
        margin-bottom: 20px;
    }


    step mini {
        font-size: 0.6em;
        color: #999;
        display: block;
    }

.cCourseTitle {
    color: #000;
    font-size: 1.3em;
    text-shadow: 0px 0px 3px #fff;
    line-height: 1.2em;
    margin-bottom: 20px;
    padding-right: 80px;
}

@media all and (max-width:500px) {
    .cCourseTitle {
        padding-right: 10px;
        margin-top: 20px;
    }
}

courseduration {
    position: relative;
    display: block;
    padding-left: 30px;
    clear: both;
}

    courseduration:before, coursedetail:before {
        opacity: 1;
        margin-right: 2px;
        content: "";
        top: -6.5px;
        height: 25px;
        width: 22px;
        background: url(/lib/SVGs/IconsSVG.svg) no-repeat;
        background-size: 400px;
        position: absolute;
        background-position: 4px -32px;
        opacity: 1;
        left: 0px;
    }

coursedetail {
    position: relative;
    display: block;
    padding-left: 30px;
    margin: 10px 0 0 0;
    font-size: 0.9em;
}

    coursedetail:before {
        background-size: 320px;
        background-position: -67px 8px;
    }

    coursedetail:nth-of-type(2):before {
        background-position: -12.5px -26px;
        background-size: 320px;
    }

    coursedetail price, coursedetail people {
        font-weight: bold;
        color: #006699;
        font-size: 1.2em;
    }

    coursedetail vat {
        font-size: 0.8em;
        margin-left: 2px;
        color: #006699;
    }


WordHighlight {
    position: relative;
    margin-right: 5px;
}

    WordHighlight:before, WordHighlight:after {
        position: absolute;
        top: 5px;
        left: -10px;
        height: 20px;
        width: 55px;
        content: "";
        background-color: #fff5cd;
        transform: translate(0px, 0px) skew(-8deg, 0deg);
        border-radius: 15px;
        background-size: cover; /* or contain, or set a size */
        background-repeat: no-repeat;
        z-index: -1;
    }

    WordHighlight:after {
        background-color: #fcfcfc;
        z-index: -2;
        transform: translate(0px, 0px) scale(1.7, 1.6) skew(8deg, 0deg);
    }





.HelpfulTip {
    color: #4c9dea;
    font-size: 1.5em;
    line-height: 1.3em;
    width: 150px;
    position: absolute;
    transform: rotate(-15deg);
    font-family: "Chelsea Market", cursive;
    font-weight: 400;
    font-style: normal;
    top: 80px;
    left: 400px;
    transition: all .3s ease;
    z-index: 20;
}

@media all and (max-width:700px) {
    .HelpfulTip {
        left: 250px;
        top: 50px;
    }
}

@media all and (max-width:600px) {
    .HelpfulTip {
        transform: scale(0.5);
        left: 170px;
    }
}

.HelpfulTip.init.smaller {
    transform: scale(0.6) rotate(-20deg);
    top: 80px;
    left: 330px;
}

.HelpfulTip.secondstep {
    top: 60px;
    left: unset;
    right: -200px;
    pointer-tevents: none;
    transform: rotate(-13deg);
}

.HelpfulTip:after {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1) rotate(-35deg);
    position: absolute;
    top: 110px;
    left: -80px;
    height: 200px;
    width: 180px;
    background: url(/lib/aesthetics-graphics/backgrounds/svg/arrow3.svg) no-repeat transparent !important;
    background-position: top right !important;
    background-size: 70px !important;
    pointer-events: none;
    content: "";
}

.HelpfulTip.secondstep:after {
    background: none !important;
}

.HelpfulTip:before {
    content: "Click on a course to view details";
}

.HelpfulTip.Two:before {
    content: "Ask a question, get a quote, or book a place";
    font-size: 0.7em;
    line-height: 1.3em !important;
}

.HelpfulTip.NoBooking:before {
    content: "Ask a question or get a quote";
}

.HelpfulTip.Two:after {
    top: 100px;
}

.HelpfulTip.secondstep:before {
    content: "Have a question? Give us a call ";
    transition: all .2s ease;
    font-size: 0.7em;
    line-height: 1.2em !important;
    display: block;
    padding: 40px 0 0 10px;
    width: 110%;
}

.HelpfulTip.secondstep span:before {
    content: "Call us on 0191 377 8377 — we're here to help. ";
    font-size: 0.5em;
    line-height: 1.5em;
    display: block;
    padding: 10px 0 0 20px;
}

.HelpfulTip bg {
    transition: all .2s ease;
    border-radius: 500px;
    position: absolute;
    top: -60px;
    left: -40px;
    z-index: -1;
    height: 200px;
    width: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath fill=%22currentColor%22 d=%22M763 592q-9 92-68 208.5t-153.5-10q-94.5-126.5-267-64T76 644.5Q50 500 165 420t168-176q53-96 154-55.5T733.5 227q145.5-2 92 135.5T763 592Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23a)%22%3E%3Cpath fill=%22%23f5fafe%22 d=%22M763 592q-9 92-68 208.5t-153.5-10q-94.5-126.5-267-64T76 644.5Q50 500 165 420t168-176q53-96 154-55.5T733.5 227q145.5-2 92 135.5T763 592Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.HelpfulTip.secondstep bg {
    top: 0px;
    height: 200px;
    width: 200px;
    left: -20px;
    background-image: none;
    background-color: #fff;
    border: solid 10px #fff;
}


@media all and (max-width:1360px) {
    .HelpfulTip.secondstep {
        transform: scale(0.7);
        top: 0px;
        right: -150px;
    }
}

@media all and (max-width:1200px) {
    .HelpfulTip.secondstep {
        display: none;
    }
}

#DivFooterContact, footer {
    display: none;
}

.ulPrereqsForThisCourseOutline li, .ulObjectivesForThisCourseOutline li, .ulWhatsIncludedForThisCourseOutline li, .ulTrainingOptionsForThisCourseOutline li, .ulTargetAudienceForThisCourseOutline li {
    margin-left: 13px;
    position: relative;
}

    .ulPrereqsForThisCourseOutline li:before, .ulObjectivesForThisCourseOutline li:before, .ulWhatsIncludedForThisCourseOutline li:before, .ulTrainingOptionsForThisCourseOutline li:before, .ulTargetAudienceForThisCourseOutline li:before {
        -webkit-border-radius: 2.5px;
        border-radius: 3px;
        height: 3px;
        width: 3px;
        content: " ";
        position: absolute;
        background-color: #737373;
        top: 10px;
        left: -10px;
    }

.ulCourseContentForThisCourseOutline li {
    padding: 5px 10px 0px 10px;
}

.contentTitle {
    text-indent: -10px;
    font-size: .95em;
    margin: 0px 0 3px 0px;
    color: #000;
    position: relative;
    font-weight: bold;
    line-height: 1.3em;
}

    .contentTitle:hover {
        text-decoration: underline;
    }

step:nth-of-type(2):after {
    margin-left: -5px;
    content: ", get a quote or book a place";
}

step.NoBooking:after {
    content: "or get a quote";
}

introbanner {
    height: auto;
    margin: 0px 0 10px 0;
    padding: 40px 10px 0px 10px;
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    background: transparent !important;
    z-index: 5;
}

BgTop {
    height: auto;
    top: 0px;
    display: block;
    width: 100%;
    min-height: 400px;
    position: absolute;
    background: solid #006699 !important;
    z-index: 0;
    pointer-events: none;
}

introbanner h1 {
    color: #fff !important;
    font-size: 2em;
}

introbanner pagedesc {
    color: #fff !important;
    font-size: 0.9em;
    line-height: 1.4em;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

@media all and (max-width:700px) {
    introbanner h2 {
        margin-bottom: 20px;
        margin-top: 30px;
    }
}

BgTop:after, BgTop:before {
    content: "";
    background-color: rgba(39, 106, 139, 0.8);
    height: 150%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    z-index: -1;
}

@media all and (min-width:700px) {
    BgTop:before {
        background: url(/lib/aesthetics-pics/backgrounds/LadyOnComputer.jpg) no-repeat #265e7c;
        background-position: 0 60px;
        background-size: 950px;
    }
}

@media all and (min-width:860px) {
    BgTop:before {
        background: url(/lib/aesthetics-pics/backgrounds/LadyOnComputer.jpg) no-repeat #265e7c;
        background-position: 0 50px;
        background-size: 1100px;
    }
}

@media all and (min-width:960px) {
    BgTop:before {
        background: url(/lib/aesthetics-pics/backgrounds/LadyOnComputer.jpg) no-repeat #265e7c;
        background-position: 0 50px;
        background-size: 1200px;
    }
}

@media all and (min-width:1100px) {
    BgTop:before {
        background: url(/lib/aesthetics-pics/backgrounds/LadyOnComputer.jpg) no-repeat #265e7c;
        background-position: left bottom;
        background-size: 120%;
    }
}

@media all and (min-width:1300px) {
    BgTop {
        height: 500px;
        padding-top: 200px;
    }
}

smallerbanner {
    text-align: center;
    padding: 10px;
    text-align: center;
    width: 100%;
    font-size: 0.9em;
    color: #069;
    display: block;
    background-color: rgb(234 242 254);
    margin-bottom: 20px;
}

.tblCourseDates {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

buttons {
    display: flex;
    width: calc(100% - 70px) !important;
    align-content: baseline;
    align-items: stretch;
    justify-content: space-around;
    margin: 10px 35px;
}

    buttons form {
        width: 32%;
    }

@media all and (max-width:550px) {
    buttons form {
        width: 100% !important;
        margin-bottom: 10px;
    }

    buttons {
        display: block;
    }
}

buttons button {
    font-size: 0.9em;
    display: block;
    border: solid 1.5px #ccc;
    padding: 5px;
    width: 100% !important;
}

.InsideLink {
    font-size: 0.8em;
    text-decoration: underline !important;
    color: #999 !important;
    margin-left: 5px !important;
}

    .InsideLink:before {
        content: "Scroll to Dates ";
    }

reviewscontainer {
    display: flex;
    width: 100%;
    margin: 0 auto 10px auto;
    justify-content: space-around;
}

    reviewscontainer .ReviewsOverviewHolder {
        width: 30%;
        min-width: 30%;
        max-width: 30%;
        margin: 1%;
        padding: 0;
        font-size: 0.8em;
        box-shadow: none;
        background-color: rgba(17, 46, 60, 0.2);
        color: #fff;
        border-left: solid 2px #ccc;
    }

@media all and (max-width:600px) {
    reviewscontainer {
        display: block;
        margin-bottom: 20px;
    }

        reviewscontainer .ReviewsOverviewHolder {
            width: 100% !important;
            min-width: unset;
            max-width: 400px;
            padding-bottom: 5px;
            bordeR: none;
            background-color: rgba(255,255,255,0.1);
            margin: 0 auto 5px auto;
        }

        reviewscontainer .reviewText {
            padding-bottom: 3px;
        }

        reviewscontainer:nth-of-type(1) .ReviewsOverviewHolder:nth-of-type(3) {
            display: none;
        }

        reviewscontainer .who {
            color: #ccc !important;
        }
}

reviewscontainer .reviewText:before {
    top: 20px;
}

reviewscontainer .reviewText {
    padding-top: 10px;
}

reviewscontainer .who {
    margin-bottom: 10px;
    padding-bottom: 0px;
    color: #fff;
    min-height: unset;
}

reviewscontainer:nth-of-type(2) {
    margin-bottom: 50px;
}

    reviewscontainer:nth-of-type(2) .ReviewsOverviewHolder {
        background-color: #4ca2cd;
    }

    reviewscontainer:nth-of-type(2) .reviewText, reviewscontainer:nth-of-type(2) .who {
        color: #fff !important;
    }

.ClientsSection {
    margin: 0px auto 40px auto;
    text-align: center;
    padding: 20px 0 10px 0;
    background-color: #fff;
    border: solid 1px #d3dce6;
    max-width: 1150px !important;
}


/* width */
trainingclients::-webkit-scrollbar {
    height: 10px !important;
}

/* Track */
trainingclients::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #d3dce6;
    border-radius: 1px !important;
}

/* Handle */
trainingclients::-webkit-scrollbar-thumb {
    background: #adbed1;
    border-radius: 0 0 1px 1px !important;
    border-bottom: solid 1px #888;
    border-top: solid 1px #f2f2f2;
    box-shadow: inset 0 0 5px #6c8aac;
}

    /* Handle on hover */
    trainingclients::-webkit-scrollbar-thumb:hover {
        background: #006699;
    }

trainingclients {
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0px 0px 15px 0px !important;
    height: 142px;
}

    trainingclients div {
        display: block;
        clear: both;
        flex-grow: 0;
        flex-shrink: 0;
        height: 120px;
        padding: 14px 25px;
        position: relative;
        content: "";
    }

        trainingclients div:before {
            background: url(/lib/aesthetics-graphics/logos/ClientLogos/LogoList.svg) no-repeat -2px 2px transparent;
            background-size: cover;
            display: block;
            flex-grow: 0;
            flex-shrink: 0;
            background-color: transparent;
            height: 90px;
            width: 110px;
            content: "";
        }

        trainingclients div:nth-of-type(2) {
            width: 165px;
        }

            trainingclients div:nth-of-type(2):before {
                background-position: -2px 2px;
                width: 120px;
            }

        trainingclients div:nth-of-type(4) {
            width: 205px;
        }

            trainingclients div:nth-of-type(4):before {
                background-position: -134px 0;
                width: 160px;
            }

        trainingclients div:nth-of-type(3) {
            width: 190px;
            padding-left: 35px;
        }

            trainingclients div:nth-of-type(3):before {
                background-position: -310px 0;
                width: 120px;
            }

        trainingclients div:nth-of-type(9) {
            width: 195px;
        }

            trainingclients div:nth-of-type(9):before {
                background-position: -430px 6px;
                width: 150px;
            }

        trainingclients div:nth-of-type(1) {
            width: 200px;
        }

            trainingclients div:nth-of-type(1):before {
                background-position: -592px 5px;
                width: 160px;
            }

        trainingclients div:nth-of-type(6) {
            width: 188px;
        }

            trainingclients div:nth-of-type(6):before {
                background-position: -756px 10px;
                width: 140px;
            }

        trainingclients div:nth-of-type(7) {
            width: 225px;
        }

            trainingclients div:nth-of-type(7):before {
                background-position: -935px 5px;
                width: 175px;
            }

        trainingclients div:nth-of-type(8) {
            width: 210px;
        }

            trainingclients div:nth-of-type(8):before {
                background-position: -1095px 8px;
                width: 150px;
            }

        trainingclients div:nth-of-type(5) {
            width: 225px;
        }

            trainingclients div:nth-of-type(5):before {
                background-position: -1290px 0;
                width: 170px;
            }

        trainingclients div:nth-of-type(10) {
            width: 255px;
        }

            trainingclients div:nth-of-type(10):before {
                background-position: -1460px 5px;
                width: 210px;
            }

    trainingclients a {
        font-size: 0.7em;
        text-align: right;
        padding: 10px;
        line-height: 1.3em;
        padding-top: 30px;
    }
