/* Base Styles */
:root {
    --color-primary: #00b2a9;
    --color-secondary: #333;
    --color-white: #fff;
    --color-yellow: #f0c500;
    --color-light-green: #b5e3d8;
    --color-border: #87a39d;
    --font-family: "Public Sans", sans-serif;
    --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.49);
    --border-radius: 100px;
    --transition: all 0.3s ease;
}

body {
    color: var(--color-secondary);
    font-family: var(--font-family), sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 1.5;
}

/* Typography */
h1, h2 {
    font-weight: 900;
    line-height: 1;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 55px;
    margin-bottom: 32px;
}

img {
    max-width: 100%;
}

a {
    transition: var(--transition);
}

/* Utility Classes */
.color-white { color: var(--color-white) !important; }
.color-green { color: var(--color-primary) !important; }
.color-black { color: var(--color-secondary) !important; }

/* Buttons */
.btn {
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 800;
    min-width: 250px;
    padding: 11px 63px;
    text-align: center;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.btn.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

/* Header */
header {
    background: var(--color-secondary);
    padding: 0 66px;
    position: fixed;
    width: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

header .navbar {
    height: 65px;
}

header .navbar .logo-img {
    width: 194px;
}

.header-cta-text {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-decoration: none;
}

.header-cta-text:hover {
    color: var(--color-white);
}

/* Hero Section */
section#hero {
    background: url('../images/login/hero-background.jpg') top center;
    background-size: cover;
    padding-top: 176px;
    padding-bottom: 68px;
}

section#hero .login-container {
    background: rgba(51, 51, 51, 0.9);
    box-shadow: var(--box-shadow);
    padding: 137px 80px;
}

section#hero h1 {
    color: var(--color-white);
}

section#hero .login-container .login-form {
    margin-top: 40px;
}

section#hero .login-container .login-form label {
    color: var(--color-white);
    display: block;
    font-size: 14px;
}

section#hero .login-container .login-form input {
    width: 70%;
    padding: 14px;
    background: transparent;
    color: var(--color-white);
    border: none;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 18px;
    transition: var(--transition);
}

.ui-state-highlight {
    width: 70%;
}

section#hero .login-container .button.blue {
    display: flex;
}

section#hero .login-container .button.blue .button-text {
    background: var(--color-primary);
    border-radius: 20px;
    border: none;
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1rem;
    margin-top: 38px;
    padding: 11px 63px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

section#hero .login-container .button.blue .button-text:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

section#hero .login-container a {
    color: var(--color-white) !important;
    font-size: 0.875rem !important;
    line-height: 24px;
}

section#hero .login-container a:hover {
    color: var(--color-primary) !important;
}

section#hero .login-container .login-links {
    font-size: 14px !important;
    display: flex;
    margin-top: 53px;
    color: #ffffff;
}

section#hero .login-container .login-links .login-link-separator {
    border-right: 2px solid var(--color-yellow);
    margin: 0 17px;
    height: 24px;
    display: inline-block;
}

/* Hero Mobile View */
section#hero-background-mobile {
    background: url('../images/login/hero-background.jpg') top center;
    background-size: cover;
    width: 100%;
    height: 240px;
}

/* Headline Section */
section#headline {
    background: var(--color-light-green);
    padding: 106px 0 150px;
}

section#headline.announcement-hide {
    padding: 40px 0;
}

section#headline.announcement-hide img {
    display:none;
}

/* Resources Section */
section#resources {
    margin-top: -38px;
    padding-bottom: 30px;
}

section#resources .contact-support .btn,
section#resources .tools-and-resources .btn {
    width: 250px;
    padding-left: 0;
    padding-right: 0;
}

section#resources .contact-support {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 108px 0 130px;
}

section#resources .tools-and-resources {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 108px 0 130px;
}

/* Footer */
footer {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 89px 0 112px;
}

footer .footer-big-text {
    font-size: 4.375rem;
    font-style: italic;
    font-weight: 900;
    text-align: right;
    line-height: 3.5rem;
}

footer .footer-big-text p {
    line-height: 3.5rem;
    margin-bottom: 0;
}

footer .footer-logo {
    width: 352px;
}

footer .footer-top h5 {
    font-size: 16px;
    line-height: 30px;
}

footer .footer-top a {
    text-decoration: none;
    color: var(--color-white);
}

footer .footer-top a:hover {
    text-decoration: underline;
}


footer .footer-top ul.list-unstyled {
    margin-bottom: 0;
}

footer .footer-top ul.list-unstyled li {
    font-size: 14px;
    margin-bottom: 12px;
}

footer .footer-top ul.list-unstyled li:last-of-type {
    margin-bottom: 0;
}

footer .footer-top .footer-custom-column {
    border-left: 2px solid var(--color-border);
    padding-left: 1.2rem;
}

footer .footer-top .footer-custom-column a:hover {
    text-decoration: none;
    color: var(--color-yellow) !important;
}

footer .footer-bottom {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 28px;
}

