@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@font-face {
    font-family: 'viktor-caps'; 
    src: url('/assets/Viktor_Script_Caps.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'viktor'; 
    src: url('/assets/Viktor_Script_Regular.otf') format('opentype');
    font-display: swap;
}
:root {
    --white: #e1e1e1;
    --lt-gray: #545e6e;
    --dk-gray: #201a17;
    --gray: #252220;
    --orange: #FF730A;
    --lt-orange: #ffa968;
    --red: #870b28;
    --teal: #135c7b;
    --lt-teal: #4adede;
}
.red {
    background-color: var(--red) !important;
    color: var(--white) !important;
}
.red_text {
    color: var(--red) !important;
}
.orange_text {
    color: var(--lt-orange) !important;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background-color: #2b2e36;
    box-shadow: inset 0 0 6px #1f2127;
}
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: darkgrey;
    outline: 1px solid #2b2e36;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    line-height: 1.6em;
    font-family: "Montserrat", serif;
    font-size: 16px;
    background-color: var(--lt-gray);
    color: var(--white);
    width: 100%;
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: inherit;
}
a.inline {
    color: var(--lt-orange);
}
a.inline:hover {
    color: #ffc69b;
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin: 12px 0;
    line-height: 1.6rem;
    font-family: 'viktor-caps', 'Montserrat', sans-serif;
    font-weight: 100;
    letter-spacing: -2px;
}
h1 {
    font-size: 40px;
    line-height: 54px;
}
h3 {
    text-transform: uppercase;
}
img {
    width: 100%;
    max-width: 100%;
}
.wrapper {
    display: grid;
    grid-template-columns: 1fr repeat(6, 1fr) 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.wrapper > div {
    grid-column: 2 / -2;
}
main {
    min-height: 70vh;
}
header > div.small_header {
    grid-column: 1 / -1;
    min-height: 20vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.flex_row {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.clickable {
    cursor: pointer;
}
.btn {
    background-color: var(--orange);
    color: var(--white);
    border-radius: 2px;
    border: none;
    height: 46px;
    max-width: fit-content;
    margin: 12px 0;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.btn:hover {
    opacity: 0.8;
    padding: 12px 16px;
}
.btn.disabled {
    opacity: 50%;
}
.left_align, .left_align * {
    text-align: left;
}
/**************************************************/
/****************** INSTAGRAM ********************/
/************************************************/
.ig_feed_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}
.ig_post_container {
    background-color: var(--white);
    color: #283038; 
    margin: 24px;
    width: 350px; 
    height: 500px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4), -1px -1px 10px rgba(255, 255, 255, 0.15);

}
.ig_post_container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.ig_post_container .ig_post_details {
    padding: 15px;
}
.ig_post_container .ig_view_link {
    margin-top: 10px;
    color: var(--gray);
    font-size: 12px;
}

/**************************************************/
/***************** NAVIGATION ********************/
/************************************************/
#header_nav {
    display: flex;
    align-items: center;
    transition: all .2s ease-in-out;
    width: 100%;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 24px 64px;
}
.open #header_nav {
    transform: translateX(0);
}
#header_nav > div {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
#nav_logo {
    width: 140px;
    height: 40px;
    background: url('/assets/images/logo_full.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
#header_nav a {
    color: rgba(255, 255, 255, 0.75);
    padding: 24px 0;
    transition: all .2s ease;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
#header_nav span {
    display: none;
    font-size: 12px;
    margin-bottom: -4px;
    text-transform: uppercase;
}
#header_nav a.active {
    color: var(--orange);
}
#header_nav a:hover {
    color: var(--lt-teal);
}
#toggle_nav {
    display: none;
    position: fixed;
    cursor: pointer;
    top: 24px;
    right: 24px;
    width: 30px;
    height: 30px;
    background-image: url('/assets/images/menu-open.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9001;
}
.open #toggle_nav {
    background-image: url('/assets/images/menu-close.svg');
}
#nav_underlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 8000;
    background-color: #135c7b57;
    backdrop-filter: blur(3px);
}
.open #nav_underlay {
    display: block;
}

