* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'LA Font';
    src: url('./fonts/ABEATBYKAIREGULAR.OTF') format('opentype');
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    cursor: default;
}
#bg {
    position: fixed;
    background-image: url('../images/backgrounds/body.jpg');
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#protector {
    position: fixed;
    z-index: 101;
    width: 100vw;
    height: 100vh;
    background-color: white;
    color: black;
    display: none;
}
#infobox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 70px;
}
#infobox p {
    font-size: 20px;
    text-align: center;
}
#infobox i {
    font-size: 100px;
}
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    color: white;
    z-index: 10000;
    transition: all 300ms;
}
.splash-content {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh;
}
.splash-logo {
    position: relative;
    width: 339px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.splash-logo img {
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slit {
    opacity: 0;
    animation: fade-in 1s 2s forwards;
}
.slint {
    animation: slide 1s 1s forwards;
}
@keyframes slide {
    0% {
        left: 50%;
    }
    100% {
        left: 0;
        top: 0;
        transform: translate(0%, 0%);
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.splash-desc {
    position: relative;
    top: 60%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 20px;
    opacity: 0;
}
a {
    font-weight: 500;
    color: #cb9155;
    font-size: 15px;
    text-decoration: none;
}
a:hover {
    color: black;
}
.button {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border: solid 1px #cb9155;
    color: rgb(240, 240, 240);
    padding: 15px;
    transition: all 0.3s;
}
.button:hover {
    background-color: #cb9155;
    color: white;
}
.button-wb {
    background-color: #cb9155;
    border-radius: 4px;
    color: white;
    padding: 15px;
    transition: all 0.3s;
}
.button-wb:hover {
    background-color: black;
    color: white;
}
header {
    width: 100%;
    height: fit-content;
    padding: 10px 0;
    position: fixed;
    z-index: 99;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    transition: all 0.3s;
}
header a {
    color: white;
    transition: color 0.2s;
}
header a:hover {
    color: #cb9155;
}
header.scrolled {
    box-shadow: 0 0 30px -10px black;
    background-color: white;
}
header.scrolled a {
    color: #cb9155;
}
header.scrolled a:hover {
    color: black;
}
.logo  img {
    width: 200px;
}
.navigation {
    padding: 20px;
    height: fit-content;
}
.navlink {
    display: inline-block;
    margin: 0 10px;
    height: 100%;
}
.header-dropdown {
    position: fixed;
    display: none;
    z-index: 2;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 15px -12px black;
    border-radius: 5px;
}
.header-dropdown a {
    display: block;
    padding: 10px 0;
    color: #cb9155;
}
.header-dropdown a:hover {
    color: black;
}
#individuals-link:hover #individuals-dd {
    display: block;
}
#organizations-link:hover #organizations-dd {
    display: block;
}
.mn-link-group {
    display: none;
    position: relative;
    height: 0px;
    opacity: 0;
    transition: all 200ms;
}
#welcome {
    height: 100vh;
    width: 100%;
}
.welcome-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    transition: all 300ms;
}
.welcome-screen {
    background-image: url('../images/backgrounds/welcome.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: top;
    height: 100%;
    width: 100%;
}
.content-switch {
    position: absolute;
    top: 100%;
    transform: translateY(-200%);
    width: 100%;
    text-align: center;
}
.content-switch i {
    color: rgb(211, 211, 211);
    font-size: 10px;
    margin: 0 5px;
    cursor: pointer;
    transition: color 300ms;
}
.content-switch i.selected {
    color: #cb9155;
}
.welcome-content {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: 10%;
    opacity: 0;
    transition: all 300ms;
    line-height: 50px;
}
.welcome-text {
    color: white;
    font-size: 45px;
}

.welcome-text span {
    font-size: 20px;
    font-weight: lighter;
    color: rgb(219, 219, 219);
}
#page-head {
    padding: 100px;
    background-color: rgba(0, 0, 0, 0.719);
}
.main-heading-db {
    text-align: center;
    color: white;
    font-size: 45px;
    padding: 50px 0;
    padding-bottom: 25px;
}
.main-heading-db i {
    font-style: normal;
    color: #cb9155;
}
.page-head-desc {
    font-size: 18px;
    font-weight: lighter;
    color: white;
    text-align: center;
}
.page-head-desc span {
    color: #cb9155;
}
#partners {
    width: 100%;
    height: fit-content;
    background-color: white;
}
.partner-strip {
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    padding: 20px 0;
}
.sub-heading-wb {
    font-weight: bold;
    font-size: 35px;
    color: #a17546;
    text-align: center;
    padding: 50px 0;
}
.sub-heading-wb span {
    color: black;
    font-weight: lighter;
    font-size: 18px;
}
.sub-heading-db {
    font-weight: bold;
    font-size: 35px;
    color: #ebb479;
    text-align: center;
    padding: 50px 0;
}
.sub-heading-db span {
    font-weight: lighter;
    font-size: 18px;
    color: whitesmoke;
}
.partner-logo-png {
    display: block;
    flex: 1;
    margin: 20px;
}
.partner-logo-png img {
    height: 110px;
}
#services {
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.699);
}
.services-container {
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-items: center;
}
.service {
    position: relative;
    width: 65%;
    min-width: 300px;
    background-color: white;
    border-radius: 20px;
}
.service .sub-heading-wb {
    font-size: 20px;
    padding: 0px;
    text-align: unset;
}
.service-image {
    width: 100%
}
.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.service-desc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    height: 275px;
}
.service-desc-p {
    text-align: unset;
}
.service-desc .button {
    padding: 0 !important;
}
.service .button-wb {
    display: block;
    width: fit-content;
    position: relative;
}
#stats {
    padding: 50px 0;
    background-image: url('../images/backgrounds/stats.jpg');
    background-size: cover;
    background-position-y: 50%;
    color: white;
}
.stats-bar {
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.stat {
    width: 100%;
}
.stat-spec {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.stat-number {
    font-size: 75px;
    text-align: center;
    display: inline;
}
.stat span {
    font-size: 40px;
    position: absolute;
    height: fit-content;
    margin-left: 5px;
    top: 75px;
    display: inline;
}
.stat-desc {
    text-align: center;
}
.stat-separator {
    vertical-align: middle;
    line-height: 100px;
    font-size: 5px;
}
#reviews {
    padding: 25px 75px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7), #42301d94);
}
.review {
    width: 80%;
    height: fit-content;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 50px;
}
.review-right {
    position: relative;
    left: 100%;
    transform: translate(-100%);
}
.reviewer-mob {
    display: none;
}
.reviewer-pic {
    width: 150px;
    height: 150px;
    margin-right: 50px;
}
.review-right .reviewer-pic {
    margin: 0;
    margin-left: 50px;
}
.reviewer-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.review-text {
    margin-bottom: 25px;
}
.review-text span {
    font-size: 35px;
    font-weight: bolder;
}
.review-text i {
    margin: 0 5px;
    font-weight: bolder;
    display: none;
}
.reviewer {
    font-weight: bolder;
}
.reviewer span {
    color: #cb9155;
}
#training {
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.548);
}
#training .sub-heading-db {
    text-align: unset;
}
#training iframe {
    margin-bottom: 20px;
    width: 80%;
    height: 600px
}

