/*
Theme Name: ADF
Theme URI: https://athensdefencesummit.org/
Author: Digital Bay
Author URI: https://digitalbay.gr/
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: adf
*/

/* --------------------------------------------------------------
GLOBAL
-------------------------------------------------------------- */

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
	color: #000000;
}

p {
    line-height: 1.5em;
	
	font-size: 1rem;
}

main p:first-child {
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.25em;

}

.h1, h1 {
    font-size: 2.5rem;
    line-height: 1.1;
	margin-top: 0;
}

@media (min-width: 576px) {
    .h1, h1 { font-size: 3.5rem; }
}
@media (min-width: 768px) {
    .h1, h1 { font-size: 4rem; }
}
@media (min-width: 1200px) {
    .h1, h1 { font-size: 4.875rem; margin-bottom: 2rem; }
	.page-template-simple-page .h1, .page-template-simple-page h1 { font-size: 4.875rem; margin-bottom: 0; }
}

h2.section-title,
h2.simple-section-title {
    font-size: 2rem;
    line-height: 1;
		margin-top: 0;
}
@media (min-width: 576px) {
h2.section-title {
        font-size: 2.5rem;
    }
}
@media (min-width: 768px) {
h2.section-title {
        font-size: 3rem;
    }
}
@media (min-width: 1200px) {
h2.section-title,
h2.simple-section-title {
        font-size: 3.875rem;
    }
}
h2.section-title::after {
    content: "";
    display: block;
    width: 6rem;
    height: 2px;
    background: #000000;
    margin: 2rem 0 3rem;
}


.h3, h3 {
    font-size: 1.75rem;
    line-height: 1.1;
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.display-flex { display: flex; flex-flow: row wrap; }
.align-items-center { align-items: center; }
.justify-space-between { justify-content: space-between; }

a { text-decoration: none; color: #000;}

.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 3rem;
}

.narrow-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 3rem;
}

.wide-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-template-simple-page .simple-hero .container,
.page-template-simple-page .simple-page-content .container {
    max-width: 972px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-template-simple-page main {
    margin-bottom: 4rem;
}

.adf-container {
    overflow: hidden;
    position: relative;
	margin-top: 5rem;
}
@media (max-width: 768px) {
    .adf-container {
        margin-top: 3rem;
    }
}
@media (max-width: 1024px) {
    .container, .narrow-container { padding: 0 1.25rem; }
}

/* Grid Overrides */
@media (max-width: 1024px) {
    .col-lg-4 { flex: 0 0 auto; width: 50%; }
}
@media (max-width: 768px) {
    .col-lg-3, .col-lg-4 { width: 100%; margin-bottom: 30px;}
}
@media (min-width: 1025px) {
    .col-lg-3 { width: 20%; }
    .col-lg-4 { width: 30%; }
     .col-lg-5 { width: 50%; }
}
/*@media (min-width: 768px) {
    .col-md-9 { width: 75%; }
}
@media (min-width: 992px) {
    .col-lg-8 { width: 66.66666667%; }
}*/
@media (min-width: 1200px) {
    .col-xl-10 { width: 100%; }
}

.col40 {
    width: 40%;
}
.col50 {
    width: 50%;
}
.col60 {
    width: 60%;
}
@media (max-width: 1024px) {
.col40 {
    width: 50%;
}
.col50 {
    width: 50%;
}
.col60 {
  width: 50%;
}
}
@media (max-width: 1024px) {
.col40 {
    width: 100%;
}
.col50 {
    width: 100%;
}
.col60 {
  width: 100%;
}
}
/* --------------------------------------------------------------
HEADER
-------------------------------------------------------------- */

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 10;
    transition: 300ms cubic-bezier(0.4,0,0.2,1);
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 999;
    transition: 300ms cubic-bezier(0.4,0,0.2,1);
}

.admin-bar header { top: 32px; }

