/* Import Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
/* Global Styles */
#arubaAC-Landing p, span {
    color:#fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
}

#arubaAC-Landing h1, h2, h3, h4, h5 {
    color:#fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
}

#arubaAC-Landing p.small {
    margin-top: 2rem;
}

#arubaAC-Landing img {
    width: 100%;
}

/* Buttons */
#arubaAC-Landing a.main-btn,
#arubaAC-Landing input[type="submit"].main-btn  {
    background-color:#ef8933;
    color:#fff;
    font-weight: 500;
    border-radius: 100px;
    padding: 1rem 2rem 1rem 2rem;
    border: 0px;
}

#arubaAC-Landing a.main-btn:hover {
    background-color:#ff4c00;
    color:#fff;
    text-decoration: none;
}

/* Header Section */
#arubaAC-Landing section.header {
    background-image: url('../images/header-bg.png');
    background-size: cover;
    padding:2rem;
    margin-bottom: 3rem;
    background-position: center center;
}

#arubaAC-Landing .logo img {
    margin-bottom: 2rem;
    width: 430px;
}

#arubaAC-Landing section.header .logo-subTitle {
    font-size: 37px;
    color: #fff;
    font-weight: 200;
    margin-bottom: 2rem;
}

#arubaAC-Landing section.header .left-content {
    padding: 0;
}


/* Register Section */

#arubaAC-Landing section.register {
    margin-bottom: 3rem;
}

#arubaAC-Landing section.register .right-content {
    padding: 0 0 0 3rem;
    text-align: center;
}

#arubaAC-Landing section.register .right-content p, #arubaAC-Landing section.register .right-content h2  {
    color: #000;
    margin-bottom: 2rem;
}

#arubaAC-Landing section.register .right-content div {
    /*display: flex;*/
    flex-wrap: wrap;
}

#arubaAC-Landing section.register .right-content .form-field {
    /*width: 50%;*/
    text-align: left;
	/*float: left;*/
}
#arubaAC-Landing section.register .right-content .form-field:nth-child(odd)  {
    padding: 0 6px 6px 0;
}
#arubaAC-Landing section.register .right-content .form-field:nth-child(even)  {
    padding: 0 0 6px 6px;
}
#arubaAC-Landing section.register .right-content .form-field label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin: 0px;
    padding: 0 0 5px 0;
}
#arubaAC-Landing section.register .right-content .form-field label.error {
    color: red;
}
#arubaAC-Landing section.register .right-content .form-field input,
#arubaAC-Landing section.register .right-content .form-field select {
    display: block;
    width: 100%;
    padding: 6px;
    border-radius: 7px;
    border: 1px solid #cacbcb;
}
#arubaAC-Landing section.register .right-content .form-field .select-wrapper {
    position: relative;
}
#arubaAC-Landing section.register .right-content .form-field .select-wrapper::after {
    content: '';
    width: 24px;
    height: 10px;
    background: url(../images/icons/dropdown-icon.svg) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    top: 14px;
    right: 14px;
}
#arubaAC-Landing section.register .right-content .form-field select {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding: 6px 40px 6px 6px;
}
#arubaAC-Landing section.register .right-content .form-field select::-ms-expand {
    display: none;
}
#arubaAC-Landing section.register .right-content div input[type="submit"] {
    margin: 10px auto 0 auto;
    padding: .5rem 4rem .5rem 4rem;
    font-size: 20px;
}
#arubaAC-Landing section.register .right-content div .opt-in {
    width: 100%;
    text-align: left;
    padding: 10px 0 0 0;
}
#arubaAC-Landing section.register .right-content div .opt-in label.opt-in-input-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
}
#arubaAC-Landing section.register .right-content div .opt-in label.opt-in-input-label::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/icons/checkbox-unchecked.svg) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0px
    
}
#arubaAC-Landing section.register .right-content div .opt-in input[type="checkbox"] {
    display: none;
}
#arubaAC-Landing section.register .right-content div .opt-in input[type="checkbox"]:checked + label.opt-in-input-label::before {
    background: url(../images/icons/checkbox-checked.svg) 0 0 no-repeat;
}
#arubaAC-Landing section.register .right-content div .opt-in p {
    font-size: 11px;
    padding: 10px 0 0 0;
    margin: 0px;
}
#arubaAC-Landing section.register .right-content .custom-error {
    display: none;
    font-weight: 600;
    font-size: 13px;
    color: red;
    margin: 0px;
    padding: 0 0 5px 0;
}
#arubaAC-Landing section.register .right-content .custom-error.active {
    display: block;
}
#arubaAC-Landing section.register .right-content.submitted div {
    pointer-events: none;
}
#arubaAC-Landing section.register .right-content.submitted .form-field input,
#arubaAC-Landing section.register .right-content.submitted .form-field select {
    background: #e0e0e0;
}
#arubaAC-Landing section.register .right-content.submitted div input[type="submit"] {
    opacity: 0.5;
}
#arubaAC-Landing section.register .right-content.submitted div .opt-in label::before {
    background: url(../images/icons/checkbox-disabled.svg) 0 0 no-repeat;
}
#arubaAC-Landing section.register .right-content .thank-you-message {
    display: none;
}
#arubaAC-Landing section.register .right-content .thank-you-message h3 {
    color: #000;
    font-weight: 600;
    margin: 0 0 5px 0;
}
#arubaAC-Landing section.register .right-content .thank-you-message p {
    font-weight: 400;
    font-size: 18px;
}
#arubaAC-Landing section.register .right-content.submitted .thank-you-message {
    display: block;
}

