@font-face {
    font-family: 'Articulate';
    src: url(/Font/Articulate-Regular.ttf);
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Articulate',sans-serif;
}

a {
    text-decoration: none;
}

:root {
    --navy-blue: #142666;
    --yellow: #ffc011;
    --grey: #8f8f90;
    --black: #121212;
    --footer-bg: #373b3e;
    --hover-colour: #f5cf67;
}

p, h1, h2, h3, h4, h5 {
    padding: 0;
    margin: 0;
}

.color-black {
    color: black;
}

.d-none{
    display:none;
}
.d-block{
    display:block;
}
@media (min-width:992px){
    .d-md-none {
        display: none;
    }
    .d-md-block {
        display: block;
    }
    .d-md-flex {
        display: flex;
    }
}

@media (min-width:1200px) {
    .d-lg-none {
        display: none;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-flex {
        display: flex;
    }
}

.font-bold {
    font-weight: bold;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

nav {
    background: white;
}

.nav-top {
    background: var(--navy-blue);
    width: 100%;
    min-height: 30px;
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
}

.nav-middle {
    width: 100%;
}

.nav-social-media {
    margin-left: 5%;
}

.nav-search-cart {
    padding: 0px 10px;
}

    .nav-search-cart > * {
        margin: 0 15px;
    }

.nav-social-media > * {
    margin: 15px 15px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow);
    border-radius: 50%;
    font-size: 14px;
}

.search-location {
    border: solid 1px #dedede;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
}

    .search-location i {
        padding: 5px 8px;
        color: white;
        background: var(--navy-blue);
    }

    .search-location input[type = 'text'] {
        border: none;
        outline: none;
        max-width: 100px;
        padding: 0 10px;
        text-align: center;
    }

.nav-logo {
    padding-left: 35px;
    max-height: 40px;
}

.nav-menu-list ul {
    list-style-type: none;
    display: flex;
}

    .nav-menu-list ul li {
        padding-left: 15px;
    }

        .nav-menu-list ul li a {
            color: var(--black);
        }

.free-pass,
.join-now {
    padding: 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    background: var(--navy-blue);
    color: white;
}

.free-pass {
    margin-left: 15px;
}

.join-now {
    background: var(--yellow);
    color: var(--navy-blue);
}

.carousel-item img {
    max-height: 700px;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    color: white;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    margin-left: 35px;
    margin-top: 10px;
}

.banner-top-text {
    font-size: 18px;
}

.banner-text-main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 50px;
}

    .banner-text-main p:nth-of-type(2n) {
        font-size: 45px;
        color: white;
        font-weight: 500;
    }


    .banner-text-main button {
        margin: 50px;
        font-size: 14px;
        font-weight: 900;
        padding: 20px 20px;
        background: var(--yellow);
        color: var(--navy-blue);
        border: none;
        border-radius: 4px;
        line-height: 1px;
    }

.slider-text p.sub-text {
    font-weight: normal;
    text-align: center;
    max-width: 500px;
    font-size: 12px;
    position: relative;
    bottom: 50px;
    align-self: center;
}

.offer-card {
    border: solid 1px rgba(0, 0, 0, 0.13);
    margin-top: 30px;
    margin-bottom: 20px;
    border-right: none;
    padding: 0;
    text-align: center;
}

    .offer-card:last-of-type,
    .offer-card:nth-of-type(2) {
        border-right: solid 1px rgba(0, 0, 0, 0.13);
    }

    .offer-card h5 {
        font-weight: 700;
        color: var(--navy-blue);
        text-align: center;
        padding: 20px;
        font-size: 24px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.13);
        margin: 0;
    }

    .offer-card ul {
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: center;
        color: var(--grey);
    }

    .offer-card p {
        color: var(--grey);
        font-size: 18px;
    }

    .offer-card h3 {
        font-size: 50px;
        text-align: center;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .offer-card h3 span:first-of-type {
            font-size: 20px;
            font-weight: normal;
            color: var(--grey);
            padding-right: 10px;
        }

.btn-primary {
    background: var(--yellow);
    border: none;
    font-weight: bold;
    color: var(--navy-blue);
}

.secondary-header {
    text-align: center;
    font-weight: bold;
    font-size: 50px;
}

    .secondary-header span {
        display: block;
        font-size: 45px;
    }

.header-three {
    font-weight: bold;
    font-size: 40px;
}

    .header-three .fa-heart {
        color: #ff3e2f;
    }

.btn-secondary {
    background: var(--navy-blue);
    border: none;
    font-weight: bold;
    color: white;
}

.home-page-video img {
    height: 700px;
    width: 100%;
    object-fit: cover;
}

.home-page-video {
    position: relative;
}

.play-btn-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 60px;
}

.play-btn {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 5px rgba(255, 255, 255, 0.8);
}

.map-container h3 {
    font-weight: bold;
    font-size: 50px;
    color: black;
    text-align: right;
}

.map-container p {
    font-size: 20px;
    font-weight: normal;
}