@media (max-width: 768px) {
    header { padding: 1.5rem 0; }
}
@media (max-width: 576px) {
    header { padding: 1.25rem 0; }
}
.main-header-logo {
	width: 110px;
}
.main-header-right {
	width: calc(50% - 55px);
    text-align: right;
}
.main-header-menu {
	width: calc(50% - 55px);
}
.main-header-logo a { display: block; line-height: 0;}
.main-header-logo img, .main-header-logo svg { width: 110px; }
.main-header-logo path { fill: #ffffff; }
/*.sticky-header path { fill: #000000; }*/

.main-header-logo h1 {
    margin: 0;
    font-size: 13px;
    line-height: 0;
}

/* --------------------------------------------------------------
DESKTOP MENU
-------------------------------------------------------------- */

.main-header-menu-desktop ul.main-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-header-menu-desktop ul.main-navigation > li {
    display: inline-block;
    margin: 0 16px;
    position: relative;
}
.main-header-menu-desktop ul.main-navigation > li:first-child {
    margin-left: 0;
}

/* Dropdown arrow */
.main-header-menu-desktop ul.main-navigation > li.menu-item-has-children::after {
    content: "";
    display: inline-block;
    vertical-align: .255em;

    border-top: .24em solid;
    border-right: .24em solid transparent;
    border-bottom: 0;
    border-left: .24em solid transparent;

    color: #fff;
}

/*.sticky-header .main-header-menu-desktop ul.main-navigation > li.menu-item-has-children::after {
    color: #000000;
}*/

.main-header-menu-desktop ul.main-navigation > li > a {
    color: #ffffff;
    font-weight: 500;
    padding: 6px 0;
    font-size: 16px;
}

/*.sticky-header .main-header-menu-desktop ul.main-navigation > li > a {
    color: #000000;
}*/
.main-header-menu-desktop ul.main-navigation li.current-menu-item > a,
.main-header-menu-desktop ul.main-navigation li.current-menu-ancestor > a {
	font-weight: bold;
}
.main-header-menu-desktop ul.main-navigation li.current-menu-item > a:after,
.main-header-menu-desktop ul.main-navigation li.current-menu-ancestor > a:after {
	width: 100% !important;
}
/* Underline animation */
.main-header-menu-desktop ul.main-navigation > li:not(.menu-item-has-children) > a {
  position: relative; /* IMPORTANT so ::after positions correctly */
}

.main-header-menu-desktop ul.main-navigation > li:not(.menu-item-has-children) > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;

  transform: scaleX(0);
  transform-origin: right;              /* <-- key for hover OUT (hide left -> right) */
  transition: transform 0.3s ease-in-out;
}

.main-header-menu-desktop ul.main-navigation > li:not(.menu-item-has-children) > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;               /* <-- key for hover IN (show left -> right) */
}



/*.sticky-header .main-header-menu-desktop ul.main-navigation > li:not(.menu-item-has-children) > a::after {
    background: #000000;
}*/

.main-header-menu-desktop ul.main-navigation > li:not(.menu-item-has-children) > a:hover::after,
.main-header-menu-desktop ul.main-navigation > li.current-menu-item:not(.menu-item-has-children) > a::after {
    width: 100%;
}

/* Dropdown */
.main-header-menu-desktop ul.main-navigation > li > ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    list-style: none;
    margin: 5px 0 0;
    padding: 5px 0;
    min-width: 300px;
    background: #fff;
    transition: 300ms cubic-bezier(0.4,0,0.2,1);
    z-index: 9998;
}

.main-header-menu-desktop ul.main-navigation > li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

.main-header-menu-desktop ul.main-navigation > li > ul.sub-menu > li {
    padding: 0 10px;
    margin: 8px 0;
}

.main-header-menu-desktop ul.main-navigation > li > ul.sub-menu > li > a {
    color: #000000;
    font-size: 14px;
    position: relative;
}

.main-header-menu-desktop ul.main-navigation > li > ul.sub-menu > li:not(.menu-item-has-children) > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #000000;
    transition: width 0.3s ease-in-out;
}

.main-header-menu-desktop ul.main-navigation > li > ul.sub-menu > li:not(.menu-item-has-children) > a:hover::after {
    width: 100%;
}

/* --------------------------------------------------------------
MOBILE MENU
-------------------------------------------------------------- */

.main-header-menu-desktop { display: block; }
.main-header-menu-mobile { /*display: none;*/ }

@media (max-width: 868px) {
    .main-header-menu-desktop { display: none; }
    .main-header-menu-mobile { display: block; }
}

/*.main-header-menu-mobile .menu-toggle {
    background: none;
    border: none;
    padding: .3125rem .5rem;
    color: #ffffff;
    transition: 300ms cubic-bezier(0.4,0,0.2,1);
}*/

.menu-toggle {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
}

.menu-toggle span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    left: 0;
    transition: 0.3s ease;
}

/* 3 lines */
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* X state */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* Disable scroll */
.no-scroll {
    overflow: hidden;
}