#team {
    padding: 50px 50px;
    background-image: linear-gradient(to right, rgba(0,0,0,0.9)),url('../images/backgrounds/footer.jpg');
}
.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.team-card {
    background-color: white;
    width: fit-content;
    min-height: 450px;
    min-width: 270px;
}
.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.team-info {
    padding: 30px 20px;
}
.team-info p {
    color: #a17546;
}

#faqs {
    padding: 50px 75px;
    background-color: rgb(235, 235, 235);
}
.faq-list {
    border: solid 1px rgb(192, 192, 192);
    background-color: white;
    border-radius: 10px;
    position: relative;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}
.faq {
    padding: 20px;
    cursor: pointer;
    text-align: center;
}
.faq-qn {
    font-weight: bolder;
    text-align: center;
    display: grid;
    grid-template-columns: 9fr 1fr;
}
.faq-qn i {
    transform: rotate(-90deg);
}
.faq-an {
    height: 0px;
    opacity: 0;
    margin-top: 0;
    transition: all 100ms;
}
.faq-an a {
    font-weight: bolder;
}
.faq-an-open {
    opacity: 1;
    margin-top: 15px;
    height: 75px;
}
#get-started {
    padding: 75px;
    background-color: rgba(255, 255, 255, 0.767);
}
#get-started h2 {
    text-align: left;
}
.wils-section {
    padding: 75px;
    background-color: rgba(21, 1, 29, 0.984);
}
.wils-section h2 {
    text-align: left;
    color: rgb(201, 33, 201);
}
.wils-section h2 span {
    color: white;
    display: inline-block;
    line-height: 1.8;
}
.wils-section .button {
    background-color: rgb(94, 16, 102);
    border: none;
}
#learn-more {
    background-color: white;
    padding: 75px;
}
#learn-more h2 {
    text-align: left;
}
#newsletter {
    padding: 10px 50px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), #6b4d2e80);
}
#newsletter .sub-heading-db i {
    display: none;
    font-size: 20px;
    color: white;
    font-style: normal;
    font-weight: lighter;
}
.newsletter-area {
    position: relative;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px;
}
.newsletter-form {
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.newsletter-form input[type='email'] {
    width: 500px;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    outline: none;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: whitesmoke;
}
.newsletter-form button[type="submit"] {
    outline: none;
    transform: translate(-5px, 0px);
    margin: 0;
    border: none;
    background-color: #cb9155;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 200ms;
}
.newsletter-form button[type="submit"]:hover {
    background-color: black;
}
.latest-newsletter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.latest-newsletter-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px;
    margin: 20px 0;
    background-color: #cb9155;
    color: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: bold;
    width: fit-content;
    text-align: center;
    min-width: 300.5px;
}
.lnl-right {
    border-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #cb9155;
    background-color: white;
}
.latest-newsletter-link:hover .latest-newsletter-icon {
    fill: black !important;
}
.latest-newsletter-icon {
    display: inline-block;
    position: relative;
    top: 6px;
    margin-right: 10px;
}
.latest-newsletter-icon:hover {
    color: black;
}
.loading-spinner {
    width: 15px;
    height: 15px;
    border: solid 2px rgba(255, 255, 255, 0.514);
    display: inline-block;
    vertical-align: middle;
    margin: 0 25px;
    border-top: solid 2px white;
    border-radius: 50%;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: loading-spinner;
}
@keyframes loading-spinner {
    0% {
        transform: rotateZ(0deg);
    }
    25% {
        transform: rotateZ(90deg);
    }
    50% {
        transform: rotateZ(180deg);
    }
    75% {
        transform: rotateZ(270deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}
.error-response {
    color: red;
    padding: 5px;
    width: fit-content;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 15px;
    background-color: white;
    display: none;
}
button[type="submit"] i {
    margin: 0 25px;
}
#footer {
    background-image: url('../images/backgrounds/footer.jpg');
}
.footer-cover {
    background-color: rgba(255, 255, 255, 0.97);
    display: grid;
    grid-template-columns: auto auto;
    padding: 50px;
}
.footer-left {
    width: 100%;
}
.footer-right {
    border-left: solid 1px rgba(0, 0, 0, 0.322);
    padding: 0 50px;
}
.quick-links {
    display: inline-block;
}
.quick-links h2 {
    margin-bottom: 20px;
}
.quick-links a {
    display: block;
    margin-bottom: 10px;
}
.contact-info {
    margin: 40px 0;
}
.contact-list {
    margin-bottom: 20px;
}
.contact-list-item {
    margin: 10px 0;
}
.contact-list-item .spacer {
    width: 5px;
}
.contact-list-item span, .copyright-info span {
    font-size: 5px;
    line-height: 25px;
    vertical-align: middle;
    margin: 0 5px;
}
.socials a {
    font-size: 30px;
    margin-right: 10px;
    color: black;
}
.socials a:hover {
    color: #cb9155;
}
#our-story {
    background-color: white;
}
.heading-phrase {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    font-size: 22px;
}
.heading-phrase span {
    color: #cb9155;
    font-weight: bold;
}
.story-area {
    font-size: 15px;
    color: black;
    background-color: white;
    max-width: 1440px;
    position: relative;
    width: 100%;
    height: max-content;
    left: 50%;
    transform: translateX(-50%);
}
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 50px;
    padding-bottom: 75px;
}
.full-story {
    grid-template-columns: 1fr;
}
.full-story .story-desc {
    padding: 20px 0px;
}
.story-desc {
    text-align: justify;
    padding: 50px;
    font-size: 20px;
}
.story-desc .sub-heading-wb {
    padding: 0;
    padding-bottom: 15px;
    text-align: left;
}
.story-desc a {
    font-size: 20px;
}
.story-pic {
    width: 100%;
    margin: 20px 0;
}
.story-pic img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.story-pic iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}
#career-coaching {
    background-color: white;
}
.cc-area {
    width: 100%;
}
.cc-container {
    display: flex;
    width: 100%;
    justify-content: center;
}
.cc-container .sub-heading-wb, .cc-container .sub-heading-db {
    text-align: left;
}
.cc {
    width: 100%;
    padding: 50px;
}
.cc-item {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: start;
}
.cc-item-title {
    text-align: justify;
    font-size: 20px;
    margin-bottom: 5px;
}
.number-container {
    width: 30px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    background-color: black;
    color: white;
    margin-right: 10px;
    border-radius: 50%;
}
.number-container span {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bolder;
}
.cc-container-left {
    background-color: black;
    color: white;
}
.cc-container-left .cc-item .number-container {
    background-color: white;
    margin-left: 20px;
}
.cc-container-left .cc-item .number-container span {
    color: black;
}
.cc-fw-item {
    margin-bottom: 30px;
    padding: 20px;
}
.cc-fw-head {
    width: 100%;
    text-align: justify;
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.cc-fw-title {
    font-weight: bolder;
}
.hp-padded {
    position: relative;
    width: 75%;
    left: 50%;
    transform: translateX(-50%);
}
.cc-graphic {
    padding: 50px;
}
.cc-graphic img {
    width: 100%;
    border-radius: 20px;
}
#events {
    padding: 75px;
    background-color: whitesmoke;
}
.no-events {
    display: none;
    font-size: 18px;
    padding: 0;
}
.events-group {
    margin-bottom: 50px;
}
.events-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
}
.upcoming-events-list {
    grid-template-columns: 1fr;
}
.upcoming-events-list .event {
    width: 60%;
}
.ls-holder {
    transform: translate(-50px, -50px);
}
.ls-holder .loading-spinner {
    width: 100px;
    height: 100px;
    border-width: 10px;
    border-color: #cb9155;
    border-top-color: #ebb479;
    position: relative;
    display: block;
    left: 50%;
    top: 50%;
}
.upcoming-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.register a {
    color: white;
    background-color: #cb9155;
    padding: 25px 30px;
    display: block;
    width: fit-content;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 200ms;
}
.register a:hover {
    background-color: black;
}
.event {
    background-color: rgb(235, 235, 235);
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 0 10px -5px;
}
.event-flyer {
    padding: 25px;
}
.event-flyer img {
    width: 100%;
}
.event-flyer iframe {
    width: 100%;
    height: 300px;
}
.event-info {
    padding: 25px;
    font-weight: bold;
    color: rgb(56, 56, 56);
    line-height: 1.8;
}
.event-see-more {
    background-color: rgb(235, 235, 235);
    min-height: 500px;
    width: 90%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
}
.event-see-more a {
    color: #cb9155;
    border: solid 1px #cb9155;
    padding: 20px 40px;
    font-weight: bold;
    display: block;
    width: fit-content;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 200ms;
}
.event-see-more a:hover {
    background-color: black;
    color: white;
}
.la-logo {
    width: 50px;
    height: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
#blog {
    padding: 50px;
}
.blog-area {
    background-color: rgb(250, 250, 250);
    padding: 50px;
}
.featured-post-area {
    padding: 20px;
}
.fp-container {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    transition: all 200ms;
}
.fp-container:hover {
    background-size: 110%;
}
.featured-post {
    width: 100%;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.705);
    color: white;
    display: block;
    cursor: pointer;
}
.featured-post:hover {
    color: white;
}
.featured-post .blog-info {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.featured-post .blog-info .blog-title {
    color: #cb9155;
}
.featured-post .blog-desc {
    width: 50%;
    color: white;
}
.blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.blog-link {
    align-items: center;
    cursor: pointer;
    color: #cb9155;
    margin: 20px;
    background-color: white;
    box-shadow: 0 0 10px -5px;
    transition: all 200ms;
}
.blog-link:hover {
    box-shadow: 0 0 10px 0;
    transform: scale(1.01);
}
.blog-image img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
}
.blog-info {
    padding: 25px;
}
.blog-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 100%;
}
.blog-desc {
    font-size: 12px;
    width: 100%;
    color: black;
}
.single-blog-area {
    background-color: rgb(250, 250, 250);
    padding: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
}
.blog-container {
    width: 75%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.blog-heading {
    font-size: 30px;
    font-weight: bolder;
    margin-bottom: 20px;
    color: #855727;
}
.blog-picture img {
    width: 100%;
}
.blog-content {
    padding: 50px 0;
    line-height: 1.5;
}
.category-area {
    padding: 25px;
    flex-basis: 50%;
}
.category-area h3 {
    margin-bottom: 10px;
}
.category {
    display: inline-block;
    width: fit-content;
    padding: 10px;
    margin-right: 10px;
    border: solid 1px #cb9155;
    border-radius: 10px;
    cursor: pointer;
    transition: all 200ms;
}
.category-selected {
    display: inline-block;
    width: fit-content;
    padding: 10px;
    margin-right: 10px;
    background-color: #cb9155;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 200ms;
}
.category:hover {
    background-color: #cb9155;
    color: white;
}
.search-bar {
    flex-basis: 50%;
    padding: 25px;
}
.search-bar input {
    width: 100%;
    font-size: 25px;
    padding: 5px;
    outline: none;
}
#contact {
    padding: 75px;
    background-color: whitesmoke;
}
#contact .sub-heading-wb {
    text-align: left;
}
.contact-form {
    width: 50%;
}
.contact-form input, .event-form input, .contact-form textarea, .contact-form select {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 20px;
    margin: 10px;
    margin-bottom: 20px;
    border: none;
    outline: none;
    border-left: solid 3px #cb9155;
    background-color: white;
    font-family: 'Montserrat';
}
.contact-form select {
    cursor: pointer;
}
.contact-form option {
    padding: 10px;
}
.contact-form textarea {
    height: 200px;
    margin-bottom: 25px;
}
.contact-form button[type="submit"], .event-form button[type="submit"] {
    width: fit-content;
    border: none;
    padding: 20px;
    background-color: #cb9155;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 200ms;
    margin: 10px;
    font-size: 20px;
    font-family: 'Montserrat';
}
.contact-form button[type="submit"]:hover {
    background-color: black;
}
.event-form {
    padding: 20px;
}
.event-form input {
    background-color: whitesmoke;
}
.sc-spec {
    background-color: rgb(233, 233, 233);
    margin: -50px 0;
    padding: 50px 0;
    width: 100%;
}
.recommendations-area {
    background-color: rgb(250, 250, 250);
}
.recommendations-area .sub-heading-wb {
    text-align: left;
    color: #a07445;
    font-size: 25px;
    padding-left: 10px;
}
.blog-list-item {
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 10px 0;
    align-items: center;
    transition: all 100ms;
}
.blog-list-item:hover {
    box-shadow: 0 0 10px -2px;
    transform: scale(1.01);
}
.blog-list-image img {
    width: 75%;
    position: relative;
    left: 17.5%;
}
.blog-list-title {
    color: black;
    font-weight: bolder;
}
.blog-container .socials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    align-items: center;
}
.blog-container .socials a {
    font-weight: bolder;
    font-size: 15px;
    padding: 10px;
    background-color: black;
    color: white;
    margin: 10px 0;
    margin-right: 10px;
}
.blog-container .socials .li {
    background-color: #0077B5;
}
.blog-container .socials .x {
    background-color: black;
}
.blog-container .socials .fb {
    background-color: #1877F2;
}
.event-link {
    margin: 30px 0;
}