.map-container h3 span {
    font-size: 40px;
}

.map-container .search-location {
    width: 45%;
}

    .map-container .search-location input {
        max-width: 100%;
    }

footer {
    background: var(--footer-bg);
    color: white;
    font-size: 14px;
}

    footer p {
        max-width: 80%;
        color: var(--grey);
    }

    footer h5 {
        font-weight: bold;
        font-size: 14px;
    }

.container-f {
    padding: 2% 4%;
    padding-bottom: 0px;
}

footer ul {
    list-style: none;
    padding: 0;
}

    footer ul li {
        padding-bottom: 20px;
        max-width: 80%;
    }

    footer ul a {
        color: var(--hover-colour);
    }

.signup-box input[type = 'text'],
.signup-box .btn-primary {
    height: 40px;
    border-radius: 4px;
    border: none;
}

.signup-box input[type = 'text'] {
    margin-right: 5px;
    width: 70%;
}

footer .free-pass,
footer .join-now {
    width: 100%;
    border-radius: 7px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

footer .free-pass {
    background: white;
    color: var(--navy-blue);
    margin: 0;
    margin-right: 20px;
}

.footer-terms {
    background: #272727;
}

    .footer-terms p {
        max-width: 100%;
        font-size: 10px;
    }

.footer-bottom-links ul p {
    color: var(--hover-colour);
}

.footer-bottom-links ul {
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-bottom-links li {
    padding: 0;
    font-size: 12px;
}

.locations-us-canada {
    font-weight: bold;
}

    .locations-us-canada h3 {
        font-size: 22px;
        font-weight: bold;
        text-decoration: underline;
        text-decoration-color: rgba(128, 128, 128, 0.171);
    }

    .locations-us-canada a {
        color: var(--navy-blue);
    }

    .locations-us-canada p {
        width: 20%;
        text-align: center;
        padding-bottom: 20px;
    }

.home-page-video.vid-two .play-btn-box {
    background: hsla(44, 89%, 69%, 0.4);
}

.home-page-video.vid-two.vid-three .play-btn-box {
    background: hsla(227, 66%, 24%, 0.4);
}


.home-page-video {
    margin-bottom: 5px;
}

    .home-page-video .vid-text {
        position: absolute;
        top: 10%;
        left: 8%;
        width: 35%;
    }

    .home-page-video.vid-two.vid-three .vid-text {
        left: unset;
        right: 8%;
        text-align: right;
        color: white;
    }

    .home-page-video .vid-text h3 {
        font-size: 35px;
        font-weight: bold;
        padding-bottom: 10px;
    }

.from-our-members-section {
    margin-bottom: 5px;
    background: var(--footer-bg);
    color: white;
}


.testimonial .designation {
    color: var(--grey);
    font-size: 14px;
}

.testimonial img {
    width: 35px;
    height: 35px;
    margin-right: 20px;
}

.from-our-members-section p {
    font-size: 12px;
}

.testimonial p {
    font-weight: 500;
    font-size: 16px;
}

.joinad {
    margin-bottom: 5px;
    position: relative;
}

.joinad-text {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.joinad img {
    max-height: 370px;
    object-fit: cover;
    width: 100%;
}

.joinad p {
    color: white;
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
}

.joinad .pass-join > * {
    margin-bottom: 20px;
    font-size: 20px;
    border-radius: 4px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.384);
}

.joinad .pass-join .free-pass {
    margin-left: 0;
}


.career-op {
    background: var(--hover-colour);
    color: black;
    margin-bottom: 5px;
}

    .career-op h3 {
        font-weight: 900;
        font-size: 35px;
    }

    .career-op img.pt-img {
        max-height: 1200px;
    }

    .career-op .opportunities {
        font-size: 12px;
        text-align: center;
        padding-bottom: 10%;
    }

        .career-op .opportunities img {
            height: 80px;
            object-fit: cover;
            width: 100%;
        }

.h-line {
    border-bottom: solid 1px rgba(0, 0, 0, 0.411);
}

.op-icons p i {
    font-size: 40px;
}

.op-icons > .col:first-of-type {
    color: var(--navy-blue);
}

.query-box {
    background: var(--hover-colour);
}

    .query-box input[type = 'text'],
    .query-box textarea {
        background: transparent;
        border: none;
        min-height: 45px;
        padding: 15px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.192);
    }

        .query-box input[type = 'text']::placeholder,
        .query-box textarea::placeholder {
            color: rgb(82, 82, 82);
        }

    .query-box .signup-box input {
        background: white;
    }

    .query-box .signup-box button {
        background: var(--footer-bg);
        color: var(--yellow);
    }

    .query-box h3 {
        font-weight: bold;
        font-size: 40px;
    }

        .query-box h3:nth-of-type(2) {
            color: white;
        }

.mobile-navigation {
    background: white;
    min-height: 60px;
}

    .mobile-navigation .mobile-logo {
        height: 100%;
    }

.mobile-acc-search a {
    color: var(--navy-blue);
    padding-right: 15px;
}

.mobile-loc-menu a {
    color: var(--navy-blue);
    padding-left: 15px;
}

.mobile-navigation .menu-dropdown {
    width: 100%;
    /* padding: 20px 0; */
    padding: 0;
    list-style: none;
    margin: 0;
}

.mobile-navigation .sidemenu {
    position: fixed;
    background: rgba(0, 0, 0, 0.301);
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    /* padding: 20px 0; */
    padding: 0;
    margin: 0;
}

.mobile-navigation .mobile-menu-items {
    float: right;
    width: 80%;
    height: 100%;
    background: white;
}


.mobile-navigation .menu-dropdown li {
    padding-bottom: 5px;
    padding-top: 5px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.096);
    font-weight: bold;
}

    .mobile-navigation .menu-dropdown li:first-of-type {
        border-top: solid 1px rgba(0, 0, 0, 0.096);
    }