.no-scroll .main-header-menu-desktop {
    display: none;
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* MOBILE OFFCANVAS */
.offcanvas {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;

    display: flex;
    flex-direction: column;
    background: #000;
    padding-bottom: 1rem;

    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.offcanvas.show {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
}

.offcanvas .logo {
    width: 240px;
    fill: #000000;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    border: 0;
    border-radius: .375rem;
    background: none;
    line-height: 0;
    cursor: pointer;
    opacity: 1;
}

.offcanvas .offcanvas-header .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0;
    margin: 0;
    background: none;
    line-height: 0;
    opacity: 1;
    color: #ffffff;
}

.offcanvas .offcanvas-header .btn-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 18% 1rem 0;
    overflow-y: auto;
}

.mobile-navigation {
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
    text-align: left;
    flex-direction: column;
}

.mobile-navigation .menu-item a {
    display: inline-block;
    /*width: 100%;*/
    padding: .1rem 0;
    color: #ffffff;
    position: relative;
    transition: 300ms cubic-bezier(0.4,0,0.2,1);
}

.mobile-navigation .menu-item a:after {
        content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-navigation .menu-item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-navigation > .menu-item > a {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
}

.mobile-navigation .sub-menu {
    font-size: 1.25rem;
    margin: 1rem 0;
    list-style: none;
    padding: 0;
}



.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* --------------------------------------------------------------
HERO
-------------------------------------------------------------- */
.hero {
    margin-bottom: 35px;
}
.hero-wr {
    position: relative;
    overflow: hidden;
    color: #fff;
	    height: 400px;
}
.home .hero-wr {
	    height: 100vh;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    margin-top: 66px;
	color: #fff !important;
}
.hero__content h1 {
    color: #fff !important;
    text-align: center;
    margin-bottom: 0.8rem;
    margin-top: 4rem;
    font-size: 3rem;
}

.home .hero__content h1 {
	color: #fff !important;
	text-align: center;
	margin-bottom: 0.8rem;
    margin-top: 0.8rem;
}
.hero__content p {
	text-align: center;
	font-weight: 500;
	margin: 0;
}

/*.hero__content p.hero__date {
	font-size: 30px;
}*/

   /* .hero__content {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(20%);
        width: 100%;
        padding: 0;
        margin: 0;
    }*/

.hero__content {
        position: absolute;
        bottom: 7%;
        left: 0;
        /*transform: translateY(20%);*/
        width: 100%;
        padding: 0;
        margin: 0;
    }

.hero__content p {
    font-size: 1rem;
	color: #fff;
}

@media (min-width: 576px) {
    .hero__content p {
        font-size: 1.19rem;
    }
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
	height: 100vh;
}
/*    
@media (min-width: 576px) {
    .hero__background {
		position: relative;
        min-height: 500px;
		background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) {
    .hero__background {
        min-height: 600px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;		
    }
}

@media (min-width: 1400px) {
    .hero__background {
        min-height: 100vh;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;		
    }
}*/

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content .button-wrapper {
    margin-top: 2rem;
}

.d-flex {
    display: flex !important;
}

.has--overlay {
	position: relative;
}
.has--overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
}



.button__outline--light {
	display: inline-block;
    background: none;
    position: relative;
    padding: .75rem 2rem;
    line-height: 1.3;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    border-radius: 0;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
	    font-size: 14px;
    font-weight: 600;
}



.button__outline--light {
    border-color: #ffffff;
    color: #ffffff;
}


.button__outline--light:hover {
    background-color: #ffffff;
    color: #000000;
}


.button__outline--dark {
	display: inline-block;
    background: none;
    position: relative;
    padding: .75rem 2rem;
    line-height: 1.3;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    border-radius: 0;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
	    font-size: 14px;
    font-weight: 600;
}



.button__outline--dark {
	background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}


.button__outline--dark:hover {
    background-color: transparent;
    border-color: #000000;
    color: #000000;
}



@media (min-width: 576px) {
    .wp-block-button__link {
        padding-left: 2rem;
    }
}

.wp-block-button__link {
	display: inline-block;
    background: none;
    position: relative;
    padding: .75rem 1.5rem;
    line-height: 1.3;
     text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    border-radius: .125rem;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}

.wp-block-button__link {
    display: flex;
    align-items: center;
    padding-left: 1rem;
	margin-bottom: 2em;
}

.wp-block-button__link {
    border-color: #8a7356;
    color: #8a7356;
}

.wp-block-button__link svg {
    margin-right: 1.5rem;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}

