/*
Theme Name: Financial Advisor Conferece Home Template
Version: 1.0.0
*/
:root {
    --fa-color: #35b2ea;
}

body {
    background: #eeeeee;
}

.bg-darker {
    background-color: #111111;
}

.iiw-2020-wide-menu { width: 100%; display: flex; }
.iiw-2020-wide-menu .menu-item { flex: 1 auto; }
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.7);
}

.gutenberg-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
}

.gutenberg-content-wrap img {
    width: 100%;
    height: auto;
}

.site-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    background-color: #333;
}

.footer-copyright {
    color: #fff;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    line-height: 2;
    padding: 0 1rem;
}

.menu-button {
    margin: 0;
    float: right;
    z-index: 10;
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 48px;
    height: 48px;
    font-size: 0;
    box-shadow: none;
    border-radius: 0px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-button:focus {
    outline: none;
}

.menu-button span {
    display: block;
    position: absolute;
    top: 22px;
    left: 9px;
    right: 9px;
    height: 3px;
    background: var(--fa-color);
}

.menu-button span::before,
.menu-button span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--fa-color);
    content: "";
}

.menu-button span::before {
    top: -8px;
}

.menu-button span::after {
    bottom: -8px;
}

.menu-button--htx {
    background-color: rgba(0, 0, 0, 0);
}

.menu-button--htx span {
    transition: background 0s 0.3s;
}

.menu-button--htx span::before,
.menu-button--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.menu-button--htx span::before {
    transition-property: top, transform;
}

.menu-button--htx span::after {
    transition-property: bottom, transform;
}

/* active state, i.e. menu open */

.menu-button--htx.is-active {
    background-color: rgba(0, 0, 0, 0);
}

.menu-button--htx.is-active span {
    background: none;
}

.menu-button--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--fa-color);
}

.menu-button--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: var(--fa-color);
}

.menu-button--htx.is-active span::before,
.menu-button--htx.is-active span::after {
    transition-delay: 0s, 0.3s;
}

/* Desktop only */
@media (min-width: 992px) {
    .menu-button {
        display: none;
    }
}
