body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 33px;
    color: var(--grey);
}

body *,
::before,
::after {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

:root {
    --black: #000;
    --white: #fff;
    --darkred: #7F1517;
    --grey: #666666;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bebas Neue", sans-serif;

}

h1 {
    font-weight: 500;
    font-size: 132px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
}

h2 {
    font-weight: 500;
    font-size: 92px;
    line-height: 102px;
}

h3 {
    font-weight: 500;
    font-size: 82px;
    line-height: 100%;
    color: var(--black);
}

h4 {
    font-weight: 500;
    font-size: 42px;
    line-height: 100%;

}

h5 {
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;

}

h6 {
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;

}

a {
    text-decoration: none;
}

.cta {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 33px;
    color: #FFFFFF;
    background-color: var(--darkred);
    border: 1px solid var(--darkred);
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;

}

.cta:hover {
    color: var(--darkred);
    border-color: var(--darkred);

}

.cta::before {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    --progress: 100%;
    background-color: var(--white);
    clip-path: polygon(100% 0, var(--progress) var(--progress), 0 100%, 100% 100%);
    transition: all 0.4s ease-in-out;
    left: -1px;
    right: -1px;
    top: -1px;
}

.cta:hover::before {
    --progress: 0%;
}

.p_120 {
    padding: 120px 0;
}

.p_140 {
    padding: 140px 0;
}

header {
    position: absolute;
    width: 100%;
}

.top-header {
    padding-block: 12px;
}

.top-header p {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: var(--white);
}

.header-nav {
    background-color: var(--black);
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav nav.navbar {
    padding: 0;
    width: 100%;
}

.header-nav nav.navbar .navbar-collapse {
    justify-content: flex-end;
    gap: 64px;
}

.header-nav nav.navbar .navbar-collapse ul.navbar-nav {
    gap: 58px;
}


.header-nav nav.navbar a.nav-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: right;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-block: 30px;
}

.header-nav nav.navbar a.nav-link::before {
    position: absolute;
    content: '';
    /* bottom: 0; */
    bottom: 25px;
    left: 8px;
    width: 0%;
    height: 2px;
    background-color: var(--darkred);
    transition: all 0.2s ease-in;
}

.header-nav nav.navbar a.nav-link:hover::before,
.header-nav nav.navbar a.nav-link.active::before {
    width: 40%;
}

.header-nav nav.navbar a.nav-link.active {
    -webkit-text-stroke: 0.5px;
}

nav.navbar .navbar-brand {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
}


.header-nav nav.navbar a.nav-link.dropdown-toggle::after {
    position: absolute;
    content: '\2b';
    border: none;
    margin-left: 5px;
    transition: transform 03s ease-in-out;
}



.header-nav nav.navbar .dropdown ul.dropdown-menu {
    background-color: #000;
    margin-top: 0;
}

.header-nav nav.navbar .dropdown ul.dropdown-menu a.dropdown-item {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    background-color: #000;
}

.header-nav nav.navbar a.nav-link.dropdown-toggle.show::after {

    content: '\f068';
    font-size: 10px;
    font-family: 'Fontawesome';
    color: var(--white);
}

.header-nav nav.navbar .dropdown ul.dropdown-menu.show {
    border-top: 1px solid var(--darkred);
    border-radius: 0;
}

.header-nav nav.navbar .dropdown a.dropdown-toggle.show:before {
    display: none;
}

.header-nav nav.navbar .dropdown ul.dropdown-menu li a:hover {
    background-color: var(--darkred);
}




/* *****bnr_sec********* */

.nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta_btn.light a.cta {
    background-color: #fff;
    border: 0;
    color: #000;
    border: 0px;
    padding: 14px 32px;
}

.cta_btn.light a.cta:hover {
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.cta_btn.light .cta::before {
    background-color: var(--darkred);
}

.explore-container .text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    margin-bottom: 5px;
}

.explore-container .line {
    width: 2px;
    height: 37px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

@keyframes line-grow {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.explore-container .line::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: white;
    bottom: 0;
    animation: line-grow 1.5s infinite alternate ease-in-out;
    left: 0;
}

.explore-container .line {
    width: 2px;
    height: 37px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.explore-container {
    position: absolute;
    right: 40px;
    bottom: 110px;
}


.about-heading h6 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #7F1417;
    margin-bottom: 11px;
}

.bout-content p {
    font-weight: 500;
    font-size: 22px;
    line-height: 35px;
    color: #000;
}

.e-book-img img {
    width: 100%;
    height: auto;
}

.e-book-slider-wrap .slick-slide {
    color: #FFF;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.e-book-slide-inner.slick-active.slick-center .drag-me-btn {
    visibility: visible;
}

.e-book-slider-wrap .slick-slide,
.e-book-slider-wrap .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
    transform: scale(0.8, 0.8);
    transition: all 0.4s ease-in-out;
}


.e-book-slider-wrap .slick-center,
.e-book-slider-wrap .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);

}

.e-book-slider-wrap .slick-current.slick-active {
    transform: scale(1.1);
}


.e-book-slider-wrap .slick-list.draggable {
    overflow: visible;
    padding: -0 20% !important;
}

.e-book-slider-sec {
    padding: 50px 0;
    overflow: hidden;
}

.camps-txt p {
    margin-top: 45px;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
}

ul.footer-links li a:hover {
    color: #7F1517;
}

/*.e-book-slider-wrap {
    position: relative;
    cursor: none;
}*/

.circle-drag {
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: none;
}

.circle-drag img {
    width: 100%;
    height: 100%;
}

.recruitr-img img {
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.recruitr-img {
    height: 100%;
    overflow: hidden;
}

.accordion-body {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding: 20px;
}

.rotate-img img {
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.registr_txt.next-data {
    max-width: 870px;
}

.registr_txt.next-data h3 {
    line-height: 1.1;
}

.overview .recruiting_p p {
    padding: 0;
}

.select-lacrosse-sec h3 {
    text-align: center;
}

.expert-coaching {
    border: 1px solid #7F151712;
    padding: 30px;
    height: 100%;
    background-color: #fff;
}

.expert-coaching .img {
    border: 1px solid #7F15171A;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.expert-coaching h6 {
    color: #000;
    margin-bottom: 17px;
}

.expert-coaching p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #666666;
}

.select-lacrosse-sec .txt {
    margin-bottom: 30px;
}

.expert-coaching {
    transition: box-shadow 0.3s ease-in-out;
}

.expert-coaching:hover {
    box-shadow: 6px 10px 36px 0px #0000002B;
}

.email-from .from-t {
    margin-top: 42px;
}

.expert-coaching .img {
    transition: background 0.3s ease-in-out;
}

.bout-content p {
    margin-bottom: 30px;
}

.expert-coaching:hover .img {
    background: #7F1517;
}

.expert-coaching .img img {
    transition: filter 0.3s ease-in-out;
}

.expert-coaching:hover .img img {
    filter: brightness(0) invert(1) grayscale(100%);
}

.mh_hlth_text p:first-child {
    margin-bottom: 30px;
}