.wp-block-button__link:hover {
    background-color: #8a7356;
    color: #ffffff;
}

.wp-block-button__link:hover svg {
    transform: translateX(10px);
}

@media (min-width: 576px) {
    .wp-block-button__link {
        padding: 1rem 3rem;
    }
}
@media (min-width: 576px) {
    .wp-block-button__link {
        padding-left: 2rem;
    }
}

/* Default arrow color */
.wp-block-button__link .adf-button-arrow {
    fill: #8a7356;
}

/* Hover color */
.wp-block-button__link:hover .adf-button-arrow,
.wp-block-button__link:focus .adf-button-arrow {
    fill: #ffffff;
}

.simple-hero-content p {
    font-size: 16px;
}
/* --------------------------------------------------------------
FOOTER
-------------------------------------------------------------- */

.site-footer {
    position: relative;

    background-size: cover;
    background-position: center center;
	margin-top: 5rem;
}
.site-footer .footer-columns {
border-top: 1px solid #000000;
	    padding: 4.5rem 0 2rem;
	margin-top: 5rem;
}
.top-footer {
border-top: 1px solid #000000;
	    padding-top: 2rem;
	margin-top: 5rem;
}
.top-footer p.h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1em;
}

.top-footer p {
text-align: center;	
}


.site-footer .footer-columns a {
    color: #000000;
    transition: 300ms cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.site-footer .footer-columns a {
    position: relative; /* ensure positioning context */
}

.site-footer .footer-columns a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 1px;
    background: #000000;

    transform: scaleX(0);
    transform-origin: right;        /* hide left → right on hover out */

    transition: transform 300ms cubic-bezier(0.4,0,0.2,1);
}

.site-footer .footer-columns a:hover::after {
    transform: scaleX(1);
    transform-origin: left;         /* show left → right on hover in */
}


.site-footer .column-heading {
	margin: 0;
}

    .site-footer h3.column-heading {
        font-size: 1.3rem;
        font-weight: 500;
    }

.footer-navigation ul, ul.footer-navigation {
	padding: 0;
	list-style: none;
}

.footer-navigation li {
    margin-bottom: .5em;
	line-height: 1.5rem;
}

.copyright {
	padding-top: 4.5rem;
}

a.linkedin {
    /* vertical-align: sub; */
    position: relative;
    top: 4px;
}
a.linkedin:hover {

    height: 0px;
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 3em;
}
@media (max-width: 768px) {
:where(.wp-block-columns.is-layout-flex) {
    gap: 0;
}
}


.subpage-item {
    width: calc(33.3336% - 15px);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .subpage-item {
        width: calc(50% - 15px);
        position: relative;
        overflow: hidden;
    }
}

@media (max-width: 598px) {
    .subpage-item {
        width: 100%;
        position: relative;
        overflow: hidden;
    }
}

.subpage-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center; /* centers horizontally & vertically */
    display: block;
    transition: 350ms cubic-bezier(.24, .28, .63, 1);
}
.subpage-item:hover img {
    transform: scale(1.1);
}
.gap15 {
    gap: 15px;
}
.subpage-item a {
    color: #fff;
}

.subpage-item a.subpage-link {
    position: relative;
}

.subpage-item a.subpage-link::after {
    content: "";
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(3, 45, 57);
    background: linear-gradient(0deg, rgba(3, 45, 57, 1) 0%, rgba(3, 45, 57, 0) 100%);
}
.subpage-item h3 {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    background: none;
    padding: 1.5rem;
    padding-right: calc(4rem + 1.25rem);
    color: #fff;
}

.subpage-item .arrow {
    bottom: 2rem;
    right: 2rem;
    color: #ffffff;
}

.subpage-item .arrow {
    position: absolute;
    line-height: 1;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
    z-index: 1;
}

.subpage-item:hover .arrow {
    transform: translateX(10px);
}



.carousel-item {
    background-color: #ffffff;
}

.subpages-carousel {
    padding-right: 40px;
}

.subpages-carousel .slick-slide {
    margin: 0 7.5px; /* 15px total gap */
}

.subpages-carousel .slick-list {
    margin: 0 -7.5px; /* compensate so it aligns with container */
    overflow: visible;
}
.carousel-item {
    position: relative;
}
.carousel-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center; /* centers horizontally & vertically */
    display: block;
    transition: 350ms cubic-bezier(.24, .28, .63, 1);
}

.carousel-item h3 {
    position: relative;
    padding: 1rem 1rem 3rem;
    margin: 0;
}