/* VALIDATOR STYLING */
.validator-main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: rgb(220, 220, 220);
}
.validator-main footer {
    margin-top: auto;
    background-color: rgb(228, 228, 228);
    padding: 20px;
    font-weight: bold;
}
.validator-main footer a {
    font-size: 16px;
    font-weight: bold;
}
.validator-section {
    width: 90%;
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 50px 25px;
}
.validator-section h2, .validator-section p {
    margin: 20px 0;
    line-height: 25px;
    color: rgb(229, 229, 229);
}
.validator-section h2 {
    font-size: 35px;
}
.validator-section p, .validator-section a {
    font-size: 20px;
}
.validator-main #not-auth {
    background-color: rgb(57, 37, 23);
}
.validator-main #valid {
    background-color: rgb(38, 79, 38);
}
.validator-main #invalid {
    background-color: rgb(131, 0, 0);
}
.loading-validator-spinner {
    width: 100px;
    height: 100px;
    border: solid 15px #855727;
    border-radius: 50%;
    border-right: solid 15px #cb9155;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: loading-spinner;
}
.validator-main .buttons-row a {
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: whitesmoke;
    border: none;
}
/* RESPONSIVENESS STARTS HERE */

.nav-button {
    display: none;
    padding: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.mob-nav {
    display: none;
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.541);
}
.mob-nav-area {
    width: fit-content;
    height: 100%;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 200ms;
}
.mn-link {
    padding: 20px 20px;
    font-weight: 900;
    display: block;
    width: 250px;
    transition: all 200ms;
}
.mn-link:hover {
    background-color: rgb(212, 212, 212);
}
.mn-link-tog:hover {
    background-color: none;
}
.mn-link-tog {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.mn-link-group .mn-link {
    padding-left: 30px;
}
.mn-link i {
    transition: all 200ms;
}
section#newsletters {
    background-color: rgb(235, 235, 235);
    padding: 50px 0;
}
.newsletters-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}
.newsletter-image {
    width: 300px;
}
.newsletter-name {
    font-weight: bolder;
    font-size: 20px;
}

