/* 
Theme Name:		 One Day
Theme URI:		 http://childtheme-generator.com/
Description:	 One Day is a child theme of Twenty Twenty-Four
Author:			 Fred Bangkas
Author URI:		 http://childtheme-generator.com/
Template:		 twentytwentyfour
Version:		 1.0.0
Text Domain:	 one-day
*/
@font-face {
    font-family: 'founders-grotesk';
    src: url('fonts/FoundersGroteskRegular.woff2') format('woff2'),
        url('fonts/FoundersGroteskRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'founders-grotesk';
    src: url('fonts/FoundersGroteskSemibold.woff2') format('woff2'),
        url('fonts/FoundersGroteskSemibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'founders-grotesk';
    src: url('fonts/FoundersGroteskMedium.woff2') format('woff2'),
        url('fonts/FoundersGroteskMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'founders-grotesk';
    src: url('fonts/FoundersGroteskLight.woff2') format('woff2'),
        url('fonts/FoundersGroteskLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Monigue';
    src: url('fonts/Monigue-Regular.woff2') format('woff2'),
        url('fonts/Monigue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --od-navy: #142591;
    --od-yellow: #FFC800;
    --od-lilac: #B081B9;
    /* --od-cream: #fff8f0; */
    --od-cream: #FFF8EF;
    
    --od-sky: #B8D9EB;
    --od-peach: #ffb278;
    --od-charcoal: #333132;
}
:where(.wp-block-columns.has-background){
    padding: 0 !important;
}
:root :where(.is-layout-flex){
    gap: 6rem;
}
@media only screen and (max-width: 767px) {
    :root :where(.is-layout-flex){
        gap: 1rem;
    }
}


header :where(.is-layout-flex), footer :where(.is-layout-flex){
    gap: 1.2rem !important;
}


:root :where(body),
body {
    font-family: 'founders-grotesk';
    background-color: var(--od-cream);
}


.wp-block-post-content{
    max-width: 100%;
    /* max-width: 85rem; */
    margin: auto;
}

.wp-block-post-content .wp-block-group > div{
    max-width: 85rem;
    margin: auto;
}

.wp-block-media-text > .wp-block-media-text__content{
    padding: 0 !important;
}
.wp-block-media-text.has-media-on-the-right, .wp-block-media-text{
    gap: 40px;
}
:where(.wp-block-group.has-background){
    padding: 0;
   
}
.no-margin{
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

.text-center{
    text-align: center;
}

.wp-block-site-logo img{
    max-width: 200px;
}

:where(.wp-site-blocks) > *{
    margin-top:0;
}

footer a:where(:not(.wp-element-button)){
    text-decoration: none !important;
}
footer a:hover:where(:not(.wp-element-button)){
    text-decoration: underline !important;
}

header .has-accent-background-color,
footer .has-accent-background-color {
    background-color: var(--od-sky) !important;
}

.bg-gradient-yellow-cream{
    background: linear-gradient(
         to right,
        var(--od-yellow) 0%,
        var(--od-yellow) 50%,
        var(--od-cream) 50%,
       var(--od-cream) 100%
    );
}

.reverse.bg-gradient-yellow-cream{
    background: linear-gradient(
         to right,
        var(--od-cream) 0%,
        var(--od-cream) 50%,
        var(--od-yellow) 50%,
       var(--od-yellow) 100%
    );
}

@media only screen and (max-width: 767px) {
    .bg-gradient-yellow-cream, .reverse.bg-gradient-yellow-cream{
        background:var(--od-yellow);
    }
}

.bg-gradient-peach-cream{
    background: linear-gradient(
         to right,
        var(--od-peach) 0%,
        var(--od-peach) 50%,
        var(--od-cream) 50%,
       var(--od-cream) 100%
    );
}
.reverse.bg-gradient-peach-cream{
    background: linear-gradient(
         to right,
        var(--od-cream) 0%,
        var(--od-cream) 50%,
        var(--od-peach) 50%,
       var(--od-peach) 100%
    );
}

@media only screen and (max-width: 767px) {
    .bg-gradient-peach-cream, .reverse.bg-gradient-peach-cream{
        background:var(--od-peach);
    }
}

.bg-gradient-lilac-cream{
    background: linear-gradient(
         to right,
        var(--od-lilac) 0%,
        var(--od-lilac) 50%,
        var(--od-cream) 50%,
       var(--od-cream) 100%
    );
}
.reverse.bg-gradient-lilac-cream{
    background: linear-gradient(
         to right,
        var(--od-cream) 0%,
        var(--od-cream) 50%,
        var(--od-lilac) 50%,
       var(--od-lilac) 100%
    );
}

@media only screen and (max-width: 767px) {
    .bg-gradient-lilac-cream, .reverse.bg-gradient-lilac-cream{
        background:var(--od-lilac);
    }
}

.bg-gradient-sky-cream{
    background: linear-gradient(
         to right,
        var(--od-sky) 0%,
        var(--od-sky) 50%,
        var(--od-cream) 50%,
       var(--od-cream) 100%
    );
}
.reverse.bg-gradient-sky-cream{
    background: linear-gradient(
         to right,
        var(--od-cream) 0%,
        var(--od-cream) 50%,
        var(--od-sky) 50%,
       var(--od-sky) 100%
    );
}

@media only screen and (max-width: 767px) {
    .bg-gradient-sky-cream, .reverse.bg-gradient-sky-cream{
        background:var(--od-sky);
    }
}

.bg-gradient-cream-peach{
    background: linear-gradient(
         to right,
        var(--od-cream) 0%,
        var(--od-cream) 50%,
        var(--od-peach) 50%,
       var(--od-peach) 100%
    );
}

@media only screen and (max-width: 767px) {
    .bg-gradient-cream-peach{
        background:var(--od-peach);
    }
}
.bg-navy{
    background-color: var(--od-navy);
}

.bg-yellow{
    background-color: var(--od-yellow);
}

.bg-lilac{
    background-color: var(--od-lilac);
}

.bg-cream{
    background-color: var(--od-cream);
}

.bg-sky{
    background-color: var(--od-sky);
}

.bg-peach{
    background-color: var(--od-peach);
}

.bg-charcoal{
    background-color: var(--od-charcoal);
}

/*

a.bg-navy{
    color: white !important;
}

*/
.footer-info { font-family: 'founders-grotesk';}

.bg-navy p{
    color: white;
}

.bg-yellow p,
.bg-lilac p,
.bg-sky p, 
.bg-peach p, 
.bg-charcoal p{
    color: var(--od-navy)
}

/*
    Add your custom styles here
*/
.wp-block-group {
    position: relative;
}
.is-layout-flow > *{
    margin-top: 0 !important;
}
.padding-global {
    padding: 100px 0rem;
}
.padding-large {
    padding: 100px 0rem;
}

.has-global-padding{
    padding-left: 0px;
    padding-right: 0px;
}

@media only screen and (max-width: 1400px) {
    header .has-global-padding,
    footer .has-global-padding{
        padding-left: 40px;
        padding-right: 40px;
    }

    .padding-global {
        padding: 40px 40px;
    }
    .padding-large {
        padding: 40px 40px;
    }

    .col.right .padding-global{
        padding-right: 0;
    }

    .col.right .half-container{
        padding-right: 40px;
    }

    .wp-block-media-text > .wp-block-media-text__content{
        padding: 0 40px !important;
    }

    .padding-mobile{
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}


@media only screen and (max-width: 768px) {
    header .has-global-padding,
    footer .has-global-padding{
        padding-left: 20px;
        padding-right: 20px;
    }

    .padding-global {
        padding: 20px 20px;
    }
    .padding-large {
        padding: 20px 20px;
    }

    .col.right .padding-global{
        padding-right: 0;
    }

    .col.right .half-container{
        padding-right: 20px;
    }

    .wp-block-media-text > .wp-block-media-text__content{
        padding: 0 20px !important;
    }

    .padding-mobile{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .search-box{ display: none;}
    /* header .is-layout-flex{ flex-wrap: nowrap !important;} */
}

.container { 
    /*max-width: 85rem;*/
    margin: 0 auto;
}

.is-layout-constrained > .alignwide{
    max-width: 85rem;
}

.half-container {
    max-width: 42.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    height: 100%;
   
}
.content-wrap{
    padding-left: 2rem;
    padding-right: 2rem;
}

.reverse .content-wrap{
    padding-left: 0 !important;
    padding-right: 2rem;
}

@media only screen and (max-width: 768px) {

    .content-wrap{
        padding-left: 0;
        padding-right: 0;
    }
    
    .reverse .content-wrap{
        padding-left: 0 !important;
        padding-right: 0;
    }
}

.relative{
    position: relative;
}

p{
    font-size: 1.25rem;
}


h1{
    font-size: 3.5rem;
    margin-top: 0;
    font-family: 'Monigue';
    line-height: 1.5;
}
.main-block h1{
    margin-top: 0;
    font-size: 5rem;
}

.pillar h1{
    font-size: 3.5rem;
    margin-top: 0;
    /* font-family: 'founders-grotesk'; */
}

h2{
    font-size: 3rem;
    margin-top: 0;
    font-family: 'Monigue';
    line-height: 1.5;
}

h3{
    font-size: 2rem;
    margin: 2rem auto;
    font-family: 'Monigue';
    line-height: 1.5;
}

h2.founders{
    font-size: 3rem;
    margin-top: 0;
    font-family: 'founders-grotesk';
}

h3.founders{
    font-size: 2.5rem;
    margin: 2rem auto;
    font-family: 'founders-grotesk';
}

.start-today {
    position: relative;
}
.start-today .content-wrap p{
    color: var(--od-navy);
}
.overlay-blue {
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 200;
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
}
.block-two-columns{
    position: relative;
    overflow: clip;
}

.rsb-banner{
    min-height: 320px;
    position: relative;
    overflow: inherit;
    background-color: var(--od-cream);
}

.rsb-content{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    max-width: 820px;
    text-align: center;
    margin: auto;
    z-index: 100;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .rsb-content{
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-block h1{
        margin-top: 0;
        font-size: 4rem;
        line-height: 1.15;
    }

    .pillar h1{
        font-size: 3rem;
        line-height: 1.15;
    }
}
.two-cols-sub{
    max-width: 470px;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    color: var(--od-navy);
}

.arrow-link{ 
    position: absolute;
    z-index: 4;
    right: 0;
    top: 45%;
}
.arrow-link:hover svg{
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.3));
}

.overlay-yellow-wave, .overlay-purple-wave {
    position: absolute;
    width: 100%;
    z-index: 200;
    bottom:-10px;
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
}

.overlay-purple-wave {
    
    z-index: 50;
    
}

.overlay-yellow-wave.rsb{
    bottom:-63px;
}



.overlay-yellow-wave img, .overlay-purple-wave img{

    width: 50%;
    max-width: 860px;
}

.overlay-blue img{
    
    max-width: 1920px;
    width: 100%;
    margin-bottom: 0;
    bottom: 0;
    position: absolute;
}

.one-day-image{
    position: relative;
    z-index: 9;
    width: 100%;
    margin-bottom: -7px;
    height: 100%;
    object-fit: cover;
    /* max-width: 600px; */
}
.full-image{
    margin-bottom: -7px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.text-right{
    text-align: right;  
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}


.img-overlap img{
    width: 110%;
    max-width: 110%;
}

.reverse .img-overlap{
    margin-left:-10%;
}

@media only screen and (max-width: 767px) {
    .img-overlap img{
        width: 100%;
        max-width: 100%;
    }
}

div.circle-img{
    height: 130px;
    width: 130px;
    border-radius: 50%;
    position: absolute;
    top: 120px;
    left: 0;
    background-color: var(--od-sky);
}

.p-intro{
    font-size: 24px;
    line-height: 34px;
}

.od-grid{
    display: flex; 
    align-items: stretch;
    justify-content: space-between;   
    margin: 0 auto;
    max-width: 85rem;
    align-items: stretch;
    height: 100% !important;
}
.od-grid.center{
    align-items: center;
}

.od-grid.grid-stretch{
    align-items: stretch;
}




.col.left{
    position: relative;
}

.circle-dot{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: inline-block;
    min-width: 100px;
    position: absolute;
    z-index: 999;
}

.top-dot { 
    top: 0;
    left: 65%;
}

.left-dot {
    top: 65%;
    left: 0;
}

.right-dot {
    top: 65%;
    right: 0;
}

.bottom-dot {
    left: 15%;
    bottom: 0;
}

.od-grid.reverse,
.reverse .od-grid {
    flex-direction: row-reverse;
}
 
.col {
    flex: 0 0 50%;
    position: relative;
}

.col-40 {
    flex: 0 0 50%;
    position: relative;
}
.col-60 {
    
    position: relative;
    padding: 60px;
}


@media only screen and (max-width: 1100px) {
    .col-60 {
    
        
        padding: 40px 20px;
    }
}

.od-btn, .wp-block-buttons a {
    padding: 0.125rem 2rem 0.375rem;
    border-radius: 2rem;
    font-size: 1.5rem;
    color: white;
    text-transform: lowercase;
    text-decoration: none;    
    
    display: inline-block;

}

.wp-block-buttons a{
    font-weight: 400 !important;
    font-size: 1.5rem !important;
}
.wp-block-buttons:hover a,
.wp-block-buttons a:hover,
.od-btn:hover {
    opacity: 0.5;
}

.text-navy{
    color: var(--od-navy);
}

.text-yellow{
    color: var(--od-yellow);
}

.text-lilac{
    color: var(--od-lilac);
}

.text-cream{
    color: var(--od-cream);
}

.text-sky{
    color: var(--od-sky);
}

.text-peach{
    color: var(--od-peach);
}

.text-charcoal{
    color: var(--od-charcoal);
}

.text-white{
    color: white !important;
}


.pillar .od-grid{
    align-items: center;
}
.pillar{
    padding-top: 60px;
    padding-bottom: 60px;
    
}
.img-holder{ height: 100%; }
.pillar .img-holder{ padding: 2.5rem 2.5rem 2.5rem 0; }

.od-small, .pillar .od-btn {
    font-size: 1.5rem;
    /*color: var(--od-navy);*/
    max-width: 250px;
    /*width: 100%;*/
    padding: 0.375rem 2rem 0.375rem;
    text-transform: lowercase;
    text-align: center;
    margin-bottom: 20px;
    line-height: 2rem;
}

@media only screen and (max-width: 1100px) {
    .od-small, .pillar .od-btn {
    margin-bottom: 20px;
    }

    .pillar{
        padding-top: 30px;
        padding-bottom: 30px;
        
    }
}

.pillar .od-btn {
    max-width: none;
    width: auto;
}

.od-small svg {
    margin-right: 5px;
    height: 14px;
}

div.block-marquee {
    color: white;
    font-family: helvetica;
    text-transform: uppercase;
    overflow: hidden;
}

div.mar {
    display:flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}


.news-message {
    display : flex;
    flex-shrink: 0;
    padding: 0 2rem;
    align-items: center;
    justify-content: space-between;
    animation: slide-left 20s linear infinite;
    text-transform: lowercase;
}

div.mar h3{
    font-size: 2.25em;
    color: white;
}
        @keyframes slide-left {
            from {
                -webkit-transform: translateX(0);
                        transform: translateX(0);
            }
            to {
                -webkit-transform: translateX(-100%);
                        transform: translateX(-100%);
            }
        }

/* */
.icon-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
    margin-bottom: 20px;
}







.wpcf7-form-control.wpcf7-submit:hover,.swpm-submit:hover, .swpm-login-form-submit:hover, .swpm-pw-reset-submit:hover {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}


.swpm-join-us-link{ display: none;}


@media only screen and (max-width: 767px) {
    .od-grid{
        display: block; 
        
    }
}

.block-section {
    padding: 40px 0;
}

.block-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
    justify-content: space-between;   
    margin: 0 auto;
    max-width: 80rem;
    align-items: start;
}

@media only screen and (max-width: 767px) {
    .block-steps {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 15px;
    }

    .block-section {
        padding: 20px 0;
    }
    
    
}

.block-step {
    padding: 25px;
    max-width: 390px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 10px;
    cursor:pointer;
}
.block-step:hover{
    opacity:0.7;
}

.block-step img {
    width: 100%;
    border-radius: 10px;
}

.block-step h3{
    text-align: center;
    font-family: 'founders-grotesk';
    text-transform: none;
    font-size: 20px;
    font-weight: 700;
    
    margin: 10px auto 0;
    padding-bottom: 0;
    line-height: 24px;
}

.block-step p{
    margin: 0 auto 10px;
    color: var(--od-navy);
    line-height: 1.2;
}

.block-step.bg-lilac h3, .block-step.bg-lilac p{
    color: white;
}

.cta-type-1{
    display: block;
    
    font-size: 30px;
    font-weight: 300;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    text-decoration: none;
}
.cta-type-1 p,.cta-type-2 p{ margin: 0 auto;}

.square-img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 336/281;
  }
.slide-image{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 8px;
}
/*
.cta-type-1.text-navy:hover span, .cta-type-1.text-navy:hover svg, .cta-type-1.text-navy:hover path{
    color: white !important;
    fill: white !important;
}

.cta-type-1.text-white:hover span, .cta-type-1.text-white:hover svg, .cta-type-1.text-white:hover path{
    color: #142591;
    fill: #142591;
}
*/

.gform_wrapper{

    max-width: 800px !important;
}
.ginput_container input:not([type="checkbox"]), .swpm-form-field, .swpm-text-field, #wp-block-search__input-1, .swpm-text{ 
    background-color: #B8D9EB !important; 
    color: #142591 !important; 
    border-color: #B8D9EB !important;
    padding: 0.25rem 0.75rem !important;
    font-size: 18px !important;
    border-radius: 15px !important;
    height: 35px !important;
    box-shadow: none !important;
    border:none;
    box-sizing: border-box;
    margin-bottom: 16px;
    width: 100%;
}

#wp-block-search__input-1{
    height: auto !important;
}

.swpm-text-field{
    width: 100% !important;
}

.swpm-legend,
.swpm-fb-membership-level{
    display: none;
}

.swpm-desc{
    display: block !important;
}

.swpm-fieldset{
    border: none !important;
}

.swpm-desc{
    margin-bottom: 10px;
    color: #142591 !important; 
}

.gform-field-label, .gfield_description{
    color: var(--od-navy) !important;
}

.ginput_container input::placeholder,
.ginput_container textarea::placeholder, 
.swpm-form-field::placeholder {
    color: #4350a7;
    opacity: 0.5;
  }
  input.swpm-text::placeholder{
      color: #4350a7;
      opacity: 0.5;
      font-size: 16px !important;
    }
.swpm-verification{
    margin-top: -60px;
}
#registration-3 .swpm-span p{
    margin: -20px 0 20px;
    font-size: 14px !important;
}

#registration-4 .swpm-span p, #item-swpm-27{
    display: none !important;
}

.ginput_container textarea{ 
    background-color: #B8D9EB !important; 
    color: #142591 !important; 
    border-color: #B8D9EB !important; 
    padding: 1rem 0.75rem !important;
    font-size: 18px !important; 
    border-radius: 15px !important;
    box-shadow: none !important;
}

.gform_button, .swpm-submit, .swpm-login-form-submit, .wp-block-search__button, .swpm-pw-reset-submit {
    background-color: var(--od-navy) !important;
    color: white !important;
    font-size: 24px !important;
    text-transform: lowercase !important;
    border-radius: 35px !important;
    padding: 0.125rem 2rem 0.375rem !important;
   line-height: 32px !important;
    cursor: pointer !important;
    border: none !important;
    font-weight: 300 !important;
    box-shadow: none !important;
}

.swpm-pw-reset-submit-button{
    text-align: center;
    margin: 15px auto;
}

.swpm-submit, .swpm-login-form-submit{
    background-color: var(--od-navy);
    padding:0.125rem 3rem 0.375rem;
}

.swpm-label,
.swpm-form-label-wrap label{
    color: var(--od-navy) !important;
}

label.swpm-choice{
    color: var(--od-navy) !important;
}

label.swpm-choice a{
    text-decoration: underline !important;
    color: var(--od-navy) !important;
}

/* membership forms */
.swpm-membership-level-row{ display: none !important;}

#page-not-found{
    font-family: 'founders-grotesk';
    color: var(--od-navy) !important;
}
.error404 #wp--skip-link--target p{
    color: var(--od-navy) !important;
}
/*.swpm-form .swpm-form-row{
    margin-bottom: 0.8rem;
    width: 45%;
    display: inline-block;
    margin-right: 20px;
}*/