.carousel-item .arrow {
    bottom: 1rem;
    right: 2rem;
    position: absolute;
    line-height: 1;
    color: #8a7356;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}


.carousel-item:hover .arrow {
    transform: translateX(10px);
}

.slick-next {
    right: .5rem;
}

.slick-prev {
    left: 1rem;
}

.slick-next,
.slick-prev {
    position: absolute;
    top: 50%;
    width: 2.25rem;
    height: 2.25rem;
    color: #ffffff;
    background: #8a7356;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(-.2.25rem);
    cursor: pointer;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}


@media (min-width: 992px) {
    .slick-next {
        right: 1rem;
    }

    .slick-prev {
        left: 1rem;
    }
}

@media (min-width: 768px) {
    .slick-next,
    .slick-prev {
        transform: translateY(-6rem);
    }
}

@media (min-width: 1024px) {
    .slick-next,
    .slick-prev {
        width: 4rem;
        height: 4rem;
        transform: translateY(-3.25rem);
    }
}

.slick-disabled {
    opacity: 0;
}

ul.slick-dots {
    display: block;
    margin: 0 auto;
    padding: 20px 5px;
    text-align: center;
    max-width: 400px;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    margin: 0 2px;
}

.slick-dots li button::before {
    font-family: slick;
    font-size: 40px;
    line-height: 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 30px;
    height: 30px;
    content: "•";
    text-align: center;
    opacity: 0.25;
    color: #8a7356;
    -webkit-font-smoothing: antialiased;
}

.slick-dots li.slick-active button:before, .slick-dots li.slick-active:hover button:before {
	opacity: 1;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}

/* --------------------------------------------------------------
MISC
-------------------------------------------------------------- */

:where(figure) {
    margin: 0;
}

:where(.wp-block-columns) {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .reverse-order {
        display: flex;
        flex-direction: column;
    }

    .reverse-order > *:first-child {
        order: 2;
    }

    .reverse-order > *:last-child {
        order: 1;
    }
}

.page-template-page-contact main,
.page-template-simple-page main {
    padding-top: 10rem;
}
@media (max-width: 768px) {
.page-template-page-contact main,
.page-template-simple-page main {
    padding-top: 6rem;
}
}
.page-template-page-contact header path,
.page-template-simple-page header path {
    fill: #000000;
}

.page-template-page-contact header,
.page-template-simple-page header {
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}


.page-template-page-contact .main-header-menu-desktop ul.main-navigation > li > a,
.page-template-simple-page .main-header-menu-desktop ul.main-navigation > li > a{
    color: rgb(3, 45, 57);
}

.page-template-page-contact .main-header-menu-desktop ul.main-navigation > li:not(.menu-item-has-children) > a::after,
.page-template-simple-page .main-header-menu-desktop ul.main-navigation > li:not(.menu-item-has-children) > a::after {
    background: rgb(3, 45, 57);
}

.page-template-page-contact .main-header-menu-desktop ul.main-navigation > li.menu-item-has-children::after,
.page-template-simple-page .main-header-menu-desktop ul.main-navigation > li.menu-item-has-children::after {
    color: #000000;
}

.light-text p, .light-text a, .light-text h1, .light-text h2, .light-text h3 {
    color: #ffffff;
}

.light-text h2.section-title::after {
    background: #ffffff;
}






label {

    font-size: .875rem;

}

.wpcf7-submit {
    margin-top: 15px;
}

.wpcf7-submit {
    background-color: #8a7356;
    outline: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border-radius: 0;
    display: block;
    width: 100%;
    padding: 20px 10px;
    font-size: 1em;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1) all;
}

.wpcf7-submit:hover {
    filter: brightness(90%);
}
.wpcf7 p {
	margin: 0;
    text-align: left;
}



form.wpcf7-form textarea.wpcf7-textarea, .contact50 form.wpcf7-form input.wpcf7-text {
    background: #ffffff;
}

form.wpcf7-form input.wpcf7-text {
    width: calc(100% - 26px);
    /*border-width: 0;
    border-radius: 0;*/
    padding: 16px 10px;
    margin: 2px 0 15px;
    font-family: inherit;
        border: 3px solid #000;
    outline: none;
    box-shadow: none;
}
form.wpcf7-form textarea.wpcf7-textarea {
    width: calc(100% - 20px);
    border-width: 0;
    border-radius: 0;
    padding: 16px 10px;
    margin: 2px 0 15px;
    font-family: inherit;
}
.field50 {
    width: 48.5%;
}

