
/**
 * Download Modal
*/

.download-modal-popup h3    {
    font-size: 32px;
    text-transform: none;
    font-weight: 700;
}

.download-modal-popup.modal-popup._inner-scroll .modal-inner-wrap   {
    max-width: 600px;
}

.download-password-form    {
    margin-bottom: 20px;
}

.download-password-form input[type="password"]  {
    height: 50px;
    font-size: 18px;
    padding: 0 15px;
}


/**
 * Split Content
 */

.landing-split-container.container    {
    margin-bottom: 80px;
    text-align: center;
}

.landing-split-container h3     {
    font-size: 32px;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 60px;
}

.landing-panel h4   {
    font-size: 26px;
    font-weight: 600;
    text-transform: none;
    line-height: 1.25;
    margin: 0;
}

.landing-panel p   {
    margin-bottom: 20px;
}

.landing-panel h4 + p   {
    /*font-size: 22px;
    font-weight: 500;*/
    margin-bottom: 30px;
}

.landing-panel .landing-action-buttons  {
    margin-top: 30px;
}

.landing-panel .action.primary  {
    margin: 0 10px 20px;
}

.landing-panel:last-child h4  {
    color: #e59a33;
}

.landing-panel:last-child .action.primary   {
    background: #e59a33;
    color: #fff;
}

.landing-panel:last-child .action.primary:hover,
.landing-panel:last-child .action.primary:active,
.landing-panel:last-child .action.primary:focus     {
    background: #CE8B2E;
}

.landing-panel:first-child h4  {
    color: #376cab;
}

.landing-panel:first-child .action.primary   {
    background: #376cab;
    color: #fff;
}

.landing-panel:first-child .action.primary:hover,
.landing-panel:first-child .action.primary:active,
.landing-panel:first-child .action.primary:focus     {
    background: #31415F;
}

.landing-panel:first-child      {
    border-bottom: 1px solid #aaa;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {

    .landing-split      {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 100px;
        position: relative;
    }

    .landing-split:before {
        content: ' ';
        border-right: 1px solid #aaa;
        position: absolute;
        top: 0;
        right: 50%;
        bottom: 0;
        height: auto;
    }

    .landing-panel  {
        max-width: 500px;
        margin: 0 auto;
    }

    .landing-panel:first-child  {
        border: 0;
        padding: 0;
        margin: 0;
    }

}


/**
 * Banner
 */

.landing-banner-container    {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 60px;
}

.landing-banner-container .mask     {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.landing-banner   {
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.landing-banner h1    {
    color: #fff;
    font-size: 42px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    position: relative;
}

.landing-banner img     {
    max-height: 60px;
    width: auto;
}

@media (min-width: 768px) {
    .landing-banner h1    {
        font-size: 68px;
    }
}


/**
   * Questions
   */

.landing-question     {
    background: #376cab;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.landing-question h4  {
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 40px;
}

.landing-question h4 strong   {
    font-weight: 700;
}

.landing-question .action.primary     {
    background: #fff;
    color: #376cab;
    text-transform: none;
    font-weight: 600;
}

.landing-question .action.primary:hover,
.landing-question .action.primary:focus,
.landing-question .action.primary:active  {
    background: #f5f5f5;
    color: #376cab;
}


/**
 * Intro
 */

.landing-introduction     {
    margin-bottom: 60px;
}

.landing-introduction h1  {
    padding: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    text-transform: none;
}

.landing-introduction p   {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.landing-introduction .aside  {
    margin-top: 40px;
}


/**
 * Downloads
 */

.downloads-hub  {
    background: #f6f6f6;
    padding: 40px 30px;
    text-align: center;
}

.downloads-hub h3   {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.downloads-hub p    {
    font-size: 24px;
    margin-bottom: 40px;
}

.downloads-hub ul   {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}

.downloads-hub li   {
    margin: 0;
}

.downloads-hub .action.primary {
    width: 100%;
    padding: 10px;
    user-select: none;
}

@media (min-width: 768px) {
    .landing-introduction     {
        display: grid;
        grid-template-columns: 1fr 250px;
        grid-gap: 40px;
        align-items: center;
    }

    .landing-introduction .aside  {
        margin-top: 0;
    }
    .downloads-hub ul   {
        grid-template-columns: 1fr;
    }
    .downloads-hub .action.primary {
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .landing-introduction     {
        grid-template-columns: 1fr 450px;
        grid-gap: 80px;
    }
    .landing-introduction .detail   {
        padding-right: 100px;
    }
    .downloads-hub ul   {
        grid-template-columns: 1fr 1fr;
    }
}


/**
 * CTA
 */

.landing-cta-container    {
    background: #eee;
    padding: 40px 0;
    margin-bottom: 80px;
}

.landing-cta-container .container   {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.landing-cta-container h3   {
    font-size: 32px;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 40px;
    text-align: center;
}

.landing-cta  {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.landing-cta:not(.slick-initialized)    {
    height: 440px;
    overflow: hidden;
    visibility: hidden;
}

.landing-cta li    {
    margin: 0;
    background: #fff;
    padding: 60px 40px 60px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    line-height: 1.25;
}

.landing-cta h3   {
    text-transform: none;
    font-weight: 700;
    font-size: 26px;
    margin: 0 0 5px;
}

.landing-cta h4     {
    color: #002E60;
}

.landing-cta .container     {
    position: relative;
}

.landing-cta .slick-slide > div     {
    margin: 0 20px;
}

.landing-cta .slick-track    {
    display: flex !important;
}

.landing-cta .slick-track .slick-slide  {
    height: auto !important;
}

.landing-cta .slick-track .slick-slide > div,
.landing-cta .slick-track .slick-slide > div > li   {
    height: 100%;
}


.landing-cta .landing-image     {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.landing-cta .action.primary  {
    text-transform: none;
    display: block;
    max-width: 320px;
    margin: 30px auto 0;
    width: 100%;
}

.landing-arrow  {
    background: #376cab;
    width: 51px;
    height: 51px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    transition: all 0.2s;
    display: flex !important;
}

.landing-arrow.landing-right    {
    left: auto;
    right: 10px;
}

.landing-arrow:hover,
.landing-arrow:active   {
    background: #2F5E98;
}

.landing-lower-text     {
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 575px) {
    .landing-arrow  {
        left: -10px;
    }
    .landing-arrow.landing-right    {
        right: -10px;
    }
}

@media (min-width: 768px) {
    .landing-cta  {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {

    .landing-cta  {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 40px;
    }

}

@media (min-width: 1130px) {
    .landing-arrow  {
        left: -60px;
    }

    .landing-arrow.landing-right    {
        right: -60px;
    }
}

@media (min-width: 1200px) {

    .landing-arrow.hide-desktop     {
        display: none !important
    }

}