@media screen and (max-width: 1200px) {
    .partner-strip {
        grid-template-columns: repeat(3, auto);
    }
}

@media screen and (max-width: 1020px) {
    header {
        justify-content: space-between;
        position: absolute;
    }
    .logo {
        padding: 0 20px;
    }
    .navigation {
        display: none;
    }
    .nav-button {
        display: block;
    }
    .sub-heading-db, .sub-heading-wb {
        padding: 75px 0;
    }
    .page-head-desc {
        line-height: 1.8;
        font-size: 15px;
    }
    .welcome-content {
        left: 0;
        line-height: 1;
        width: 100%;
    }
    .welcome-text {
        font-size: 30px;
        max-width: 100%;
        text-align: center;
        padding: 10px;
    }
    .welcome-text span {
        font-size: 15px;
        display: block;
        padding: 10px;
    }
    .welcome-content a {
        position: relative;
    }
    .partner-strip {
        display: block;
        padding: 0;
    }
    .partner-logo-png {
        width: 49%;
        display: inline-block;
        margin: 20px 0;
    }
    .partner-logo-png img {
        position: relative;
        display: block;
        width: 70%;
        height: 70%;
        left: 50%;
        transform: translateX(-50%);
    }
    #services {
        padding: 0;
    }
    .services-container {
        width: 100%;
        padding: 0;
        grid-template-columns: 1fr;
    }
    .service {
        max-width: none;
        width: 90%;
        min-height: 0;
        border-radius: 20px;
        margin-bottom: 50px;
    }
    .service-desc {
        padding: 40px;
    }
    .service-desc-p {
        line-height: 1.8;
        font-size: 15px;
    }
    #stats {
        padding: 50px 0;
        padding-bottom: 100px;
    }
    .stats-bar {
        width: 95%;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        align-items: center;
        padding: 0;
    }
    .stat-number {
        font-size: 95px;
    }
    #reviews {
        padding: 0;
    }
    .review {
        width: 100%;
        height: fit-content;
        grid-template-columns: auto;
        border-radius: 0;
        padding: 50px 20px;
        margin-bottom: 0;
    }
    .review-right {
        left: 0;
        transform: translateX(0);
    }
    .reviewer-pic {
        display: none;
    }
    .review-text {
        padding: 10px;
        text-align: center;
        line-height: 1.8;
        font-size: 15px;
    }
    .reviewer-desc {
        font-size: 15px;
    }
    .review-text span {
        display: none;
    }
    .review-text i {
        display: inline;
    }
    .reviewer {
        display: none;
    }
    .reviewer-mob {
        padding: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .reviewer-mob .reviewer-desc {
        color: #cb9155;
        font-weight: bold;
        flex-basis: 75%;
    }
    .reviewer-mob span {
        display: block;
        color: #886138;
    }
    .reviewer-mob .reviewer-desc i {
        color: rgb(53, 53, 53);
        display: block;
        font-style: normal;
    }
    .reviewer-mob-pic {
        flex-basis: 25%;
        margin-right: 15px;
    }
    .reviewer-mob-pic img {
        border-radius: 50%;
        width: 100%;
    }
    #training {
        padding: 20px 10px
    }
    #training iframe {
        margin-bottom: 20px;
        width: 100%;
        height: 400px
    }
    #faqs {
        padding: 20px 0;
    }
    .faq-list {
        width: 100%;
        border-radius: 0;
    }
    .faq {
        padding: 0;
    }
    .faq-qn {
        display: block;
        line-height: 1.8;
        font-size: 15px;
        padding: 10px;
    }
    .faq-qn div {
        display: inline-block;
        width: 89%;
    }
    .faq-qn i {
        display: inline-block;
        width: 9%;
    }
    .faq-an {
        line-height: 1.8;
        font-size: 15px;
        padding: 15px;
    }
    .faq-an-open {
        opacity: 1;
        margin-top: 15px;
        height: fit-content;
    }
    #newsletter {
        padding: 20px 0;
    }
    #newsletter .sub-heading-db span {
        display: none;
    }
    #newsletter .sub-heading-db i {
        display: block;
        margin-top: 10px;
    }
    .newsletter-area {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: translateX(0);
        padding: 20px;
    }
    .newsletter-form {
        width: 100%;
    }
    .newsletter-form input[type='email'] {
        width: 100%;
        padding: 20px 10px;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        display: block;
    }
    .newsletter-form button[type='submit'] {
        display: block;
        width: 100%;
        border-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        transform: translate(0, 0);
    }
    .latest-newsletter {
        flex-direction: column;
        margin-top: 20px;
    }
    .latest-newsletter-link {
        margin: 0;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        width: 100%;
    }
    .lnl-right {
        border-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    #footer .logo {
        padding: 0;
    }
    .footer-cover {
        padding: 20px;
    }
    .footer-right {
        display: none;
    }
    .contact-info {
        font-size: 12px;
    }
    .contact-list-item {
        margin: 0;
    }
    .contact-list-item a {
        font-size: 12px;
    }
    #page-head {
        padding: 75px 10px;
    }
    .story {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .story .sub-heading-wb {
        text-align: center;
    }
    .story-desc {
        padding: 0;
        margin-bottom: 50px;
        text-align: center;
        line-height: 1.8;
        font-size: 15px;
    }
    .story-pic {
        margin-bottom: 50px;
    }
    #get-started {
        padding: 40px 20px;
    }
    .wils-section {
        padding: 40px 20px;
    }
    .cc-container {
        padding: 30px 0;
    }
    .cc .sub-heading-db, .cc .sub-heading-wb {
        padding: 10px 5px;
        text-align: left;
    }
    .cc-container {
        grid-template-columns: 1fr;
    }
    .cc-item {
        margin-bottom: 10px;
        text-align: left;
        font-size: 15px;
    }
    .number-container span {
        font-size: 15px;
    }
    .cc-fw-title {
        text-align: left;
    }
    .cc-graphic {
        padding: 10px;
    }
    .heading-phrase {
        width: 95%;
    }
    #events {
        padding: 50px 10px;
    }
    .events-group {
        margin: 0;
    }
    .upcoming-events-list .event {
        width: 100%;
    }
    .upcoming-group {
        grid-template-columns: 1fr;
    }
    .upcoming-group .register {
        padding: 20px 0;
    }
    .events-list {
        grid-template-columns: 1fr;
    }
    .event {
        width: 100%;
        border-radius: 2px;
    }
    .event-flyer {
        padding: 10px 5px;
    }
    .event-see-more {
        padding: 20px;
    }
    #blog {
        padding: 0px;
    }
    .blog-area {
        padding: 0px;
    }
    .category {
        margin: 5px;
    }
    .featured-post-area {
        padding: 0;
    }
    .featured-post {
        height: fit-content;
    }
    .featured-post .blog-info {
        top: 0;
        transform: translateY(0);
        padding: 100px 5px;
    }
    .blog-list {
        grid-template-columns: 1fr;
    }
    .single-blog-area {
        grid-template-columns: 1fr;
    }
    .blog-container {
        width: 100%;
    }
    .blog-container .socials a {
        font-size: 12px !important;
    }
    .blog-content {
        line-height: 1.8;
        font-size: 15px;
        padding: 20px;
    }
    .blog-list-item {
        margin-bottom: 20px;
    }
    .main-heading-db {
        font-size: 30px;
    }
    .services-container {
        padding: 20px 0;
    }
    .sc-spec {
        margin: 0;
    }
    .splash-content {
        width: 100%;
        left: 0;
        transform: translate(0%, -50%);
    }
    .splash-desc {
        font-size: 15px;
        padding: 20px;
    }
    .stat-spec span {
        position: relative;
        display: inline-block;
        transform: translateY(-190%);
    }
    #contact {
        padding: 10px;
    }
    .contact-form {
        width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .team-grid {
        flex-direction: column;
    }
    .team-card {
        width: 300px;
    }
}

@media screen and (max-width: 300px) {
    .nav-button {
        padding: 10px;
        font-size: 20px;
    }
    .logo {
        padding: 0 10px;
    }
}

.four {
    font-size: 100px;
    font-weight: bold;
    font-family: 'LA Font';
    text-align: center;
    position: relative;
}
.four img {
    width: 100px;
    transform: translateY(15px);
    margin: 0 10px;
}