/**************************************************/
/*******************  HEADER  ********************/
/************************************************/
header > div {
    min-height: 40vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
header.main_header > div {
    min-height: 60vh;
}
header.main_header {
    background-image: url('/assets/images/paddle_lines.svg');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

/**************************************************/
/*******************  FOOTER  ********************/
/************************************************/
footer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--gray);
    padding: 48px;
}
footer .socials {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
footer .socials img {
    width: 50px;
    height: 50px;
    margin: 12px;
}

/**************************************************/
/*****************  COLUMNS   ********************/
/************************************************/
.two_col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}
.two_col > div:first-of-type {
    grid-column: 1;
}
.two_col > div:last-of-type {
    grid-column: 2;
}
.two_col .img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.two_col .wrapper {
    padding: 24px;
}
.two_col .wrapper > div {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.full_col {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 48px;
    min-height: 500px;
}

/**************************************************/
/******************* CARDS  **********************/
/************************************************/
.cards {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
.card {
    margin: 24px;
    width: 300px;
    height: 450px;
    overflow-y: hidden;
    background-color: var(--white);
    color: var(--dk-gray);
    display: flex;
    flex-flow: column nowrap;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4), -1px -1px 10px rgba(255, 255, 255, 0.15);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card:hover {
    scale: 1.03;
}
.card .img {
    width: 100%;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card .content {
    padding: 24px;
}
.card .btn {
    max-width: 100%;
}


/**************************************************/
/*****************   STEPS    ********************/
/************************************************/
.steps {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    grid-template-rows: 100px 50px 100px 50px 100px 50px 100px 50px 100px 50px 100px;
    margin: 24px 0;
}
.step {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 50px auto;
    gap: 24px;
    align-items: center;
}
.step_indicator {
    grid-column: 1;
    background-color: var(--lt-teal);
    color: var(--gray);
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.step_text {
    grid-column: 2;
}
.step_divider {
    grid-column: 1;
    width: 4px;
    height: 100%;
    background-color: var(--lt-teal);
    margin: auto;
}



#hi_quote, .about_quote {
    text-align: center;
}
.about_quote {
    background: linear-gradient(#135c7bcc, #135c7bcc), url("/assets/images/ocean_1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#hi_quote span, #about_quote span {
    font-size: 14px;
    text-transform: uppercase;
}
#hi_quote p:first-of-type, #about_quote p:first-of-type {
    font-size: 24px;
    font-weight: bold;
    margin: 16px;
}

/**************************************************/
/***************** SLIDESHOW  ********************/
/************************************************/
.carousel_container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
    width: 100%;
	overflow: hidden;
}
.carousel_container ul {
    list-style-type: none;
}
.carousel_items {
	position: relative;
	cursor: default !important;
}
.carousel_item {
	float:left;
}
.carousel_item iframe {
    width: 100vw;
    max-width: 100%;
    height: 40vh;
    /* pointer-events: none; */
}
.item_arrows {
	position: absolute;
	top: 50%;
	width: 100%;
    height: 1px;
	z-index: 5000;
}
.item_arrow {
	position: absolute;
	width: 45px;
	height: 65px;
    margin-bottom: 1px;
	float: left;
    border: none;
}
.nav_dot:hover,
.item_arrow:hover {
	cursor: pointer;
}
.item_next {
	left: calc(100% - 45px);
    top: -65px;
    background-color: #2d96cd;
}
.item_prev {
    left: calc(100% - 45px);
    top: 0px;
    background-color: #5eb3e0;
}
.nav_dots {
	position: relative;
	bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	z-index: 50001;
}
.nav_dot {
	width: 6px;
	height: 6px;
	float: left;
	border: 1px solid #fff;
	background-color: #fff;
	margin-left: 15px;	
	border-radius: 50%;    
}
.grab {
    cursor: -webkit-grab;
    cursor: -moz-grab;
}
.grabbing {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
}
@media only screen and (max-height: 400px) {
    .carousel_item iframe {
        height: 80vh;
    }
}

/**************************************************/
/****************    FORMS     *******************/
/************************************************/
.contact_form {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
input, textarea, select {
    font-family: 'source-sans', sans-serif;
    background-color: var(--gray);
    outline: none;
    border: none;
    border-bottom: 2px solid var(--teal);
    color: var(--white);
    height: 46px;
    width: 100%;
    padding: 6px;
    font-size: 16px;
}
textarea {
    height: 64px;
}
.form_label {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    margin: 22px 0 12px 0;
}
.form_label span {
    order: -1;
    color: var(--white);
    font-size: 16px;
}
.form_label .error {
    height: 26px;
    font-size: 12px;
    color: var(--lt-orange);
}
#usr_msg {
    display: none;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    padding: 8px 55px;
}
#usr_msg .close {
    position: absolute;
    z-index: 1001;
    top: 0;
    right: 8px;
    height: 55px;
    width: 55px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.success {
    background: #00ffae;
    color: var(--dk-gray);
}
.success_text {
    color: #00ffae;
}
.warning {
    background: #931f1f;
    color: var(--white);
}
.warning_text {
    color: #990A2C;
}
input.warning_text {
    border-bottom: 2px solid #990A2C;
}
.main_form {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}
.form_label select + span {
    font-size: 16px;
    color: var(--white);
}
.main_form .form_group {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
}
.main_form .form_group span {
    color: var(--white);
}
.form_radios, .form_select {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}
.form_radios > .form_radio, .form_select > div {
    width: 100%;
    display: grid;
    gap: 12px;
    margin: 12px 0;
    grid-template-columns: 36px auto;
    justify-content: flex-start;
    align-items: center;
}
.form_select > div {
    grid-template-columns: 1fr 1fr;
}
.form_radios input[type="radio"] {
    width: 24px;
    height: 24px;
}
.form_radios > .form_radio + span, .form_select > div + span {
    position: static;
    order: -1;
}

input.ng-touched.ng-invalid, textarea.ng-touched.ng-invalid, select.ng-touched.ng-invalid {
    border-bottom: 2px solid var(--orange);
}
input.ng-touched.ng-invalid + span, textarea.ng-touched.ng-invalid + span, select.ng-touched.ng-invalid + span {
    color: var(--orange);
}

.form_label span strong {
    display: none;
    font-weight: normal;
    font-style: italic;
}

/**************************************************/
/****************    TABLE     *******************/
/************************************************/
.table {
    border-collapse: collapse;
    width: 100%;
}
.table .icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80% 80%;
    filter: invert(20%);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 40px;
    height: 40px;
}
.table .icon {
    filter: invert(30%);
}
#practice_schedule table tr:nth-child(2n){
    background-color: rgba(0, 16, 94, 0.1);
}