/* Benefits Section */
#arubaAC-Landing section.benefits {
    margin-bottom: 3rem;
    color:#000;
}

#arubaAC-Landing section.benefits h2 {
    color:#000;
    font-size: 42px;
    font-weight: 600;
    padding: 2rem 5rem 2rem 5rem;
}

#arubaAC-Landing section.benefits p {
    color:#000;
}

#arubaAC-Landing section.benefits .benefits {
    display: flex;
    flex-wrap: wrap; 
}

#arubaAC-Landing section.benefits  .benefits-item {
    padding:1rem;
}

#arubaAC-Landing section.benefits  .benefits-item img {
    width: auto;
}

#arubaAC-Landing section.benefits .benefits h3 {
    color:#000;
    font-size: 18px;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Terms Section */
#arubaAC-Landing section.terms {
    margin-bottom: 3rem;
}

#arubaAC-Landing section.terms h4 {
    color:#000;
    font-weight: 600;
}


/* Responsive Styles*/

  /*Tablets*/
  @media screen and (max-width: 991px) {
    #arubaAC-Landing section.register .right-content {
        padding: 40px 0 0 0;
    }

    #arubaAC-Landing section.benefits h2 {
        padding: 1rem;
    }

    /* Signup btn */
    #arubaAC-Landing a.main-btn {
        font-size:0.565rem;
    }
  }

/*Mobile*/
@media screen and (max-width: 576px) {
    #arubaAC-Landing .logo img {
        width:100%;
    }

    #arubaAC-Landing section.register .right-content .form-field {
        width: 100%;
    }
    #arubaAC-Landing section.register .right-content .form-field:nth-child(even) {
        padding: 0 0 10px 0;
    }
    #arubaAC-Landing section.register .right-content .form-field:nth-child(odd) {
        padding: 0 0 10px 0;
    }
    #arubaAC-Landing section.benefits h2 {
        padding: 0;
        font-size: 32px;
    }

    /* Signup btn */
    #arubaAC-Landing a.main-btn {
        font-size:0.565rem;
    }
  }

  /*-------- Footer 05 May 2021---------*/