/* Media Queries */
@media (max-width: 991px) {
    .container {
        max-width: 95%;
    }

    section#hero .login-container {
        padding: 91px 62px 73px;
    }

    section#hero .login-container .login-form input {
        width: 100%;
    }
    .ui-state-highlight {
        width: 100%;
    }

    footer {
        padding: 82px 0 74px;
    }

    footer .footer-top .footer-big-text {
        font-size: 67px;
        line-height: 63px;
        padding: 24px 0;
    }

    footer .footer-top .footer-big-text p {
        line-height: 63px;
    }
}

@media (max-width: 767px) {
    header {
        padding: 0 20px;
    }

    header .navbar .logo-img {
        width: 160px;
    }

    .header-cta-text {
        font-size: 12px;
    }

    section#hero {
        padding-top: 65px;
        padding-bottom: 0;
    }

    section#hero .container {
        padding: 0;
        max-width: 100%;
    }

    section#hero .container .row {
        margin: 0;
    }

    section#hero .container .row .col-12 {
        padding: 0;
    }

    section#hero .login-container {
        background: var(--color-secondary);
        padding: 91px 28px;
    }

    section#hero h1 {
        font-size: 40px;
    }

    section#resources .contact-support,
    section#resources .tools-and-resources {
        padding: 42px 0
    }

    footer {
        padding: 51px 0 50px;
    }

    footer .footer-top .footer-custom-column {
        border-left: 0;
        padding-left: 12px;
    }

    footer .footer-top .footer-big-text {
        font-size: 3.5rem;
    }
}

.button-cursor {
    display: none !important;
}

.forgot-password {
    padding-top: 20px;
}

.forgot-password form {
    width: 50%;
}

.forgot-password form fieldset {
    width: 100%;
    margin-bottom: 20px;
}

.forgot-password .button {
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.forgot-password .atk-form-field {
    position: relative;
    margin-top: 20px;
}

.forgot-password .atk-form-row .placeholder-text {
    position: absolute !important;
    left: 5px !important;
    top: -17px !important;
    float: left !important;
    width: auto;
    color: #585858;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.forgot-password .atk-form-row.atk-form-row-password {
    padding-top: 9px;
}

.forgot-password .atk-form-row.atk-form-row-password .placeholder-text {
    top: -23px !important;
}

.forgot-password .atk-form-row input {
    border-color: #ffffff;
}

.forgot-password .button .atk-buttons {
    cursor: pointer;
}

.login-container .placeholder-text {
    display: none;
}

.field-error-text {
    color: #ff0000;
}

.fusion-alert {
    border-bottom-right-radius: 15px;
}

.fusion-alert .alert-icon i {
    font-size: 2.33em;
}


.cwp-hero {
    padding-left: 250px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.boxes h2 {
    line-height: 28px !important;
}

.fusion-content-boxes .heading .content-box-heading {
    margin: 0px;
}

.fusion-accordian .fusion-panel.fusion-toggle-no-divider.fusion-toggle-boxed-mode .panel-title a {
    font-size: 22px;
}

.fusion-accordian .panel-heading .panel-title a {
    color: #323333;
}

.attachment svg,.widget_media_image svg
{
    max-width:100%;
    height:auto;
}


.forgot-password {
    padding-top: 20px;
}

.forgot-password form {
    width: 50%;
}

.forgot-password form fieldset {
    width: 100%;
    margin-bottom: 20px;
}

.forgot-password .button {
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.forgot-password .atk-form-field {
    position: relative;
    margin-top: 20px;
}

.forgot-password .atk-form-row .placeholder-text {
    position: absolute !important;
    left: 5px !important;
    top: -17px !important;
    float: left !important;
    width: auto;
    color: #585858;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.forgot-password .atk-form-row.atk-form-row-password {
    padding-top: 9px;
}

.forgot-password .atk-form-row.atk-form-row-password .placeholder-text {
    top: -23px !important;
}

.forgot-password .atk-form-row input {
    border-color: #ffffff;
}

.forgot-password .button .atk-buttons {
    cursor: pointer;
}

.atk-growl {
    width: 100%;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    filter: alpha(opacity=85);
    -khtml-opacity: 0.85;
    -moz-opacity: 0.85;
    opacity: 1;
}

.atk-growl>div {
    width: 100%;
    margin-top: 2em;
    position: relative;
/height: 30px;/
}

.atk-growl>div:first-child {
    margin-top: 0;
}

.atk-growl>div .ui-icon-closethick {
    filter: alpha(opacity=0);
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.atk-growl>div:hover .ui-icon-closethick {
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.atk-notification {
    padding: 1em;
    position: relative;
}

.atk-notification .atk-notification-text {
    padding: 0 20px;
    text-align: center;
}

.atk-notification .atk-notification-text>.ui-icon {
    position: relative;
    vertical-align: text-bottom;
    display: inline-block;
    margin-right: 5px;
}

.atk-notification>a.ui-icon-closethick {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border-color: #fff2e6;
    margin-top: 1px;
    border-right: 0px;
    background-color: #fff2e6;
    padding: 12px 12px 12px 24px;
}

.atk-notification.auto-hide-view-box {
    display:none;
}