form.wpcf7-form .columns {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.wpcf7-list-item {
    display: block;
    margin: 0;
    line-height: 1.2;
    font-size: .875rem;
}

.wpcf7-list-item input {
    position: absolute;
    left: 0;
}
.wpcf7-list-item-label {
    padding-left: 25px;
    display: block;
}
@media (max-width: 580px) {




    .wpcf7 {
margin-top: 3rem;
    
}
	.wpcf7-list-item {
    display: block;

}
	.field50 {
    width: 100%;
}
}

.narrow.wp-block-columns {
    max-width: 1100px;
    margin: 0 auto;

}
.dad { flex: 0 0 auto; width: 50%; }



.speakers-archive {

}

.archive-title {
    text-align: center;
    margin-bottom: 40px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Desktop default */
    gap: 20px;
}

/* Laptop */
@media (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


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

.speaker-image {
    position: relative;
    overflow: hidden;
        border-radius: 50%;
}

.speaker-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    z-index: 1;
    opacity: 0.5;
    border-radius: 50%;

}

.speaker-image img {
    width: 100%;

}

.speaker-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    object-fit: cover;
}

.speaker-card a:hover .speaker-image img {
    transform: scale(1.08);
}

.speaker-name {
    margin-bottom: -5px;
    font-size: 1.125rem;
    margin-top: 20px;
}

.speaker-primary-title,
.speaker-secondary-title {
    font-size: 16px;
    text-align: center;
    line-height: 1.4em;
    margin-bottom: 0.375rem;
}


.speaker-search {
    text-align: right;
}

#speaker-search-input {
    /*padding: 20px 48px 20px 30px; */
	padding: 15px 38px 15px 20px;
    border-radius: 50px;
    background-color: #e5e5e5;
    border: unset;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 25px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' width='24' viewBox='0 0 48 48'%3E%3Cpath fill='%23afafaf' d='M39.8 41.95 26.65 28.8q-1.5 1.3-3.5 2.025-2 .725-4.25.725-5.4 0-9.15-3.75T6 18.75q0-5.3 3.75-9.05 3.75-3.75 9.1-3.75 5.3 0 9.025 3.75 3.725 3.75 3.725 9.05 0 2.15-.7 4.15-.7 2-2.1 3.75L42 39.75Zm-20.95-13.4q4.05 0 6.9-2.875Q28.6 22.8 28.6 18.75t-2.85-6.925Q22.9 8.95 18.85 8.95q-4.1 0-6.975 2.875T9 18.75q0 4.05 2.875 6.925t6.975 2.875Z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 30px;
    min-width: 180px;
}


.speaker-details {
    width: 398px;
    margin-bottom: 25px;
}

.speaker-details-content {
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-align: center;
    padding-bottom: 15px;
    background: #f3f3f3;
}

.speaker-content {
    width: calc(100% - 450px);
}

@media (max-width: 576px) {
    .speaker-details,
    .speaker-content {
        width: 100%;
    }
}

.speaker-content p {
    text-align: justify;
    font-weight: 500;
}

.speaker-name, 
.speaker-primary-title, 
.speaker-secondary-title {
max-width: 240px;
margin-left: auto;
margin-right: auto;
}


.tab-buttons{
    margin-bottom:5px;
}

