@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* All */
:root {
    --primary: #32499e;
    --secondary: #FF4900;
    --black: black;
    --white: white;
    --error: #B12028;
    --hov-primary: #213C7F;
    --hov-secondary: #C23903;
    --font-size: 14px;
    --font-family: 'Montserrat', sans-serif;
}
* {
    outline: none;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
body,
html {
    overflow-x: hidden;
}
body {
    font-family: var(--font-family);
    color: var(--primary);
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 1.25;
    position: relative;
    text-rendering: optimizeLegibility;
}
a,
a:hover {
    color: inherit;
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
}
.btn {
    border-radius: 0;
    font-size: 1em;
}
.btn-b-width-2 {
    border-width: 2px;
}
.overflow-hidden {
    overflow: hidden;
}
.text-email,
.email-text {
    height: 0.96em;
}
.loader {
    position: relative;
}
.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url('/uploads/images/svg/loader.svg') 50% 50% no-repeat rgba(255, 255, 255, 0.8);
    visibility: visible;
    z-index: 5000;
    background-size: 40px;
}
.arrow {
    border-top: 2px solid;
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
}
.arrow.left {
    border-left: 2px solid;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.arrow.right {
    border-right: 2px solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#scrollUp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    line-height: 45px;
    opacity: 0.8;
    color: var(--black);
    display: none !important;
}
#scrollUp:before {
    content: "\f077";
    display: inline-block;
    vertical-align: middle;
    font: 20px Icons;
}
#error-page {
    background-image: url(../images/404_bg.png);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100vh;
    background-color: #282828;
    box-shadow: inset 0 10px 0 0 #000, inset 0 -10px 0 0 #000;
    position: relative;
}
#error-page .logo {
    padding-top: 2em;
}
#error-page h1 {
    padding-top: 0.5em;
    color: #fff;
    font-size: 5em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}
#error-page h3 {
    color: #7f7f7f;
    font-size: 1.5em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}
