@import "fonts.css";
:root {
	--css-purple: #432973;
}
body {
    background-color: white;
    font-family: "proxima-soft", Helvetica, Arial, sans-serif;
    color: var(--ce-purple);
}

@media (max-width: 768px) {
    .ce-container { padding:1rem; }
}

a {
    color: var(--ce-purple);
    text-decoration: none;
}
a:hover {
    color: #005BD7;
    text-decoration: none;
}
.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-success:focus {
    background: var(--ce-purple);
    outline: #6f42c1 solid 3px;
}
/* not used yet */
.line-under:after {
    background: linear-gradient(to right, #EB0029 0, #005BD7 100%);
    margin-top: 2em;
    content: "";
    display: block;
    height: 3px;
    width: 100%;
}


.ce-footer-main {
    color:#fff;
    background-color: #303030;
    padding: 3rem; 
    font-size: 1rem;
    font-weight: 400;
    @media (max-width: 1000px) {
        padding: 1rem;
    }
}

.footer-simple-menu {
    display: flex;
    flex-wrap: wrap;
}
.footer-simple-menu li {
    display: block;
}
.footer-simple-menu li + li::before {
    content: " |";
    padding: 0 1rem
}
.footer-simple-menu a {
    text-decoration: none;
    line-height: 1.5;
    color: #efefef;
}
.footer-simple-menu a:hover {
    color:#FFF;
    text-decoration: underline;
}
.legal {
    padding-left: 2rem;
    font-size: .75rem;
    color: #C3C3C3;
}

.bottom-border {
    border-bottom:1px solid #432973;
    margin-bottom:25px;
}

.required-field {
    font-weight:bold;
    color:#432973;
}

/* wp menu */
#menu-content-nav { padding: 10px 0 0 0;}
    @media (max-width: 1000px) {
      #menu-content-nav { display:none; }
      .ce-button { margin:5px auto!important; }
    }

    .navbar-dropdown {
      display: flex;
      flex: 1 0 auto;
      height: 100%;
      box-sizing: border-box;
      color: #212529 !important;

    }

    .navbar-main-menu {
      margin: 0;
      box-sizing: border-box;
      display: flex;
      align-items: stretch;
      padding: 0;
      list-style: none;
    }

    .dropdown a {
      box-sizing: border-box;
      position: relative;
      padding: 0 0 1em 0;
      text-transform: uppercase;
      font-weight: 600;
      display: flex;
      align-items: stretch;
    }

    .dropdown:hover:after {
      content: '';
      position: absolute;
      display: block;
      width: 100%;
      height: 3px;
      left: 0;
      bottom: -5px;
      background: linear-gradient(to right, #EB0029 0, #005BD7 100%);
    }

    .ce-dropdown-menu:before {
      content: '';
      position: absolute;
      display: block;
      width: 100%;
      height: 3px;
      left: 0;
      top: 0;
      background: linear-gradient(to right, #EB0029 0, #005BD7 100%);
    }

    .ce-dropdown-menu {
      padding: 0 0 10px 0;
      border: 0;
      border-radius: 0;
      background-color: #fff;
      color: #303030;
      top: 100%;
      left: 0;
      min-width: 0;
      list-style: none;
      box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
      z-index: 600;
      transition: 1s;
    }

    .ce-dropdown-menu li a:hover {
      background: none;
    }

    .indicator::before {
      font-family: 'cooleffect' !important;
      content: "\e930";
      font-weight: normal;
      font-size: 7px;
      margin-left: 10px;
    }

    .item-label {
      color: #303030;
      font-size: 15px;
      font-weight: 600;
    }

    .item-action {
      display: block !important;
      margin: 0 15px !important;
    }

    .dropdown-menu .nav-action {
      display: block;
      position: relative;
      padding: 1em;
      margin: -2px 0 0 0 !important;
    }

    .logged-out-hide {
      display: none;
    }

    .navbar-cta {margin: 0 0 0 0; }

    .ce-button {
      font-size: 1.1em;
      font-weight: 600;
      text-align: center;
      text-transform: uppercase;
      padding: 12px 28px;
      margin: 0 7px;
      display: inline-block;
    }

    .ce-button-secondary {
      border: 2px solid #432973;
      color: #432973;

      &:hover {
        color: #005bd7;
        border-color: #005bd7;
        transition: .3s;
      }
    }

    .ce-button-primary-alt {
      color: #FFF;
      background: #F2694A;
      border: 2px solid #F2694A;
    }

    .ce-button-primary-alt:hover,
    ce-button-primary-alt span:hover {
      color: #fff;
      background: #D9534F;
      border: 2px solid #D9534F;
      transition: .3s;
    }
    /* end menu */