.tab-btn{
    padding:10px 20px;
    border:none;
    background:#eee;
    cursor:pointer;
    margin-right:10px;
    font-weight:bold;
    font-size: 20px;
    min-width: 200px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.tab-btn.active{
    background:#111;
    color:#fff;
}

.tab-content{
    display:none;
    background: #f5f5f5;
    padding: 30px 50px;
}

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

.session-row {
    display:grid;
    grid-template-columns:260px 1fr;
    padding:25px 0;
}

.session:not(:last-child) .session-row{
    border-bottom:1px solid #e5e5e5;
}


.session-time {
    font-size:18px;
    font-weight:600;
    color:#111;
}

.session-time span {
    font-size:16px;
    color:#777;
}

.session-title {
    margin:0;
    font-size:20px;
}

.session-subtitle {
    font-style:italic;
    margin-top:5px;
    color:#444;
}

.session-type {
    margin-top:8px;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#888;
}

.session-desc {
    margin-top:10px;
    line-height:1.6;
}

.session-speakers {
    margin-top:12px;
    font-size:14px;
    color:#222;
}

.session-time{
    display:flex;
    gap:10px;
}

.clock-icon{
    display:flex;
}

.session-speakers{
    margin-top:12px;
    padding-left:0;
    list-style: none;
}

.session-speakers li{
    margin-bottom:6px;
}

.speaker-title {
    color:#222;
}

.session-speakers a {
    color: #000;
    font-weight: 600;
}
 .session-speakers a:hover {
    text-decoration: underline;
}

/* =========================
   TABLET
   ========================= */

@media (max-width:1024px){

    .session-row{
        grid-template-columns:200px 1fr;
    }

    .tab-btn{
        font-size:18px;
        min-width:160px;
        padding:10px 15px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width:768px){

    .tab-buttons{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .tab-btn{
        min-width:auto;
        flex:1;
        font-size:16px;
        text-align:center;
        padding:12px;
    }

    .tab-content{
        padding:25px 20px;
    }

    /* STACK TIME + CONTENT */
    .session-row{
        grid-template-columns:1fr;
        gap:10px;
        padding:20px 0;
    }

    .session-time{
        font-size:16px;
    }

    .session-title{
        font-size:18px;
    }

    .session-subtitle{
        font-size:15px;
    }

    .session-desc{
        font-size:15px;
    }

}


/* =========================
   SMALL PHONES
   ========================= */

@media (max-width:480px){

    .tab-btn{
        font-size:15px;
        padding:10px;
    }

    .session-title{
        font-size:17px;
    }

    .session-time{
        font-size:15px;
        margin-bottom: 15px;
    }

    .session-desc{
        font-size:14px;
    }

    .session-row {
        display: block;
    }
    

}

.wp-block-group {
    padding: 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.wp-block-group__inner-container {
    max-width: 700px;
    margin: 0 auto;
}


@media (max-width: 580px) {
    .hero__content h1 {
        font-size: 2.1rem;
		    margin-top: 1.5rem;
    }
		/*.hero__content p.hero__date {
		font-size: 24px;
	}*/
    .has-medium-font-size {
        font-size: 16px !important;
    }
    .top-footer p.h2 {
        font-size: 1.7rem;
    }
    .copyright {
    padding-top: 3.5rem;
}
.has-large-font-size {
    font-size: 26px !important;
}
.has-x-large-font-size {
    font-size: 32px !important;
}
.site-footer .footer-columns {

    margin-top: 3.8rem;
}
}

.has-large-font-size {
    line-height: 1.1em !important;
}
ul li:not(:first-child) {
    margin-top: 14px;
}


.newsletter-popup{
    position:fixed;
    inset:0;
    display:none;
    z-index:9999;
}

.newsletter-popup.active{
    display:block;
}

.newsletter-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.newsletter-modal{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.95);
    background:#fff;
    padding:40px;
    width:90%;
    max-width:420px;
    border-radius:10px;
    text-align:center;
    transition:.25s;
}

.newsletter-popup.active .newsletter-modal{
    transform:translate(-50%,-50%) scale(1);
}

.newsletter-close{
    position:absolute;
    top:10px;
    right:14px;
    border:none;
    background:none;
    font-size:26px;
    cursor:pointer;
}

.newsletter-modal h2{
    margin-bottom:20px;
}

.wpcf7 input[type="email"]{
    width:100%;
    padding:12px;
    margin-bottom:15px;
}

.wpcf7 input[type="submit"]{
    width:100%;
    padding:12px;
    background:#000;
    color:#fff;
    border:none;
    cursor:pointer;
}
a.readmore {
    font-weight: 600;
    text-decoration: underline;
}

#open-newsletter-popup {
    cursor: pointer;
}



.footer-logos{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-logos img{
    max-width:22%;
    height:auto;
    object-fit:contain;
}
@media (max-width: 1024px) {
.col-lg-5 {
    margin-top: 50px;
}
.offcanvas-body {
    flex-grow: 1;
    padding: 185px 1rem 0;
    overflow-y: auto;
}

}
@media (max-width: 580px) {

.footer-logos img {
    max-width: 60%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 15px;
}
}


.page-intro{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:400px; /* default for inner pages */
  background:#fff;
  z-index:9999;
  transform:translateX(0);
  will-change:transform;
  pointer-events:none;
}

/* homepage override */
.home .page-intro{
  height:100vh;
}
.page-intro.animate-out{
  animation:introSlide 1s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes introSlide{
  to{ transform:translateX(-100%); }
}


.hero-title{
  opacity:0;
  transform:translateY(60px);
  transition:
    opacity 1s cubic-bezier(.16,1,.3,1),
    transform 1s cubic-bezier(.16,1,.3,1);
}

.hero-title.reveal{
  opacity:1;
  transform:translateY(0);
}


/* ---------- TITLE (homepage slide from right short distance) ---------- */

.hero-title-slide{
  opacity:0;
  transform:translateX(60px);
  transition:
    opacity .9s cubic-bezier(.4,0,.2,1),
    transform .9s cubic-bezier(.4,0,.2,1);
}

.hero-title-slide.in{
  opacity:1;
  transform:translateX(0);
}


/* ---------- DATE + DESC SLIDE UP ---------- */

.hero-seq-up{
  opacity:0;
  transform:translateY(40px);
  transition:
    opacity .9s cubic-bezier(.4,0,.2,1),
    transform .9s cubic-bezier(.4,0,.2,1);
}

.hero-seq-up.in{
  opacity:1;
  transform:none;
}

.hero__background{
position:absolute;
inset:0;
overflow:hidden;
z-index:0;
}

.hero__background-img{
width:100%;
height:100%;
object-fit:cover;
}









/* GRID LAYOUT */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}


/* RIGHT COLUMN */
.right{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:30px;
}


/* CARD BASE */
.card{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  transition:transform .35s ease;
}

.card{
  display:block;
  text-decoration:none;
  color:inherit;
}

.card:hover img {
  transform:translateY(-6px);
}


/* LEFT BIG CARD */
.big{
  aspect-ratio:1/1;
}


/* IMAGE */
.card-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
  z-index:0;
}

.card:hover .card-img{
  transform:scale(1.08);
}


/* OVERLAY */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.55);
  transition:.4s;
  z-index:1;
}