.swpm-remember-me,
.swpm-login-submit,
.swpm-forgot-pass-link{
    text-align: center;
}

.mega-description-group .mega-menu-title{
    color: var(--od-navy);
    text-transform: lowercase;
    display: flex !important;
    justify-content: space-between !important;
    font-size: 24px !important;
    vertical-align: middle;
    font-size: 30px !important;
    align-items: center !important;
    font-weight: 300 !important;
}
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    color: var(--od-navy);
    margin-bottom: 20px;
}
a.mega-menu-link{
    color: var(--od-navy) !important;
}
.mega-menu-link svg{
    top: 7px;
  position: relative;
}
.mega-menu-flyout.profile .mega-sub-menu .mega-menu-link{
    background-color: var(--od-cream) !important;
    padding: 10px 5px;
    text-align: center !important;
    font-size: 16px !important;
}

@media only screen and (max-width: 767px) {
    .mega-menu-flyout.profile .mega-sub-menu .mega-menu-link{
       
        text-align: left !important;
        font-size: 16px !important;
    }

}
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item{
    padding: 5px 15px !important;
}
#mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item{
    padding: 5px 15px !important;
}


@media only screen and (max-width: 767px) {
    .mobile-hidden{
        display: none;
    }
    #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle + #mega-menu-max_mega_menu_1,
    #mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle + #mega-menu-max_mega_menu_2{
        padding:20px;
        top: 65px;
    }
    #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item,
    #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item{

        padding: 0;
    }
    .menu-heading{
        margin-top: 0 !important;
    }
    li.mega-main-menu.mega-menu-item > ul.mega-sub-menu{
        background-size: 70% !important;
        min-height: 170px !important;
        
    }

    /*footer*/
    footer .wp-container-core-group-is-layout-7, footer .wp-container-core-group-is-layout-8, footer .wp-container-core-group-is-layout-11{
        justify-content: flex-start !important
    }

    .wp-block-spacer{
        height: 20px !important;
    }
    .has-global-padding {
        padding-left: 10px; 
        padding-right: 10px; 
    }

    li.mega-main-menu.mega-menu-item > ul.mega-sub-menu{
        background-image: none !important;
    }
}