#error-page h3.primary {
    margin-top: 2em;
}
#error-page #but.button {
    font-size: 2em;
    border-radius: 500em;
}
#error-page #but.button i.icon {
    font-size: 4em;
}
.lazyload {
    display: block;
    min-height: 1px;
}
.lazyload.custom-loader {
    max-width: 50px;
    max-height: 50px;
    left: calc(50% - 25px);
}
/*Swiper Carousel*/
.swiper {
    overflow: visible;
}
.swiper.overflow-hidden {
    overflow: hidden;
}
.swiper:not(.without-pseudos)::before,
.swiper:not(.without-pseudos)::after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    width: 10000px;
    background-color: var(--white);
    z-index: 2;
}
.swiper::before {
    left: -10000px;
}
.swiper::after {
    right: -10000px;
}
.swiper-slide.auto {
    width: auto;
}
.swiper-arrow {
    width: 20px;
    height: 20px;
    margin: 0;
    font-size: 12px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.swiper-arrow::after{
    display: none;
}
.swiper-arrow i {
    width: 1em;
    height: 1em;
    border-top: 2px solid;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.swiper-button-prev i {
    border-left: 2px solid;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 0.2em;
}
.swiper-button-next i {
    border-right: 2px solid;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 0.2em;
}
.swiper-arrow i:hover {
    color: var(--secondary);
}
.swiper-scrollbar {
    background: rgba(24,50,124,.1);
}
.swiper-scrollbar-drag {
    background: var(--secondary);
    height: 100%;
    top: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.swiper-scrollbar-drag:hover {
    background: var(--hov-primary);
    height: 10px;
    top: -3px;
}
/*Header*/
header {
    position: relative;
    z-index: 100;
}
.header-container {
    border-bottom: 2px solid rgba(25,50,124,0.2);
}
.header-languages {
    position: relative;
}
.header-languages-toggle {
    border: 1px solid rgba(25,50,124,0.2);
    padding: 2px 4px;
    cursor: pointer;
}
.header-languages-toggle svg {
    fill: rgba(25,50,124,0.5);
}
.header-languages:hover .header-languages-toggle,
.header-languages.active .header-languages-toggle {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-languages:hover .header-languages-toggle svg,
.header-languages.active .header-languages-toggle svg {
    fill: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-languages-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hov-primary);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--white);
}
.header-languages.active .header-languages-dropdown {
    opacity: 1;
    pointer-events: all;
}
.header-languages-dropdown .item {
    border-bottom: 1px solid;
    display: block;
    padding: 2px 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-languages-dropdown a.item:hover {
    background-color: var(--secondary);
}
.menu-overlay {
    position: fixed;
    background-color: rgba(255,255,255,0.8);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: none;
}
body.white-header header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
header,
header a,
.header-container {
    -webkit-transition: all 0s ease;
    transition: all 0s ease;
}
body.menu-opened header,
body.menu-opened header a,
body.menu-opened .header-container {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
body.menu-opened header {
    background-color: var(--white);
}
body.white-header:not(.menu-opened) header {
    color: var(--white);
}
body.white-header:not(.menu-opened) header .header-container {
    border-bottom-color: rgba(255,255,255,0.2);
}
body.white-header:not(.menu-opened) header .logo {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
body.white-header:not(.menu-opened) header .header-languages-toggle {
    border-color: rgba(255, 255, 255, 0.5);
}
body.white-header:not(.menu-opened) header .header-languages-toggle svg {
    fill: rgba(255,255,255,0.7);
}
body.white-header:not(.menu-opened) header .header-languages:hover .header-languages-toggle,
body.white-header:not(.menu-opened) header .header-languages.active .header-languages-toggle {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary);
}
body.white-header:not(.menu-opened) header .header-languages:hover .header-languages-toggle svg,
body.white-header:not(.menu-opened) header .header-languages.active .header-languages-toggle svg {
    fill: var(--primary);
}
body.menu-opened .menu-overlay {
    display: block;
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -ms-transform: translateY(calc(-100% - 30px));
    transform: translateY(calc(-100% - 30px));
    opacity: 0;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: 1001;
    border-bottom: 2px solid rgba(25,50,124,0.2);
}
.fixed-header.header-down {
    pointer-events: all;
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.megamenu-opened .fixed-header {
    z-index: 999;
}
/*Header Menu*/
.header-menu {
    list-style: none;
    padding: 0;
    margin: 0 -20px 0 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.header-menu .nav-item > a,
.header-menu .nav-item > .link-toggle-item {
    display: inline-block;
    padding: 15px 20px;
    cursor: pointer;
}
body:not(.is-mobile) .header-menu .nav-item:hover > a,
body:not(.is-mobile) .header-menu .nav-item:hover > .link-toggle-item,
body.is-mobile .header-menu .nav-item.open > a,
body.is-mobile .header-menu .nav-item.open > .link-toggle-item {
    background-color: var(--primary);
    color: var(--white);
}
.header-menu .nav-item.with-submenu > a::after,
.header-menu .nav-item.with-submenu > .link-toggle-item::after {
    content: "";
    display: inline-block;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid;
    vertical-align: middle;
    margin-left: 4px;
}
.header-menu .menu-submenu {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 100%;
    pointer-events: none;
    background-color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}
.header-menu .menu-submenu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
}
body:not(.is-mobile) .header-menu li.nav-item:hover .menu-submenu,
body.is-mobile .header-menu li.nav-item.open .menu-submenu {
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}
header .header-menu .menu-submenu-scroll {
    overflow-x: hidden;
    overflow-y: auto;
}
.menu-res-wrap {
    background-color: var(--white);
    color: var(--primary);
    padding: 15px;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu-res-explore {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu-res-wrap:hover {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(255255,255,255,0.75);
    box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.75);
}
.menu-res-explore:hover {
    color: var(--hov-secondary) !important;
}
body.is-mobile .nav-item > a,
body:not(.is-mobile) .nav-item > .link-toggle-item {
    display: none !important;
}
/*Megamenu*/
.megamenu-toggle {
    width: 42px;
    height: 30px;
    position: relative;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}
.megamenu-toggle .icon {
    width: 42px;
    border-bottom: 2px solid var(--primary);
    position: relative;
    border-top: 2px solid var(--primary);
    height: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top,
.megamenu-toggle .icon .bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top {
    top: -10px;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
}
.megamenu-toggle .icon .bottom {
    top: 14px;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
}
.megamenu-toggle.open .icon {
    border-color: transparent !important;
}
.megamenu-toggle.open .icon .top {
    -webkit-transform: rotate(-45deg) translate(-5px, 0px);
    -moz-transform: rotate(-45deg) translate(-5px, 0px);
    -ms-transform: rotate(-45deg) translate(-5px, 0px);
    -o-transform: rotate(-45deg) translate(-5px, 0px);
    transform: rotate(-45deg) translate(-5px, 0px);
    top: -16px;
}
.megamenu-toggle.open .icon .bottom {
    -webkit-transform: rotate(45deg) translate(-4px, 2px);
    -moz-transform: rotate(45deg) translate(-4px, 2px);
    -ms-transform: rotate(45deg) translate(-4px, 2px);
    -o-transform: rotate(45deg) translate(-4px, 2px);
    transform: rotate(45deg) translate(-4px, 2px);
    top: 18px;
}
.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1002;
}
.megamenu-scroll {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.megamenu .megamenu-toggle .icon {
    width: 30px;
}
.megamenu .megamenu-toggle.open .icon .top {
    top: -12px;
}
.megamenu .megamenu-toggle.open .icon .bottom {
    top: 14px;
}
.megamenu .header-menu {
    margin: 0;
    display: block;
}
.megamenu .header-menu .nav-item > a,
.megamenu .header-menu .nav-item > .link-toggle-item {
    display: block;
    padding: 10px var(--grid);
    position: relative;
}
.megamenu .header-menu .nav-item > a::before,
.megamenu .header-menu .nav-item.with-submenu > .link-toggle-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: var(--grid);
    right: var(--grid);
    border-bottom: 1px solid;
    opacity: 0;
}
.megamenu .header-menu .nav-item.with-submenu > a::after,
.megamenu .header-menu .nav-item.with-submenu > .link-toggle-item::after {
    margin-left: 15px;
}
.megamenu .header-menu .menu-submenu {
    z-index: -1;
}
body:not(.is-mobile) .megamenu .header-menu .nav-item:hover > a::before,
body.is-mobile .megamenu .header-menu .nav-item.with-submenu.open > .link-toggle-item::before {
    opacity: 1;
}
body:not(.is-mobile) .megamenu .header-menu li.nav-item:hover .menu-submenu,
body.is-mobile .megamenu .header-menu li.nav-item.open .menu-submenu {
    position: relative;
}
body.white-header header .megamenu-toggle .icon {
    border-bottom-color: var(--white);
    border-top-color: var(--white);
}
body.white-header header .megamenu-toggle .icon .top,
body.white-header header .megamenu-toggle .icon .bottom {
    background-color: var(--white);
}
/*Header Manager*/
.header-manager-carousel,
.header-manager-carousel * {
    height: 100%;
}
.header-manager-back::after,
.member-header-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    z-index: 0;
    background: linear-gradient(to bottom, rgb(50, 73, 158) 0%,rgba(50,73,158,0.9) 45%,rgba(50,73,158,0) 100%);
}
.header-manager-image {
    position: relative;
    height: 100%;
}
.header-page-over {
    color: var(--white);
    min-height: 50vw;
    position: relative;
    z-index: 1;
}
.header-page-over #homepage-focus {
    background-color: rgba(50,73,158,0.8) !important;
}
/*Homepage - Focus*/
#homepage-focus {
    margin-top: -5px;
}
.focus-icon img {
    height: 50px;
}
.each-focus h4 {
    color: var(--secondary);
    font-size: 1em;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin: 15px 0 2px 0;
}
.each-focus h5 {
    font-size: 1em;
    margin-bottom: 0;
}
.each-focus p {
    font-size: calc(1em - 2px);
    color: rgba(255,255,255,0.6);
    display: none;
}
/*Homepage - What we do*/
.hm-what-we-do-left-s {
    position: relative;
}
.hm-what-we-do-left-s::before {
    position: absolute;
    content: "";
    border-left: 12px solid var(--primary);
    left: 0;
    top: 0;
    bottom: 0;
}
.hm-what-we-do-left-s p {
    line-height: 1.4;
    margin-bottom: 20px;
}
.hm-what-we-do-left-s p .highlighted {
    color: white;
    font-weight: 600;
    -webkit-box-shadow: inset 0px -1.2em 0px 0px rgba(24,50,124,0.4);
    -moz-box-shadow: inset 0px -1.2em 0px 0px rgba(24,50,124,0.4);
    box-shadow: inset 0px -1.2em 0px 0px rgba(24,50,124,0.4);
}
.non-prof-organ {
    position: relative;
}
.non-prof-right-icon {
    text-align: right;
}
.non-prof-right-icon img {
    max-width: 280px;
}
/*Homepage - What's Happening*/
.hm-about-lcci-img {
    position: relative;
    padding-top: 68%;
}
.hm-about-lcci-box {
    z-index: 1;
    position: relative;
}
.hm-about-lcci-container {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 0 30px;
}
.each-benefit-hm {
    text-align: center;
}
.each-benefit-hm img {
    width: 65px;
    height: 55px;
}
.each-benefit-hm p {
    color: var(--white);
    font-weight: 600;
    margin-top: 15px;
}
.hm-lcci-about p {
    font-size: 14px;
    line-height: 1.8;
}
.hm-lcci-about p:not(:last-child) {
    margin-bottom: 35px;
}
.hm-lcci-about p .orange-highlight {
    -webkit-box-shadow: inset 0px 0 0px 0px var(--secondary);
    -moz-box-shadow: inset 0px 0 0px 0px var(--secondary);
    box-shadow: inset 0px 0 0px 0px var(--secondary);
    -webkit-transition: all 1.5s ease;
    transition: all 1.5s ease;
}
.hm-lcci-about p .orange-highlight.active {
    -webkit-box-shadow: inset 0px -1.2em 0px 0px var(--secondary);
    -moz-box-shadow: inset 0px -1.2em 0px 0px var(--secondary);
    box-shadow: inset 0px -1.2em 0px 0px var(--secondary);
}
/*Homepage - Previous Events*/
.feature-past-event-wrap {
    position: relative;
    height: 100%;
}
.feature-past-event-image {
    padding-top: 81%;
    height: 100%;
}
.feature-past-event-image::after {
    content: "";
    background: linear-gradient(to bottom, rgba(50,73,158,0) 0%,rgba(50,73,158,.9) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 75%;
}
.feature-past-event-title {
    position: relative;
}
.feature-past-event-title:before {
    content: "";
    position: absolute;
    top: 0.4em;
    bottom: 0.3em;
    width: 6px;
    background-color: var(--white);
    left: var(--min-grid);
}
.past-events-car-wrap {
    position: relative;
    top: 5px;
}
.past-events-car-image {
    position: relative;
    padding-top: 88%;
}
.past-events-carousel .slick-arrow {
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.past-events-carousel .slick-arrow.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}
.past-events-carousel .slick-prev {
    top: -40px;
    line-height: 35px;
}
.past-events-carousel .slick-next {
    top: auto;
    bottom: -40px;
    line-height: 25px;
}
.past-events-carousel .slick-arrow:before {
    content: "";
    border-left: 2px solid;
    border-top: 2px solid;
    width: 1em;
    height: 1em;
    display: inline-block;
    color: var(--primary);
    font-size: 10px !important;
    line-height: 1;
    opacity: 1 !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.past-events-carousel .slick-prev:before {
    transform: rotate(45deg);
}
.past-events-carousel .slick-next:before {
    transform: rotate(-135deg);
}
.past-events-carousel .slick-arrow i {
    display: none;
}
.past-events-carousel .slick-arrow:hover:before {
    color: var(--secondary);
}
.past-events-all-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
/*Become Member - Banner*/
.become-member-back {
    position: absolute;
    left: 0;
    right: -115px;
    bottom: -35px;
}
.become-member-front::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    bottom: 0.05em;
    width: 9px;
    background-color: var(--primary);
}
.become-member-title {
    position: relative;
}
/*Board of Directors - Header*/
.boards-header-image {
    position: relative;
    padding-top: 53%;
}
/*Board of Directors - President*/
.boards-president-description p .highlighted {
    color: var(--primary);
    font-weight: 700;
    -webkit-box-shadow: inset 0px -1.2em 0px 0px rgba(24,50,124,0.1);
    -moz-box-shadow: inset 0px -1.2em 0px 0px rgba(24,50,124,0.1);
    box-shadow: inset 0px -1.2em 0px 0px rgba(24,50,124,0.1);
}
.boards-president-image {
    position: relative;
    padding-top: 55%;
}
.boards-president-quotes {
    position: relative;
}
.boards-president-quotes .start-quote,
.boards-president-quotes .end-quote {
    position: absolute;
    color: rgba(24,50,124,0.1);
    font-weight: 700;
    font-size: 60px;
    letter-spacing: 0.05em;
}
.boards-president-quotes .start-quote {
    left: 10px;
    top: 5px;
    line-height: 1;
}
.boards-president-quotes .end-quote {
    right: 10px;
    bottom: 5px;
    line-height: 0;
}
.boards-president-quotes .start-quote:after {
    content: open-quote;
}
.boards-president-quotes .end-quote:after {
    content: close-quote;
}
/*History - First Council*/
#history-council {
    position: relative;
}
#history-council::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    bottom: -40px;
    width: 9px;
    background-color: var(--primary);
}
.history-council-list p:not(:last-child) {
    margin-bottom: 15px;
}
.history-council-bottom {
    height: 9px;
    background-color: var(--primary);
}
/*Members Benefits - Benefits*/
#member-benefits {
    background-image: url("/uploads/images/upcoming-background.jpg");
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
#member-benefits::before,
#member-benefits::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    z-index: -1;
}
#member-benefits::before {
    top: 0;
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}
#member-benefits::after {
    bottom: 0;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