.footer {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

    .footer li {
        margin-bottom: 1rem;
    }

    .footer .container {
        width: 90%;
    }


@media (min-width: 300px) {
    .footer-wrap-v2 {
        padding: 50px 0 0;
    }

    .footer-wrap {
        width: 100%;
        background-color: #f4f5f7;
        padding: 50px 0 0;
        position: relative;
        overflow: hidden;
    }

        .footer-wrap:before {
            content: "";
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            height: 10px;
            -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
            -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
            box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
            z-index: 0;
        }

        .footer-wrap .columns {
            text-align: center;
        }

    .footer ul {
        padding-left: 0;
    }

    .footer-wrap-v2 .footer-nav li.columns {
        display: block;
        margin-bottom: 30px;
    }

    .footer-wrap-v2 .footer-nav li {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .footer-wrap-v2.footer-wrap .footer-legal-nav li {
        display: block;
        width: 100%;
        padding: 0;
        text-align: left;
    }

        .footer-wrap-v2.footer-wrap .footer-legal-nav li a {
            font-size: 14px;
        }


    .footer-wrap .footer-legal-nav li {
        list-style: none;
        float: none;
        margin-right: 30px;
        display: inline-block;
    }

        .footer-wrap .footer-legal-nav li a {
            font-size: 12px;
            color: #000;
            text-decoration: none;
        }

    .footer-wrap-v2.footer-wrap .footer-legal-nav {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 20px;
    }


    .footer-wrap-v2 .footer-nav li a {
        font-size: 16px;
        color: #222;
        font-weight: 400;
        margin-bottom: 18px;
        display: inline-block;
        width: 100%;
    }

        .footer-wrap-v2 .footer-nav li a.foot-logo {
            position: static;
            margin: auto !important;
            margin-bottom: 20px !important;
            max-width: 246px;
        }

    .footer .sub-menu {
        list-style-position: inside;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }



    .footer-wrap-v2 .sociallink-wrap .sub-menu li a {
        display: inline-block;
        width: 34px !important;
        height: 34px;
        background: 0 0;
        border: 1px solid #5c0f8b;
        border-radius: 100%;
        text-align: center;
        line-height: 30px;
        overflow: hidden;
        text-indent: 1200px;
        position: relative;
        transition: all ease .4s;
    }


    .footer-wrap-v2.footer-wrap .footer-bottom {
        margin-top: 0;
    }

    .footer-wrap-v2.footer-wrap .footer-bottom {
        padding: 15px 0;
        border-top: 1px solid #5c0f8b;
    }

    .footer-wrap-v2.footer-wrap .copyright {
        text-align: left;
        margin-left: auto;
        font-size: 14px;
        margin: 0;
        color: #000;
        display: inline-block;
    }

    .footer-wrap-v2.footer-wrap .footer-legal-nav {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
        display: inline-block;
        text-align: left;
    }


    .footer .columns {
        width: 100%;
        float: left;
        box-sizing: border-box;
    }
}


@media (min-width: 750px) {
    .footer .footer-wrap {
        padding: 40px 0 0;
    }

    .footer .twelve.columns {
        width: 100%;
        margin-left: 0;
    }

    .footer .seven.columns {
        width: 57.5%;
    }

    .footer .five.columns {
        width: 40.5%;
    }

    .footer-wrap-v2.footer-wrap .footer-legal-nav li {
        width: auto !important;
    }

    .footer-wrap-v2.footer-wrap .copyright {
        text-align: right;
    }

    .footer-wrap .copyright {
        margin: 0;
        text-align: right;
        font-size: 12px;
        color: #000;
        float: right;
    }

    .footer-wrap-v2.footer-wrap .footer-legal-nav {
        margin-bottom: 0;
        margin-top: 0;
    }

    .footer-wrap .footer-legal-nav {
        margin: 0;
        padding: 0;
        float: left;
        text-align: left;
    }

        .footer-wrap .footer-legal-nav li {
            list-style: none;
            float: left !important;
            margin-right: 25px;
        }

            .footer-wrap .footer-legal-nav li a {
                font-size: 14px;
                color: #000;
                text-decoration: none;
            }
}

.site-footer:before {
    content: "";
    display: table;
    table-layout: fixed;
}

@media screen and (min-width: 1025px) {
    .footer-wrap-v2 .footer-nav li.aio-logo {
        float: right;
        width: 300px;
    }
}