/* accordion */
#wpsm_accordion_503 .wpsm_panel, #wpsm_accordion_503{
    border: none !important;
}
.ac_title_class{
   
    border-bottom: #142591 solid 1px !important;
}

/* swiper */
.swiper-nav{
    position: relative;
    min-height: 60px;
}
.swiper-nav.full-slide{
    position: absolute;width:30%;z-index: 9999;bottom: 20px;left: 40px;
}
/* slider override */
.swiper-wrapper{ max-width: 600px; align-items: stretch !important;}
.swiper-wrapper .swiper-slide{ height: auto !important;}
.swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    z-index: 200 !important;
}
.swiper-button-prev:after, .swiper-button-next:after {
    display: none !important;
}


.swiper-button-prev {
    left: 20px !important;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-pagination-bullet-active{
    background-color: var(--od-navy) !important;
    color: var(--od-navy);
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    top: 25% !important;
}
@media only screen and (max-width: 1100px) {


    .swiper-wrapper{ max-width: 480px;}

}
#search-box-mobile{
    display: none;
}
@media only screen and (max-width: 767px) {
    #search-box-mobile, #search-box-mobile .search-box{
        display: block;
    }
    #search-box-mobile .search-bar__wrapper .search-input__wrapper_active{
        width: 100% !important;
    }

    #search-box-mobile .search-bar__wrapper{
        width: 96% !important;
    }
    .swiper-button-next, .swiper-button-prev {
       
        margin-top: 0 !important;
        top: 25% !important;
    }  
    
    .swiper-button-prev {
        left: 50px !important;
    }
    
    .swiper-button-next {
        right: 50px !important;
    }

    .wp-container-core-group-is-layout-0c0c9e10{
        flex-wrap: nowrap !important;
    }
    header .wp-block-buttons a{
        border-radius: 8px;
        padding: 5px 8px;
        font-size: 16px !important;
    }

    .wp-container-core-group-is-layout-5924e470{
        padding: 20px 0;
    }

    .swpm-login-widget-form{
        padding-left: 15px;
        padding-right: 15px;
    }
    .ginput_container input:not([type="checkbox"]), .swpm-form-field, .swpm-text-field, #wp-block-search__input-1{
        box-sizing: border-box !important;
    }

    #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle.mega-menu-open + #mega-menu-max_mega_menu_1 {
        
        display: flex !important;
        flex-direction: column !important;
      }

    .mobile-padded{
        padding-left: 15px;
        padding-right: 15px;
    }

    :root :where(.wp-block-list){
        padding-left: 25px !important;
    }

    ol li::marker {
        font-size: 2em !important;
      }

      .swiper-nav.full-slide{
        width: 100% !important;
        left: 0 !important;
      }


    .fsform-container{
        padding: 15px !important;
    }

    .swiper-slide .od-grid{
        display: flex;
        flex-direction: column-reverse;
        
    }

    .swiper-slide .od-grid .col-60 .padding-global{
        padding-bottom: 40px;
    }

    .page-id-92 .overlay-blue{
        display: none;
    }

    .page-id-92 .img-holder, .page-id-92 .img-holder img{
        max-height: 300px;
    }

}
/* slider override */
ol{
    padding-left: 40px;
    font-size: 1.25rem;
}