/*Members Benefits - Application*/
.member-application-step-item:not(:last-child) {
    margin-bottom: 60px;
}
.member-application-step-image {
    position: relative;
    padding-top: 123%;
}
.member-application-step-letter {
    color: rgba(255,255,255,0.4);
    font-size: 95px;
    font-weight: 600;
    line-height: 0.95;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 7px;
}
.member-application-step-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    max-width: 290px;
    position: relative;
}
.member-application-step-title::before {
    content: "";
    width: 15px;
    border-top: 2px solid var(--secondary);
    display: block;
    margin-bottom: 20px;
}
/*Jobs Results*/
.jobs-results-top {
    position: relative;
}
.jobs-res-wrap {
    background-color: #f4f4f4;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.jobs-res-image {
    -webkit-filter: invert(22%) sepia(57%) saturate(2314%) hue-rotate(215deg) brightness(89%) contrast(85%);
    filter: invert(22%) sepia(57%) saturate(2314%) hue-rotate(215deg) brightness(89%) contrast(85%);
    opacity: 0.3;
}
.jobs-res-image img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
}
.jobs-res-email {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}
.jobs-res-wrap:hover {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(50,73,158,0.15);
    -moz-box-shadow: 0px 0px 15px 0px rgba(50,73,158,0.15);
    box-shadow: 0px 0px 15px 0px rgba(50,73,158,0.15);
}
/*Jobs Publish*/
.job-publish-bottom {
    position: relative;
}
/*Contact*/
.contact-map {
    position: relative;
    min-height: 245px;
    height: 23vw;
}
.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    width: 100%;
    height: 100%;
}
/*Footer*/
footer {
    background-color: var(--primary);
    color: var(--white);
}
.social-media svg {
    fill: rgba(255,255,255,0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.social-media a:hover svg {
    fill: var(--white);
}
.footer-menu h6,
.footer-newsletter h6 {
    font-size: 12px;
    position: relative;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-menu h6::before,
.footer-newsletter h6::before {
    position: absolute;
    left: 0;
    border-bottom: 2px solid var(--secondary);
    content: "";
    width: 20px;
    bottom: -9px;
}
.footer-newsletter {
    background-color: var(--hov-primary);
    min-height: 100%;
}
.footer-menu-pages ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-menu-pages ul li:not(:last-child) {
    margin-bottom: 2px;
}
.newsletter-form-field {
    background-color: var(--white);
    position: relative;
}
.newsletter-form-field input {
    background-color: #fff;
    border: none;
    padding: 13px 10px;
    border-radius: 0;
    max-width: 250px;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 100%;
    color: var(--primary);
    font-size: 14px;
}
.newsletter-form-field input::placeholder {
    opacity: 1;
}
.newsletter-form-field-loader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    padding: 2px 10px;
    display: flex;
    align-items: center;
    color: transparent;
    -webkit-transition: color 0s ease-in-out 2s;
    transition: color 0s ease-in-out 2s;
    font-size: 14px;
}
.newsletter-form-field-loader .bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 2s ease-in-out;
    transition: width 2s ease-in-out;
    background-color: rgba(50,73,158,0.1);
}
.newsletter-form-field-loader.fill {
    pointer-events: auto;
    opacity: 1;
    color: var(--primary);
}
.newsletter-form-field-loader.fill .bar {
    width: 100%;
}
.btn-subscribe {
    background-color: rgba(50,73,158,0.1);
    padding: 7px 12px;
    min-height: 100%;
    line-height: 1;
}
.btn-subscribe svg {
    fill: var(--secondary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-subscribe svg.success {
    fill: none;
    stroke: var(--secondary);
    stroke-miterlimit: 10;
    stroke-width: 6px;
}
.btn-subscribe svg.success,
.btn-subscribe.success svg.mail {
    display: none;
}
.btn-subscribe.success svg.success {
    display: block;
}
.btn-subscribe:not(.success):hover {
    background-color: var(--primary);
}
.btn-subscribe:not(.success):hover svg {
    fill: var(--white);
}
.newsletter-checkbox {
    padding-left: 0;
    margin-top: 4px;
    text-align: left;
}
.checkbox.newsletter-checkbox i {
    border: 0;
    background-color: rgba(255,255,255,0.5);
}
.checkbox.newsletter-checkbox input:checked + i::after {
    content: "\f00c";
    color: var(--white);
}
footer a:hover {
    color: var(--secondary);
}
.date-info-container {
    display: inline-block;
    border: 1px solid var(--primary);
    color: white;
    padding: 2px 5px;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    background-color: var(--primary);
}
.attendance-btn {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    opacity: 0;
}
.attendance-field {
    background-color: #f4f4f4;
    position: relative;
    padding: 10px 0 10px 0;
    transition: all .3s ease;
}
.attendance-field.has-label {
    cursor: pointer;
}
.attendance-field:has(input:checked){
    background-color: var(--primary);
    color: white;
}
.contact-form-btn button{
    display: block !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    transition: all .5s ease !important;
    text-transform: uppercase !important;
    background-color: white !important;
    text-align: center !important;
    border-radius: 0 !important;
    width: 100%;
    font-weight: 500 !important;
}
.contact-form-btn button:hover {
    background-color: var(--primary) !important;
    color: white !important;
}
/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {

}
/* md */
@media (min-width: 768px) {
    /*All*/
    :root {
        --font-size: 16px;
    }
    /*Header Menu*/
    .menu-res-wrap {
        padding: 25px 15px;
    }
    /*Homepage - Focus*/
    .focus-icon img {
        height: 75px;
    }
    .each-focus h4 {
        margin: 25px 0 0 0;
    }
    /*Homepage - What we do*/
    .hm-what-we-do-left-s::before {
        border-left: 15px solid var(--primary);
    }
    .hm-what-we-do-left-s p {
        margin-bottom: 20px;
    }
    /*Homepage - What's Happening*/
    .hm-about-lcci-box {
        margin-top: -130px;
    }
    .hm-about-lcci-container {
        padding: 35px 70px 65px;
    }
    .each-benefit-hm img {
        width: 85px;
        height: 75px;
    }
    .each-benefit-hm p {
        margin-top: 30px;
    }
    .hm-lcci-about p {
        font-size: 18px;
        line-height: 1.7;
    }
    /*Homepage - Previous Events*/
    .feature-past-event-title:before {
        width: 12px;
        top: 0.1em;
        bottom: 0.1em;
    }
    /*Become Member - Banner*/
    .become-member-front::before {
        top: 1.2em;
        width: 15px;
    }
    /*Board of Directors - Header*/
    .boards-header-image {
        padding-top: 36%;
    }
    /*Board of Directors - President*/
    .boards-president-quotes .start-quote,
    .boards-president-quotes .end-quote {
        font-size: 80px;
    }
    .boards-president-quotes .end-quote {
        bottom: 20px;
    }
    /*History - First Council*/
    #history-council::before {
        width: 15px;
    }
    .history-council-bottom {
        height: 15px;
    }
    /*History - First Council*/
    .history-council-list p:not(:last-child) {
        margin-bottom: 10px;
    }
    /*Members Benefits - Application*/
    .member-application-step-letter {
        font-size: 150px;
    }
    .member-application-step-title {
        font-size: 17px;
        line-height: 1.3;
    }
    .member-application-step-title::before {
        width: 25px;
        margin-bottom: 25px;
    }
    /*Jobs Results*/
    .jobs-results-top::before {
        position: absolute;
        content: "";
        border-left: 15px solid var(--primary);
        left: 0;
        top: 0;
        height: 100%;
        max-height: 600px;
    }
    .jobs-res-email {
        bottom: 30px;
    }
    /*Jobs Publish*/
    .job-publish-bottom::before {
        position: absolute;
        content: "";
        border-left: 15px solid var(--primary);
        left: 0;
        top: 0;
        bottom: 0;
    }
    /*Footer*/
    .newsletter-form-field input {
        padding: 15px 10px;
        font-size: 16px;
    }
}
/* lg */
@media (min-width: 1050px) {
    /*Homepage - Focus*/
    .each-focus h5 {
        margin-bottom: 20px;
    }
    .each-focus p {
        display: block;
    }
    /*Homepage - What we do*/
    .non-prof-organ::before {
        position: absolute;
        content: "";
        border-left: 3px solid rgba(24,50,124,0.2);
        top: 0;
        bottom: 0;
        right: 0;
    }
    /*Homepage - What's Happening*/
    .hm-about-lcci-img {
        padding-top: 34%;
    }
    /*Homepage - Previous Events*/
    .home-what-happened-right:before,
    .home-what-happened-right:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 60px;
        z-index: -1;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0.2;
    }
    .home-what-happened-right:before {
        top: 0;
        background: linear-gradient(to bottom,  rgba(50,73,158,0.7) 0%,rgba(50,73,158,0) 100%);
    }
    .home-what-happened-right:after {
        bottom: 0;
        background: linear-gradient(to bottom,  rgba(50,73,158,0) 0%,rgba(50,73,158,0.7) 100%);
    }
    .home-what-happened-right.hover-prev:before,
    .home-what-happened-right.hover-next:after {
        opacity: 0.6;
    }
    /*Become Member - Banner*/
    .become-member-back {
        top: 50%;
        left: 0;
        right: 0;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .become-member-title::before {
        content: "";
        background-color: var(--secondary);
        width: 15px;
        position: absolute;
        right: 0;
        top: 1.1em;
        bottom: 1.1em;
    }
    /*Board of Directors - President*/
    .boards-president-description p {
        line-height: 1.8;
    }
    /*Contact*/
    .contact-form .sk.success.message {
        min-height: 535px;
    }
    .header-page-contact {
        margin-bottom: -150px;
    }
}
/* xl */
@media (min-width: 1350px) {
    /*All*/
    :root {
        --font-size: 18px;
    }
    /*Header*/
    .header-languages {
        position: absolute;
        right: 25px;
    }
    /*Header Menu*/
    .menu-res-wrap {
        padding: 35px 20px;
        font-size: 16px;
    }
    /*Homepage - Focus*/
    .focus-icon img {
        height: 90px;
    }
    .each-focus h4 {
        margin: 35px 0 0 0;
    }
    /*Homepage - What we do*/
    .hm-what-we-do-left-s::before {
        border-left: 20px solid var(--primary);
    }
    .hm-what-we-do-left-s p {
        margin-bottom: 35px;
    }
    .non-prof-right-icon img {
        max-width: 325px;
    }
    /*Homepage - What's Happening*/
    .hm-about-lcci-box {
        margin-top: -265px;
    }
    .hm-about-lcci-container {
        padding: 55px 145px 100px;
    }
    .each-benefit-hm img {
        width: 115px;
        height: 100px;
    }
    .each-benefit-hm p {
        margin-top: 45px;
    }
    .hm-lcci-about p {
        font-size: 22px;
        line-height: 1.6;
    }
    /*Homepage - Previous Events*/
    .feature-past-event-title:before {
        width: 20px;
    }
    /*Become Member - Banner*/
    .become-member-front::before {
        width: 20px;
    }
    .become-member-title::before {
        width: 20px;
    }
    /*History - First Council*/
    #history-council::before {
        width: 20px;
    }
    .history-council-bottom {
        height: 20px;
    }
    /*Members Benefits - Application*/
    .member-application-step-letter {
        font-size: 220px;
    }
    .member-application-step-title {
        font-size: 20px;
        line-height: 1.5;
    }
    .member-application-step-title::before {
        width: 30px;
        margin-bottom: 30px;
    }
    /*Jobs Results*/
    .jobs-results-top::before {
        border-left: 20px solid var(--primary);
    }
    .jobs-res-email {
        bottom: 50px;
    }
    /*Jobs Publish*/
    .job-publish-bottom::before {
        border-left: 20px solid var(--primary);
    }
}
/* xxl */
@media (min-width: 1650px) {
    /*Header*/
    .header-languages {
        right: 60px;
    }
    /*Homepage - Previous Events*/
    .past-events-carousel .slick-prev {
        top: -60px;
    }
    .past-events-carousel .slick-next {
        bottom: -60px;
    }
}
/*Responsive - Desktop First*/
/* xl */
@media (max-width: 1649.98px) {

}
/* lg */
@media (max-width: 1349.98px) {

}
/* md */
@media (max-width: 1049.98px) {
    /*Megamenu*/
    body.opened-megamenu .megamenu {
        opacity: 1;
        pointer-events: all;
    }
    /*Homepage - What we do*/
    .hm-what-we-do-left-s:not(.without-border-on-mobile),
    .feature-past-event-over,
    .history-council-list {
        padding-left: 50px;
    }
    .hm-what-we-do-left-s.without-border-on-mobile:before {
        display: none;
    }
    /*Homepage - Previous Events*/
    .feature-past-event-title:before {
        left: -50px;
    }
    /*Become Member - Banner*/
    .become-member-front {
        padding-left: 40px;
    }
    /*Contact*/
    .contact-form {
        position: relative;
        z-index: 1;
    }
    .contact-form:before {
        content: "";
        position: absolute;
        left: -1000px;
        right: -1000px;
        top: 0;
        bottom: -1px;
        z-index: -1;
        background-color: var(--white);
    }
}
/* sm */
@media (max-width: 767.98px) {
    /*Footer*/
    .footer-menu h6 {
        padding-right: 30px;
        cursor: pointer;
    }
    .footer-menu h6::after {
        content: "+";
        position: absolute;
        right: 0;
    }
    .footer-menu.active h6::after {
        content: "-";
    }
    .footer-menu:not(.active) .footer-menu-pages {
        display: none;
    }
}
/* xs */
@media (max-width: 575.98px) {
    /*Homepage - What we do*/
    .hm-what-we-do-left-s:not(.without-border-on-mobile),
    .feature-past-event-over,
    .history-council-list {
        padding-left: 35px;
    }
    /*Homepage - Previous Events*/
    .feature-past-event-title:before {
        left: -35px;
    }
    /*Become Member - Banner*/
    .become-member-front {
        padding-left: 20px;
    }
}