@media (max-width:450px) {
    .carousel-item img {
        height: 580px;
        object-position: 80%;
    }

    .banner-text-main {
        font-size: 35px;
        line-height: 1;
    }

        .banner-text-main p:nth-of-type(2n) {
            font-size: 25px;
        }

        .banner-text-main h5 {
            font-weight: bold;
            font-size: 12px;
            color: white;
        }

    .slider-text p.sub-text {
        position: absolute;
        width: 200%;
        left: -17%;
        bottom: 10px;
        max-width: unset;
        background: rgba(255, 255, 255, 0.452);
        padding: 10px 10px;
        line-height: 10px;
        font-size: 9px;
    }

    .offer-card {
        margin-bottom: 10px;
        margin-top: 10px;
        border-right: solid 1px rgba(0, 0, 0, 0.13);
    }

        .offer-card .btn {
            font-size: 20px;
            padding: 20px 30px;
            font-weight: bold;
        }

    .secondary-header {
        font-size: 24px;
    }

        .secondary-header span {
            font-size: 20px;
        }

    .home-page-video img {
        /* height: 270px; */
        height: 590px;
    }

    .play-btn-box {
        font-size: 30px;
    }

    .play-btn {
        width: 80px;
        height: 80px;
    }

    .map-container h3 {
        font-size: 40px;
        text-align: center;
    }

        .map-container h3 span {
            font-size: 27px;
        }

    .career-op h3 {
        font-size: 30px;
        text-align: center;
    }

    .career-op .opportunities {
        font-size: 6px;
    }

    .home-page-video.vid-two img {
        padding-top: 100px;
    }

    .home-page-video .vid-text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        color: var(--black) !important;
    }

    .top-mobile-text {
        background: white;
        padding-top: 20px;
    }

    .home-page-video .vid-text h3 {
        font-size: 25px;
    }

    .top-mobile-text p {
        max-width: 250px;
        color: var(--grey);
    }

    .vid-text .btn-secondary,
    .vid-text .btn-primary {
        background: var(--yellow);
        color: var(--navy-blue);
        border: solid 10px white;
        border-radius: 0;
    }

    .from-our-members-section h3 {
        font-size: 40px;
    }

    .career-op .opportunities img {
        height: 240px;
    }

    .career-op .opportunities {
        font-size: 16px;
        font-weight: bold;
    }

    footer {
        font-size: 10px;
    }

        footer h5 {
            font-size: 12px;
        }

        footer .free-pass,
        footer .join-now {
            font-size: 16px;
            padding: 7px;
        }

        footer .free-pass {
            margin-bottom: 12px;
        }

    .footer-terms p {
        font-size: 9px;
        padding-bottom: 5px !important;
    }

    .signup-box .btn-primary {
        font-size: 11px;
    }

    .laf-logo-menu-mobile img {
        width: 80%;
        object-fit: contain;
        height: 75px;
    }

    .mobile-menu-botom {
        border-top: solid 2px var(--navy-blue);
    }

    .mobile-menu-social {
        color: var(--navy-blue);
        font-size: 30px;
        position: absolute;
        bottom: 10px;
        right: 0;
        width: 80%;
    }

    .free-pass, .join-now {
        font-size: 25px;
    }
}

.search-bar{
    border: solid 1px #dedede;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
}
.join-now:hover {
    background: #ffd711;
    color: #5b6dab;
}



.free-pass:hover {
    background: #485a98;
}



.free-pass, .join-now, .btn, button.video-button.ae-button, .ae-button {
    transition-duration: 0.25s;
}



    .btn.btn-secondary:hover {
        background: #3b53a2 !important;
        color: white !important;
    }

    a.btn.btn-secondary {
        color: white !important;
        align-content: center;
    }

    .btn.btn-primary:hover {
        background: #ffb000;
        color: #204d74;
    }



    button.video-button.ae-button:hover {
        background: #3f3a96;
        color: white !important;
    }



.footer a:link {
    padding: 0;
}



.free-pass a:hover {
    color: white;
}