ol li::marker {
    
    font-size: 3em;
  }

.ac_title_class, .wpsm_panel-body{
    font-family: 'founders-grotesk' !important;
}


.row-no-gap{ 
    gap: 0 !important;
}

.icon-profile{
    margin-top: 10px !important;
}
/* search */

.search-bar__wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: var(--od-navy);
  padding: 0.5rem 0.3rem;
  border-radius: 20px;
  
}
.search-bar__wrapper input {
  background-color: transparent;
  border: none;
  outline: none;
  color: white;
  font-family: "founders-grotesk", sans-serif;
  padding-left: 0.7rem;
  font-size: 1rem;
  line-height: 1;
}

.search-bar__wrapper .search-input__wrapper {
  opacity: 0;
  width: 0;
  height: 0;
  padding-left: 0.7rem;
  transition: all 0.5s ease-in-out;
  margin-top: -12px;
}
.search-bar__wrapper .search-input__wrapper_active {
    width: 180px !important;
    height: 23px !important;
    opacity: 1 !important;
    margin-top: 0px;
  }
.search-bar__wrapper .search-input__wrapper::after {
  display: inline-block;
  content: "";
  margin-bottom: 10px;
  margin-left: 0.7rem;
  background-color: orange;
  height: 2px;
  width: 0;
  transition: width 0.5s ease-in-out;
}
.search-bar__wrapper .search-input__wrapper:focus::after {
  width: calc(180px - 1.4rem);
}
.search-bar__wrapper span {
  padding: 0.1rem 0.5rem;
  font-size: 1.4rem;
  color: white;
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  cursor: pointer;
  height: 23px;
  width: 23px;
  padding: 0 0.5rem;
  z-index: 88;
}

