/* Latyout */

.content {
    max-width: 992px;
    margin: auto;
}

.padding {
    padding: 16px;
}

.padding-m {
    padding: 32px;
}

@media only screen and (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

@media only screen and (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

.heading-xl {
    font-size: 7.7em;
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 32px 0;
}

@media only screen and (max-width: 600px) {
    .heading-xl {
        font-size: 4.7em;
    }
}


/* Notifications */

.notification {
    padding-top: 30px;
    position: relative;
    display: inline-block;
}

.number {
    height: 25px;
    width: 25px;
    background-color: #d63031;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: absolute;
    top: 23px;
    left: 23px;
    padding: 3px;
    border-style: solid;
    border-width: 2px;
}

.number1 {
    height: 28px;
    width: 28px;
    background-color: #d63031;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: absolute;
    top: 23px;
    left: 60px;
    padding: 0px;
    border-style: solid;
    border-width: 2px;
}

.number:empty {
    display: none;
}

.number1:empty {
    display: none !important;
}

.number1 span {
    position: relative;
    bottom: 3px;
}

.notBtn {
    transition: 0.5s;
    cursor: pointer
}

.task-bell {
    font-size: 25pt;
    padding-bottom: 10px;
    color: black;
    margin-right: 40px;
    margin-left: 40px;
}

.task-bell-main {
    font-size: 25pt;
    padding-bottom: 10px;
    color: black;
    margin-right: 0px;
    margin-left: 7px;
}

.task-bell:hover {
    color: #d63031;
}

.bell-notification {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.bell-notification .bell {
    color: gray;
    font-size: 36px;
    line-height: inherit;
}

.bell-notification .notification {
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    font-size: 16px;
    width: 24px;
    line-height: 20px;
    padding: 0;
    color: #fff;
    background-color: red;
    border: solid 2px #fff;
    border-radius: 50%;
}

.notBtn:hover>.box {
    height: 60vh
}


/* Backgrounds */

[class^=background-] {
    overflow: hidden;
}

.background-wavy {
    background-image: url('/userfiles/images/pattern-blue.jpg');
    -webkit-background-size: cover, auto;
    -moz-background-size: cover, auto;
    -o-background-size: cover, auto;
    background-size: cover, auto;
}

.background-first {
    background-color: var(--first-color);
}

.background-second {
    background-color: var(--fourth-color);
}

[class^=background-] h2,
[class^=background-] h3,
[class^=background-] h4 {
    color: #fff;
}


/* Inuputs */

.button-small {
    text-decoration: none;
    display: inline-block;
    color: #fff !important;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    background-color: var(--first-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: 200ms ease-in-out;
    -moz-transition: 200ms ease-in-out;
    -o-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
}

.button-small:hover {
    background-color: #858585;
}

.button-cta {
    text-decoration: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: inline-block;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    padding: 16px 32px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: 200ms ease-in-out;
    -moz-transition: 200ms ease-in-out;
    -o-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
}

.button-cta::before,
.button-cta::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.button-cta::before {
    z-index: -2;
    left: 0;
    background-color: var(--first-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.button-cta::after {
    z-index: -1;
    left: 100%;
    background-color: var(--second-color);
    -webkit-border-radius: 100px 0 0 100px;
    -moz-border-radius: 100px 0 0 100px;
    border-radius: 100px 0 0 100px;
    -webkit-transition: 200ms ease-in-out;
    -moz-transition: 200ms ease-in-out;
    -o-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
}

.button-cta:hover {
    color: #fff;
}

.button-cta:hover::after {
    left: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.button-small.button-pos {
    background-color: var(--pos-button);
}

.button-small.button-pos:hover {
    background-color: var(---pos-button-hover);
}

.input-cta {
    vertical-align: top;
    height: 54.4px;
    line-height: 54.4px;
    padding: 0 20px;
    width: 100%;
    max-width: 300px;
    font-size: 1em;
    border-style: none;
    background-color: #fff;
    box-shadow: inset 0 0 0 0 var(--first-color);
    color: #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: box-shadow 300ms cubic-bezier(.215, .61, .355, 1);
    -moz-transition: box-shadow 300ms cubic-bezier(.215, .61, .355, 1);
    -o-transition: box-shadow 300ms cubic-bezier(.215, .61, .355, 1);
    transition: box-shadow 300ms cubic-bezier(.215, .61, .355, 1);
}

.input-cta:hover {
    -webkit-box-shadow: inset 0 0 0 2px var(--first-color);
    -moz-box-shadow: inset 0 0 0 2px var(--first-color);
    box-shadow: inset 0 0 0 2px var(--first-color);
}


/* Image */

.image-round {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: auto auto 16px auto;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}


/* Scroll Up */

.scroll-up {
    display: block;
    width: 40px;
    margin: auto;
    font-size: 32px;
    color: #6b6b6b;
    cursor: pointer;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.scroll-up:hover {
    color: #1b1b1b !important;
}


/* Hero */

.hero {
    position: relative;
    height: 86vh;
    background-color: #000;
    -webkit-box-shadow: 0 6px 20px 2px rgba(7, 7, 7, 0.93);
    -moz-box-shadow: 0 6px 20px 2px rgba(7, 7, 7, 0.93);
    box-shadow: 0 6px 20px 2px rgba(7, 7, 7, 0.93);
}

.hero-logo {
    float: left;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.hero-logo img {
    height: 80px;
}

.hero-logo:hover {
    -webkit-filter: brightness(0.83);
    filter: brightness(0.83);
}

.hero-icon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 300px;
    transform: translate(-190px, 190px);
}

.hero-image {
    object-fit: cover;
    opacity: 80%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hero-arrow {
    text-decoration: none;
    cursor: pointer;
    font-size: 32px;
    color: #fff;
    position: absolute;
    z-index: 1;
    bottom: 32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hero-arrow:hover {
    color: #000;
}

.hero-text {
    overflow: visible;
    max-width: 657px;
    width: 100%;
    padding: calc(25vh + 112px) 0 0 0;
    position: relative;
    z-index: 1;
    margin: auto;
    /* top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
}

.hero-text .hero-menu {
    overflow: auto;
    text-align: right;
    margin: 0 0 64px 0;
}

.hero-text .hero-menu a {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 28.8px 16px;
    color: #fff;
    font-size: 1.2em;
}

.hero-text .hero-menu a:last-child {
    margin-right: 0;
}

.hero-text .hero-menu a.underline-hover::before {
    content: "";
    height: 0;
    width: 100%;
    background-color: var(--first-color);
    position: absolute;
    bottom: -4px;
    -webkit-transition: 200ms ease-in-out;
    -moz-transition: 200ms ease-in-out;
    -o-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
}

.hero-text .hero-menu a.underline-hover:hover::before {
    height: 5px;
}

.hero-text h1,
.hero-text h4 {
    color: #fff;
}

.hero-text h1 {
    font-size: 3.5em;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 0;
    /* margin-bottom: 2vh; */
}

.hero-text h4 {
    font-size: 1.8em;
    margin-bottom: 3.5vh;
}

.hero-text .button-cta {
    margin: 32px auto auto auto;
    display: block;
    width: 126.98px;
}

/* Intro Paragraph */

.intro-para {
    margin: 0px 0px 32px;
    color: #fff;
    font-size: 38px;
    line-height: 48px;
}

@media only screen and (max-width: 1200px) {
    .hero-text {
        transform: scale(0.75);
    }
}

@media only screen and (max-width: 992px) {
    .hero-text {
        max-width: 416px;
    }
    .hero-icon {
        opacity: 70%;
    }
    /*.hero-text h1 {
        text-shadow: 0 0 5px rgba(0, 0, 0, 70%);
    }*/
}

@media only screen and (max-width: 768px) {
    .hero-icon {
        display: none;
    }
    .hero-text h1 {
        text-align: center;
    }
    .intro-para {
        font-size: 28px;
        line-height: 38px;
    }
}


/* Accordion */

.faqs {
    position: relative;
    color: #000;
    cursor: pointer;
    padding: 16px 44px 16px 16px;
    font-size: 1em;
    font-weight: 600;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -moz-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
}

.faqs:hover {
    color: #6b6b6b;
}

.faqs:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    content: "\f078";
    color: #000;
    position: absolute;
    top: 16px;
    right: 16px;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}

.faqs:hover:after,
.faqs.active:after {
    color: #6b6b6b;
}

.faqs.active:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.panel {
    padding: 0 16px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-out;
    -moz-transition: max-height 0.3s ease-out;
    -o-transition: max-height 0.3s ease-out;
    transition: max-height 0.3s ease-out;
}

.footer-links {
    line-height: 16px;
}

.footer-links a {
    text-decoration: none;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 0 16px;
    color: #fff;
    font-size: .8em;
}

.footer-links a:hover {
    color: var(--sixth-color);
}

.partner-logos {
    padding: 16px 8px;
}

.partner-logos img {
    display: inline-block;
    margin: 8px;
    object-fit: contain;
    vertical-align: middle;
}

img[src*=levelling-up],
img[src*=nlc] {
    max-height: 40px;
    width: 11%;
}

img[src*=funded-by-uk-government],
img[src*=inspirent],
img[src*=ceis] {
    max-height: 30px;
    width: 16%;
}

.shadow {
    border-radius: 10px;
    margin: 0 0 32px 0;
    -webkit-box-shadow: 0 3px 7px 0 rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 3px 7px 0 rgb(0 0 0 / 9%);
    box-shadow: 0 3px 7px 0 rgb(0 0 0 / 9%);
}

.shadow:last-child {
    margin: 0;
}


/* Testimonial */

.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 32px;
    z-index: 2;
}

.testimonial-slider::before {
    left: 0;
    background-image: linear-gradient(to right, #fff, transparent);
}

.testimonial-slider::after {
    right: 0;
    background-image: linear-gradient(to left, #fff, transparent);
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before,
.testimonial-slider .slick-dots li button::before,
.testimonial-slider .slick-dots li button::after {
    color: #858585;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.testimonial-slider .slick-next {
    right: -40px;
    left: auto
}

.testimonial-slider .slick-prev {
    left: -20px;
}

.testimonial {
    text-align: center;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    padding: 32px;
    background-color: #602bb6;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: 150ms ease-out;
    -moz-transition: 150ms ease-out;
    -o-transition: 150ms ease-out;
    transition: 150ms ease-out;
}

.testimonial:hover {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}

.testimonial img {
    width: 80%;
    max-width: 250px;
    margin: auto auto 16px auto;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.testimonial i,
.testimonial h3,
.testimonial p {
    color: #fff;
}

.testimonial i {
    font-size: 32px;
}

.testimonial i[class*="left"] {
    float: left;
    margin-right: 12px;
}

.testimonial i[class*="right"] {
    float: right;
    margin-left: 12px;
}

.testimonial p {
    font-style: italic;
    margin: 0;
    padding: 0 32px;
}

@media only screen and (max-width: 600px) {
    .testimonial {
        margin: -16px;
    }

    .testimonial i {
        font-size: 16px;
    }

    .testimonial p {
        padding: 0 16px;
    }
}