/*
 Theme Name:   Teagan Levine
 Theme URI:    https://wordpress.org/themes/twentyninteen/
 Description:  Custom theme built for Teagan Levine
 Author:       
 Template:     twentynineteen
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  levine-wa-lp
*/




/* ========= COLOR REFERENCES ========= */
:root {
    --red: #CB0E21;
    --blue: #003D79;
    --placeholdertext: #7B7B7B;
    --greytext: #696969;
}

/* ==================================== */


/* ======== TABLE OF CONTENTS =========
	1. TYPOGRAPHY
	2. NAV
    3. GLOBAL
	4. MAIN CONTENT
	- 4a. Landing Page
	- 4b. About Page
/* ==================================== */


/* ------------------------------ 
    1. Start Typography
------------------------------ */
.proxima-nova {
    font-family: "proxima-nova", sans-serif;
}

/* regular */
.fw-400 {
    font-weight: 400;
}

/* medium */
.fw-500 {
    font-weight: 500;
}

/* bold */
.fw-700 {
    font-weight: 700;
}

/* extrabold */
.fw-800 {
    font-weight: 800;
}

.ls-100 {
    letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
.btn,
button {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    margin: 0;
}

h1,
.h1 {
    font-size: 77px;
    line-height: 1;
    margin-block-end: 0;
}

h2,
.h2 {
    font-size: 36px;
    line-height: 1.4;
    /* margin-block-end: 1.4em; */
}

h3,
.h3 {
    font-size: 27px;
    line-height: 1;
}

p,
.p {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    font-size: 20px;
    line-height: 1.5;
    color: var(--greytext);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}



/* ------------------------------ 
    2. Nav
------------------------------ */
a,
.anchor-theme {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    background: none;
    border: none;
}

a:active,
a:focus {
    font-weight: 700;
}


/* .nav-link {
    padding: 0.5rem 20px !important;
} */

/* header .navbar-nav {
    text-align: right;
} */

header .navbar {
    align-items: start;
}

nav a.nav-link {
    font-family: proxima-nova, sans-serif;
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    padding: 0px 20px !important;
    text-decoration: none !important;
    /* transition: all 400ms; */
}

nav a:hover {
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

nav .current-menu-item a {
    font-weight: 700;
    color: #fff;
}

nav .nav-btn-blue a {
    background-color: var(--blue);
    border-radius: 5px;
    padding: 0 20px;
    transition: all 200ms linear;
}

nav .nav-btn-blue a:hover {
    background-color: var(--red);
    font-weight: 500;
}

.navbar-toggler {
    border-color: white;
    padding: 0.1rem 0.6rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.25rem;
    width: 60px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg%27%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}



/* ------------------------------ 
    3. Start Global
------------------------------ */

@-ms-viewport {
    width: device-width;
}

html {
    font-size: 16px;
}

body {
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
}

header {
    position: absolute;
    z-index: 3;
    width: 100%;
    top: 0;
    left: 0;
}

section {
    position: relative;
}

img {
    width: 100%;
}

button:hover,
button:focus {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

button:active {
    /* background-color: #C10912; */
}

.bg-blue {
    background: var(--blue);
}

.f-blue {
    color: var(--blue);
}

.f-greytext {
    color: var(--greytext);
}

.marginblock-0 {
    margin-block-end: 0 !important;
}

.header-logo {
    max-width: 267px;
}

.heading-text-img {
    height: 100px;
    width: auto;
}

.banner-mountain {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 700px;
}

.overflow-y-clipped {
    overflow-y: clip;
}

.blue-box-shadow {
    -webkit-box-shadow: -20px 20px 0px 0px rgba(0, 61, 121, 1);
    -moz-box-shadow: -20px 20px 0px 0px rgba(0, 61, 121, 1);
    box-shadow: -20px 20px 0px 0px rgba(0, 61, 121, 1);
}

.signature {
    max-width: 317px;
}

.footer-mountain {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.social-circle {
    width: 36px;
}

a.btn-red {
    background-color: var(--red);
    color: #fff;
    font-size: 27px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    transition: all 300ms ease;
}

a.btn-red:hover {
    background-color: var(--blue);
}

a.btn-red:active {
    background-color: var(--red) !important;
}


/* ------------------------------ 
    4. Start Main Content
------------------------------ */
/*  - 4a. Landing Page  */

.page-template-page-home .splash {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%), url("/dejilah/sites/581/2024/07/1_hero.jpg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    height: 610px;
}

.page-template-page-home .splash .heading-text-img {
    height: 123px;
    width: auto;
}

.page-template-page-home .meet-section {
    padding-top: 200px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%), url("/dejilah/sites/581/2024/07/1_below_hero_bg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.page-template-page-home .banner-slider .slide img {
    height: 490px;
    width: 95%;
    /* width: 350px; */
    object-fit: cover;
}

.page-template-page-home .carousel-section {
    height: 330px;
}

.slider-container {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.page-template-page-home .carousel-section .banner-slider.slick-slider {
    margin-bottom: 0;
}

.issue-card {
    width: 33vw;
}

.issue-card .redcard-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    overflow-x: hidden;
    transition: all 300ms linear;
}

.issue-card:hover .redcard-container {
    width: 100%;
}

.issue-card .red-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 33vw;
    height: 100%;
}

.issue-card .whitecard-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    overflow-x: hidden;
    transition: all 300ms linear;
}

.issue-card.active-card .whitecard-container {
    width: 100%;
}

.issue-card .white-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 33vw;
    height: 100%;
}

.card-content {
    display: none;
}

.card-content.active-card-content {
    display: block;
}

.card-content h3 {
    color: var(--blue);
    margin-bottom: 20px;
}

.card-content h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 80px;
}

.carousel-section .banner-slider .slick-prev:before {
    content: "◀";
}

.carousel-section .banner-slider .slick-next:before {
    content: "▶";
}

.privacy-policy-link {
    color: var(--greytext);
}

.privacy-policy-link:hover {
    font-style: normal;
}

.page-template-page-privacypolicy header {
    display: none;
}





/* ------------------------------ 
    5. Form
------------------------------ */

.ginput_container input::placeholder,
.ginput_container input::-webkit-input-placeholder {
    color: #fff;
}

.form-container #gform_1 .ginput_container input {
    color: #fff;
    font-size: 18px;
    font-family: "proxima-nova", sans-serif;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0px;
}

.form-container #gform_1 .ginput_container input:focus {
    border: 2px solid #fff;
}

.form-container #gform_1 #field_submit .gform-button {
    background-color: var(--red);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    /* padding: 5px 40px; */
    transition: all 300ms;
}

.form-container #gform_1 #field_submit .gform-button:hover {
    background-color: var(--blue);
    color: #fff;
    border: 1px solid #fff;
}

.form-container .gform_confirmation_message {
    color: white !important;
    text-align: center;
    margin-bottom: 30px;
}

.form-container .gform-theme--foundation #gform_1 .gform_fields {
    row-gap: 20px;
}


/* Privacy Policy */