/* main menu */

/* mobile toggler */
body #header-outer #top .slide-out-widget-area-toggle[data-custom-color="true"] a:before {
    background-color: var(--nectar-accent-color);
}

@media(min-width:1000px) {
    #header-outer nav .sf-menu li ul.sub-menu {
        backdrop-filter: blur(25px)!important;
        -webkit-backdrop-filter: blur(25px)!important;
        background-color: rgba(255,255,255,.7) !important;
        border-radius: 10px !important;
    }

     #header-outer nav .sf-menu li ul.sub-menu .menu-title-text {
        font-size: clamp(14px, 1.4vw, 18px);
        line-height: 1.2;
     }
}

/* home hero */
._td_claim_sub h1 {
    font-weight: 700;
}

._td_hero_person .wpb_text_column h3 {
    font-weight: 700;
    font-size: 1.4rem;
}
._td_hero_person h3 >a {
    text-decoration:none;
}
._td_claim_main {
    font-weight: 700;
}

@media(max-width:999px) {
    ._td_claim_main, ._td_claim_sub {
        padding-inline: 20px;
    }

    ._td_claim_sub {
        margin-bottom: 30px!important;
    }

    ._td_hero_person {
        display: none;
    }
}

@media(min-width:1000px) {
    ._td_hero_claim {
        flex-grow: 10;
        display: flex;
    }
    ._td_hero_claim >* {
        flex-grow: 2;
    }
    ._td_hero_person {
        flex-grow: 10;
    }
    ._td_hero_person:nth-child(1) {
        padding-left: 8%!important;
    }
    ._td_hero_person:nth-child(3) {
        padding-right: 8%!important;
    }
}

/* section headings */
._td_home_section_heading {
    font-weight: 700;
}

/* home more btn */
@media(min-width:1000px) {

    ._td_more_btn--right >* {
        display: flex;
        justify-content: flex-end;
    }
    ._td_more_btn--right .wpb_wrapper >div {
        margin-bottom: 0;
    }
    ._td_more_btn--right .nectar-responsive-text {
        margin-bottom: 10px!important;
    }
}
/* home ssi logo */
img.home_ssi_logo {
    max-width: 200px!important;
}

/* ssi events calendar */
iframe#ssiEV {
    z-index: 1;
}

/* home blog list */
._td_home_blog_list .wpb_wrapper>div {
    margin-bottom: 0;
    padding-bottom: 0;
}
._td_home_blog_list .meta-category {
    display: none;
}
._td_home_blog_list h3 {
    font-size: 1.4rem!important;
}

/* btns overrides */
._td_more_btn .arrow-circle-animation-arrow-wrap {
    background-color: var(--nectar-accent-color)!important;
}

/* loader */
.nautica-loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 200px;
  transform: translate(-50%, -50%);
}
.nautica-loader::after,
.nautica-loader::before {
  content: '';  
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nectar-accent-color);
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}
.nautica-loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* footer */
._td_footer_name h2 {
    font-weight: 700;
    transform: translateY(20%);
}

/* fluent forms styling */
/* --- Input fields, textareas, select --- */
form.fluent_form_1 .ff-el-form-control {
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--nectar-font-color);
  background-color: transparent;
  border: 1px solid var(--nectar-accent-color);
  border-radius: 6px;
}

/* --- Input focus state --- */
form.fluent_form_1 .ff-el-form-control:focus {
  border-color: var(--nectar-accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.2);
}

/* --- Field labels --- */
form.fluent_form_1 .ff-el-input--label {
  font-size: 14px;
  font-weight: 600;
  color: var(--nectar-font-color);
  margin-bottom: 5px;
}

/* --- Helper/description text below fields --- */
form.fluent_form_1 .ff-el-help-message {
  font-size: 12px;
  color: var(--nectar-font-color);
}

/* --- Submit button --- */
form.fluent_form_1 .ff-btn-submit {
  background-color: var(--nectar-font-color);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* --- Submit button hover --- */
form.fluent_form_1 .ff-btn-submit:hover {
  background-color: var(--nectar-font-color);
  color: #ffffff;
}

/* --- Checkbox & radio labels --- */
form.fluent_form_1 .ff-el-form-check-label {
  font-size: 14px;
  color: var(--nectar-font-color);
}
form.fluent_form_1 .ff-el-input--label {
    margin-bottom: 20px;
}
form.fluent_form_1 .ff-el-form-check label {
    font-weight: 400!important;
}
form.fluent_form_1 button.ff-btn-submit {
    padding: 10px 30px;
    font-size: min(16px, max(14px, 14px));
    color: var(--nectar-font-color);
    border-radius: 100px !important;
    background-color: #fff;
    border: 1px solid var(--nectar-accent-color);
}

/* page overrides */
.row.page-header-no-bg .section-title h1 span {
    display: block;
    padding-left: 0;
    line-height: 1.4;
}