#spinner {
    display: none;
    z-index: 10000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(94, 53, 0, 0.2);
    backdrop-filter: blur(5px);
}
#spinner::after {
    content: "";
    background-image: url('/assets/loading-gear.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 200px;
    position: fixed;
    top: calc(50% - 100px);
    right: calc(50% - 100px);
    filter: invert(1);
    animation: spin 2s infinite linear;
}

/**************************************************/
/****************    MODAL     *******************/
/************************************************/
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9997;
}
.modal_underlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
}
.modal form {
    position: fixed;
    width: 80%;
    height: 90%;
    left: 10%;
    top: 5%;
    display: flex;
    justify-content: center;
    z-index: 9999;
}
.modal .main_form {
    background-color: var(--gray);
    padding: 24px;
    overflow-y: scroll;
    justify-content: flex-start;
}
.modal_close {
    position: fixed;
    top: 20px;
    right: 42px;
    cursor: pointer;
    z-index: 10001;
}
.modal_close:hover {
    padding: 12px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@media only screen and (max-width: 750px) {
    .wrapper {
        height: unset;
        padding: 48px 0;
    }
    header.main_header > div {
        min-height: 50vh;
    }
    .two_col {
        display: flex;
        flex-flow: column nowrap;
        min-height: unset;
    }
    .two_col .img {
        order: 1;
    }
    #header_nav {
        align-items: center;
        z-index: 9000;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        height: 100%;
        width: 85%;
        flex-flow: column nowrap;
        justify-content: space-between;
        background-color: var(--teal);
        font-size: 24px;
        padding: 72px 24px 24px 24px;
    }
    #header_nav > div {
        width: 100%;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #header_nav a {
        padding: 24px 0;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #header_nav span {
        display: block;
    }
    #toggle_nav {
        display: block;
    }
    #usr_msg {
        height: 100px;
        padding: 8px 60px 8px 12px;
    }
    #usr_msg .close {
        top: 20px;
    }
    .form_label {
        margin: 28px 0 8px 0;
    }
    h1 { 
        font-size: 24px;
    }
    .full_col {
        padding: 24px 12px;
    }
    .steps {
        grid-template-rows: 100px 50px 100px 50px 100px 50px 100px 50px 100px 50px 200px;
    }
}