button.search-icon{
    padding: 0 !important;
    border: none;
    background-color: transparent !important;
}

@keyframes showing {
  0% {
    width: 0;
    display: none;
  }
  100% {
    width: 100%;
    display: block;
  }
}

body.search-results .wp-block-query .is-layout-flex{
    display: block;
}

body.search-results .wp-block-query .is-layout-flex .wp-block-template-part{
    display: none;
}

body.search-results .wp-block-query .is-layout-flex .wp-block-post-title,
body.search-results .wp-block-query .is-layout-flex .wp-block-post-title a,
.wp-block-query-title{
    color: #142591;
}


/**/
.yoast-breadcrumbs, .yoast-breadcrumbs a{
    padding: 16px 0;
    text-transform: lowercase;
    color: var(--od-navy);
    text-decoration: none;
}
.yoast-breadcrumbs a:hover{
    text-decoration: underline;
}
span.sep{
    padding: 0 10px;
}
.home .breadcrumb{ display: none;}


/* formstack */
.fsForm{
    max-width: 900px !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.fsPage p a, .fsPage ul li a, .fsOptionLabel a{ 
    color: var(--od-navy);
    text-decoration: underline !important;
}
.fsSectionHeader{
    margin-bottom: 0 !important;
}
.fsSectionHeading{
    font-size: 3rem !important;
}
.fsBody p, .fsBody ul li, label.fsOptionLabel {
    font-family: 'founders-grotesk' !important;
    font-size: 1.25rem !important;
}
.fsPagination{
    margin-top: 0 !important;
}
.fsSubFieldGroup label{
    margin-top: 10px;
}
.StyledProgressIndicatorWrapper-sc-fo67kc-0{
    display: none !important;
}
.wp-block-post-title :where(a){
    color: var(--od-navy) !important;
}
.search-results .wp-block-post{
    margin-bottom: 40px;
    color: var(--od-navy) !important;
}
.search-results h2.wp-block-post-title{
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'founders-grotesk' !important;
    text-transform: lowercase;
    color: var(--od-navy) !important;
}

.post-password-form{
    max-width: 1100px;
    margin: 0 auto;
}

.swpm-form-builder-error{
    position: relative;
    top: -15px;
}

.swpm-login-error-msg{ 
    text-align: center; 
    color: red !important; border: 1px solid red; padding: 8px 0; width: 100%; margin-top: 10px; 
    background-color: rgba(255,255,255,0.4);
    display: block;
} 

.swpm-form-builder-error{
    color: red !important;
}

.swpm-yellow-box p:first-of-type{
    display: none;
}
.swpm-yellow-box p{
    text-align: center;
}

ul.swpm-section{
    padding-left: 0;
}

p#form_success{
    text-align: center;
}
.login-first{
    text-align: center;
    padding: 60px 0;
    font-size: 30px;
    color: var(--od-navy);
    
}
.login-first a{
    color: var(--od-navy);
    text-decoration: underline !important;
}

.swpm-before-login-submit-section{
    margin: 20px auto !important;
    max-width: 305px !important; 
}

wp.wp-block-query ul.wp-block-post-template li{
    list-style-type: decimal;
}

wp.wp-block-query ul.wp-block-post-template li a{
    text-decoration: underline !important;
}

.StyledLabel-sc-vn5hkq-0 a{
    color: var(--od-navy) !important;
}

.with-gap li{
    margin-bottom: 25px;
}

.wp-block-social-links{
    display: none !important;
}

.wp-block-group.form-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 85rem;
  margin: auto;
  gap: 2rem;
}
.wp-block-group.form-results .wp-block-group{
  
  
  margin-top: 0 !important;
}


.hidden{
    display: none;
}



@media print {
  header,footer {
    display: none;
  }
}


.swpm-fb-stay-informed-about-oneday{ margin-top: 20px !important;}
.swpm-fb-stay-informed-about-oneday label.swpm-desc, .swpm-fb-terms-and-conditions  label.swpm-desc{ display: none !important;}


.content-wrap a:where(:not(.od-btn)){
    color: var(--od-navy) !important;
}