.card:hover::before{
  background:rgba(0, 0, 0, 0.75);
}


/* CONTENT */
.content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  z-index:2;
  padding:20px;
}


/* TITLE */
.content h2{
  margin:0;
  transform:translateY(15px);
  transition:.45s ease;
}


/* BUTTON */
.content a{
  margin-top:14px;
  padding:10px 20px;
  border:1px solid white;
  color:white;
  text-decoration:none;

  opacity:0;
  transform:translateY(15px);
  transition:.45s ease;
}

.content a:hover{
  background:white;
  color:#000000;
}


/* HOVER ANIMATION */
.card:hover h2{
  transform:translateY(-12px);
}

.card:hover a{
  opacity:1;
  transform:translateY(0);
}


/* RESPONSIVE */
@media(max-width:800px){

  .grid{
    grid-template-columns:1fr;
  }

  .right{
    grid-template-rows:auto;
  }

  .big{
    aspect-ratio:auto;
    height:200px; /* same height as right cards */
  }

  .right .card{
    height:200px;
  }


}



.btn{
  margin-top:14px;
  padding:10px 20px;
  border:1px solid white;
  color:white;
  opacity:0;
  transform:translateY(15px);
  transition:.45s ease;
}
.card:hover .btn{
  opacity:1;
  transform:translateY(0);
}


/* EDITOR SAFE MODE */
.editor-styles-wrapper *{
  animation:none !important;
  transition:none !important;
}

.editor-styles-wrapper {
  opacity:1;
  transform:none;
}
@media(min-width:1024px){
.overlap .wp-block-media-text {
    position: relative;
}

.overlap .wp-block-media-text__content {
    background: #fff;
        padding: 4% 10% !important;
    margin-left: -180px;   /* 👈 this creates the overlap */
    z-index: 2;
}

.overlap .wp-block-media-text__media {
    position: relative;
    z-index: 1;
}
}
.wp-block-buttons .wp-block-button__link {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: .5em;
    color: #000;
    background: transparent;
    border: none;
}

.wp-block-buttons .wp-block-button__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;       
    width: 100%;
    height: 1px;
    background: #000;
    transition: bottom 0.3s ease;
}

.wp-block-buttons .wp-block-button__link:hover::after {
    bottom: -2px;        
}

.dad {

}


.sponsors-section {
    margin: 50px auto;
        max-width: 1330px;
}
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* Tablet */
@media (max-width: 1024px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sponsor-card {
    background: #fff;
    border: 1px solid #d9dee7;
    border-radius: 12px;

    aspect-ratio: 1 / 1; /* PERFECT square cards */

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    transition: all 0.25s ease;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.sponsor-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TITLE AREA */
.sponsors-header {
    margin-bottom: 25px;
}

.sponsors-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

/* blue underline like screenshot */
.sponsors-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #000;
}