.banner.style1 {
    -moz-align-items: -moz-stretch;
    -webkit-align-items: -webkit-stretch;
    -ms-align-items: -ms-stretch;
    align-items: stretch;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: -moz-flex-end;
    -webkit-justify-content: -webkit-flex-end;
    -ms-justify-content: -ms-flex-end;
    justify-content: flex-end;
    position: relative;
    text-align: left;
    overflow-x: hidden;
}

.banner.style1 .content {
    padding: 7rem 7rem 5rem 7rem;
    -moz-align-self: center;
    -webkit-align-self: center;
    -ms-align-self: center;
    align-self: center;
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    width: 50%;
    max-width: 48rem;
    margin: 0 auto;
}

.banner.style1 .image {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    border-radius: 0;
    width: 50%;
}

.banner.style1 .image img {
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

@media screen and (max-width: 1680px) {
    .banner.style1 .content {
        padding: 5rem 5rem 3rem 5rem;
    }
}

@media screen and (max-width: 1280px) {
    .banner.style1 .content {
        padding: 4rem 4rem 2rem 4rem;
    }
}

@media screen and (max-width: 980px) {
    .banner.style1 .content {
        padding: 3.75rem 3rem 1.75rem 3rem;
    }
}

@media screen and (max-width: 736px) {
    .banner.style1 .content {
        padding: 2.5rem 2rem 0.5rem 2rem;
    }
}

@media screen and (orientation: portrait) {
    .banner.style1 {
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center;
    }
    .banner.style1 .content {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    .banner.style1 .image {
        width: 100%;
        max-width: 100%;
        height: 45vh;
    }
}

.banner.style1.fullscreen {
    min-height: 100vh;
}

@media screen and (orientation: portrait) {
    .banner.style1.fullscreen .content {
        min-height: 50vh;
    }
    .banner.style1.fullscreen .image {
        height: 50vh;
    }
}

.banner.style1.orient-right {
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media screen and (orientation: portrait) {
    .banner.style1.orient-right {
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.banner.style1.content-align-center {
    text-align: center;
}

.banner.style1.content-align-right {
    text-align: right;
}

@media screen and (orientation: portrait) {
    .banner.style1.content-align-right {
        text-align: center;
    }
}

.banner.style1.image-position-left .image img {
    -moz-object-position: left;
    -webkit-object-position: left;
    -ms-object-position: left;
    object-position: left;
}

.banner.style1.image-position-right .image img {
    -moz-object-position: right;
    -webkit-object-position: right;
    -ms-object-position: right;
    object-position: right;
}


/* Banner (style2) */

.banner.style2 {
    padding: 5.25rem 5.25rem 3.25rem 5.25rem;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    background-color: inherit;
    position: relative;
    text-align: center;
    overflow-x: hidden;
}

.banner.style2 .content {
    padding: 5.25rem 5.25rem 3.25rem 5.25rem;
    position: relative;
    width: 40rem;
    max-width: 100%;
    background-color: inherit;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    z-index: 1;
}

.banner.style2 .image {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
}

.banner.style2 .image img {
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

@media screen and (max-width: 1680px) {
    .banner.style2 {
        padding: 3.75rem 3.75rem 1.75rem 3.75rem;
    }
    .banner.style2 .content {
        padding: 3.75rem 3.75rem 1.75rem 3.75rem;
    }
}

@media screen and (max-width: 1280px) {
    .banner.style2 {
        padding: 4rem 3rem 2rem 3rem;
    }
    .banner.style2 .content {
        padding: 4rem 3rem 2rem 3rem;
    }
}

@media screen and (max-width: 980px) {
    .banner.style2 {
        padding: 3rem 3rem 1rem 3rem;
    }
    .banner.style2 .content {
        padding: 3.75rem 2.25rem 1.75rem 2.25rem;
    }
}

@media screen and (max-width: 736px) {
    .banner.style2 {
        padding: 2rem 2rem 0.1rem 2rem;
    }
    .banner.style2 .content {
        padding: 2.5rem 1.5rem 0.5rem 1.5rem;
    }
}

.banner.style2.fullscreen {
    min-height: 100vh;
}

.banner.style2.orient-left {
    -moz-justify-content: -moz-flex-start;
    -webkit-justify-content: -webkit-flex-start;
    -ms-justify-content: -ms-flex-start;
    justify-content: flex-start;
    padding-left: 0;
}

.banner.style2.orient-left .content {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.banner.style2.orient-right {
    -moz-justify-content: -moz-flex-end;
    -webkit-justify-content: -webkit-flex-end;
    -ms-justify-content: -ms-flex-end;
    justify-content: flex-end;
    padding-right: 0;
}

.banner.style2.orient-right .content {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.banner.style2.content-align-left {
    text-align: left;
}

.banner.style2.content-align-right {
    text-align: right;
}

.banner.style2.image-position-left .image img {
    -moz-object-position: left;
    -webkit-object-position: left;
    -ms-object-position: left;
    object-position: left;
}

.banner.style2.image-position-right .image img {
    -moz-object-position: right;
    -webkit-object-position: right;
    -ms-object-position: right;
    object-position: right;
}


/* Banner (style3) */

.banner.style3 {
    padding: 7rem 7rem 5rem 7rem;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    position: relative;
    text-align: left;
    overflow-x: hidden;
}

.banner.style3 .content {
    width: 31.5rem;
    max-width: 100%;
}

.banner.style3 .image {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    width: 21rem;
    height: 21rem;
    border-radius: 100%;
    margin: 0 3.5rem 2rem 0;
}

.banner.style3 .image img {
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    object-position: center;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

@media screen and (max-width: 1680px) {
    .banner.style3 {
        padding: 5rem 5rem 3rem 5rem;
    }
}

@media screen and (max-width: 1280px) {
    .banner.style3 {
        padding: 4rem 4rem 2rem 4rem;
    }
}

@media screen and (max-width: 980px) {
    .banner.style3 {
        padding: 3.75rem 3rem 1.75rem 3rem;
    }
    .banner.style3 .image {
        width: 18.375rem;
        height: 18.375rem;
    }
}

@media screen and (max-width: 736px) {
    .banner.style3 {
        padding: 2.5rem 2rem 0.5rem 2rem;
        -moz-align-items: -moz-flex-start;
        -webkit-align-items: -webkit-flex-start;
        -ms-align-items: -ms-flex-start;
        align-items: flex-start;
    }
    .banner.style3 .image {
        width: 15.75rem;
        height: 15.75rem;
        margin: 0 2rem 2rem 0;
    }
}

@media screen and (orientation: portrait) {
    .banner.style3 {
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center;
    }
    .banner.style3 .content {
        width: 34rem;
        max-width: 100%;
    }
    .banner.style3 .image {
        margin-right: 0;
    }
}

.banner.style3.fullscreen {
    min-height: 100vh;
}

.banner.style3.orient-left {
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.banner.style3.orient-left .image {
    margin: 0 0 2rem 3.5rem;
}

@media screen and (max-width: 736px) {
    .banner.style3.orient-left .image {
        margin: 0 0 2rem 2rem;
    }
}

@media screen and (orientation: portrait) {
    .banner.style3.orient-left {
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .banner.style3.orient-left .image {
        margin-left: 0;
    }
}

.banner.style3.content-align-center {
    text-align: center;
}

.banner.style3.content-align-right {
    text-align: right;
}

.banner.style3.image-position-left .image img {
    -moz-object-position: left;
    -webkit-object-position: left;
    -ms-object-position: left;
    object-position: left;
}

.banner.style3.image-position-right .image img {
    -moz-object-position: right;
    -webkit-object-position: right;
    -ms-object-position: right;
    object-position: right;
}


/* Banner (style4) */

.banner.style4 {
    padding: 7rem 7rem 5rem 7rem;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    position: relative;
    text-align: left;
    overflow-x: hidden;
}

.banner.style4 .content {
    width: 31.5rem;
    max-width: 100%;
}

.banner.style4 .image {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    border-radius: 0;
    border: solid 1px;
    width: 13rem;
    height: 23.11111rem;
    margin-top: 2.5rem;
    margin-bottom: 5rem;
    margin-right: 3.5rem;
}

.banner.style4 .image img {
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    object-position: center;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.banner.style4 .image:before {
    content: '';
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    border: solid 1px;
    border-bottom: 0;
}

.banner.style4 .image:after {
    content: '';
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    border: solid 1px;
    border-top: 0;
}

.banner.style4 .image:before {
    height: 2.5rem;
    background-size: 64px 32px;
    margin-top: -2.5rem;
    border-radius: 1rem 1rem 0 0;
}

.banner.style4 .image:after {
    height: 3rem;
    background-size: 64px 32px;
    margin-bottom: -3rem;
    border-radius: 0 0 1rem 1rem;
}

@media screen and (max-width: 1680px) {
    .banner.style4 {
        padding: 5rem 5rem 3rem 5rem;
    }
}

@media screen and (max-width: 1280px) {
    .banner.style4 {
        padding: 4rem 4rem 2rem 4rem;
    }
}

@media screen and (max-width: 980px) {
    .banner.style4 {
        padding: 3.75rem 3rem 1.75rem 3rem;
    }
    .banner.style4 .image {
        width: 11.375rem;
        height: 20.22222rem;
        margin-top: 2.1875rem;
        margin-bottom: 4.625rem;
    }
    .banner.style4 .image:before {
        height: 2.1875rem;
        background-size: 56px 28px;
        margin-top: -2.1875rem;
        border-radius: 0.875rem 0.875rem 0 0;
    }
    .banner.style4 .image:after {
        height: 2.625rem;
        background-size: 56px 28px;
        margin-bottom: -2.625rem;
        border-radius: 0 0 0.875rem 0.875rem;
    }
}

@media screen and (max-width: 736px) {
    .banner.style4 {
        padding: 2.5rem 2rem 0.5rem 2rem;
        -moz-align-items: -moz-flex-start;
        -webkit-align-items: -webkit-flex-start;
        -ms-align-items: -ms-flex-start;
        align-items: flex-start;
    }
    .banner.style4 .image {
        width: 8.125rem;
        height: 14.44444rem;
        margin-top: 1.5625rem;
        margin-bottom: 3.875rem;
    }
    .banner.style4 .image:before {
        height: 1.5625rem;
        background-size: 40px 20px;
        margin-top: -1.5625rem;
        border-radius: 0.625rem 0.625rem 0 0;
    }
    .banner.style4 .image:after {
        height: 1.875rem;
        background-size: 40px 20px;
        margin-bottom: -1.875rem;
        border-radius: 0 0 0.625rem 0.625rem;
    }
}

@media screen and (orientation: portrait) {
    .banner.style4 {
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center;
    }
    .banner.style4 .content {
        width: 34rem;
        max-width: 100%;
    }
    .banner.style4 .image {
        margin-right: 0;
        margin-left: 0;
    }
}

.banner.style4.fullscreen {
    min-height: 100vh;
}

.banner.style4.orient-left {
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.banner.style4.orient-left .image {
    margin-right: 0;
    margin-left: 3.5rem;
}

@media screen and (orientation: portrait) {
    .banner.style4.orient-left {
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .banner.style4.orient-left .image {
        margin-right: 0;
        margin-left: 0;
    }
}

.banner.style4.content-align-center {
    text-align: center;
}

.banner.style4.content-align-right {
    text-align: right;
}

.banner.style4.image-position-left .image img {
    -moz-object-position: left;
    -webkit-object-position: left;
    -ms-object-position: left;
    object-position: left;
}

.banner.style4.image-position-right .image img {
    -moz-object-position: right;
    -webkit-object-position: right;
    -ms-object-position: right;
    object-position: right;
}


/* Banner (style5) */

.banner.style5 {
    padding: 7rem 7rem 5rem 7rem;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    background-color: inherit;
    position: relative;
    text-align: center;
    overflow-x: hidden;
}

.banner.style5 .content {
    position: relative;
    width: 40rem;
    max-width: 100%;
    margin-bottom: 2rem;
    z-index: 1;
}

.banner.style5 .image {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    opacity: 0.5;
}

.banner.style5 .image img {
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

@media screen and (max-width: 1680px) {
    .banner.style5 {
        padding: 5rem 5rem 3rem 5rem;
    }
}

@media screen and (max-width: 1280px) {
    .banner.style5 {
        padding: 4rem 4rem 2rem 4rem;
    }
}

@media screen and (max-width: 980px) {
    .banner.style5 {
        padding: 3.75rem 3rem 1.75rem 3rem;
    }
}

@media screen and (max-width: 736px) {
    .banner.style5 {
        padding: 2.5rem 2rem 0.5rem 2rem;
    }
}

.banner.style5.fullscreen {
    min-height: 100vh;
}

.banner.style5.content-align-left {
    text-align: left;
}

.banner.style5.content-align-right {
    text-align: right;
}

.banner.style5.image-position-left .image img {
    -moz-object-position: left;
    -webkit-object-position: left;
    -ms-object-position: left;
    object-position: left;
}

.banner.style5.image-position-right .image img {
    -moz-object-position: right;
    -webkit-object-position: right;
    -ms-object-position: right;
    object-position: right;
}

.banner .image {
    /* background-color: rgba(0, 0, 0, 0.125); */
}

.banner.invert .image {
    background-color: rgba(255, 255, 255, 0.125);
}

.banner.style4 .image {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    border-width: 0;
}

.banner.style4 .image:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='32px' viewBox='0 0 64 32' zoomAndPan='disable'%3E%3Cstyle%3Erect %7Bfill: transparent%3B stroke: rgba(0, 0, 0, 0.2)%3B stroke-width: 1px%3B %7D%3C/style%3E%3Crect rx='4' ry='4' x='11' y='12' width='42' height='8' vector-effect='non-scaling-stroke' /%3E%3C/svg%3E");
    border-color: rgba(0, 0, 0, 0.2);
    width: 100%;
}

.banner.style4 .image:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='32px' viewBox='0 0 64 32' zoomAndPan='disable'%3E%3Cstyle%3Ecircle %7Bfill: transparent%3B stroke: rgba(0, 0, 0, 0.2)%3B stroke-width: 1px%3B %7D%3C/style%3E%3Ccircle cx='32' cy='16' r='14' vector-effect='non-scaling-stroke' /%3E%3C/svg%3E");
    border-color: rgba(0, 0, 0, 0.2);
    width: 100%;
}

.banner.style4.android .image:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='32px' viewBox='0 0 64 32' zoomAndPan='disable'%3E%3Cstyle%3Erect %7Bfill: transparent%3B stroke: rgba(0, 0, 0, 0.2)%3B stroke-width: 1px%3B %7D%3C/style%3E%3Crect rx='4' ry='4' x='6' y='4' width='52' height='24' vector-effect='non-scaling-stroke' /%3E%3C/svg%3E");
}

.banner.style4.invert .image {
    border-color: white;
    background-color: white;
    border-width: 1px;
}

.banner.style4.invert .image:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='32px' viewBox='0 0 64 32' zoomAndPan='disable'%3E%3Cstyle%3Erect %7Bfill: transparent%3B stroke: white%3B stroke-width: 1px%3B %7D%3C/style%3E%3Crect rx='4' ry='4' x='11' y='12' width='42' height='8' vector-effect='non-scaling-stroke' /%3E%3C/svg%3E");
    border-color: white;
    width: calc(100% + 2px);
    margin-left: -1px;
}

.banner.style4.invert .image:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='32px' viewBox='0 0 64 32' zoomAndPan='disable'%3E%3Cstyle%3Ecircle %7Bfill: transparent%3B stroke: white%3B stroke-width: 1px%3B %7D%3C/style%3E%3Ccircle cx='32' cy='16' r='14' vector-effect='non-scaling-stroke' /%3E%3C/svg%3E");
    border-color: white;
    width: calc(100% + 2px);
    margin-left: -1px;
}

.banner.style4.invert.android .image:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='32px' viewBox='0 0 64 32' zoomAndPan='disable'%3E%3Cstyle%3Erect %7Bfill: transparent%3B stroke: white%3B stroke-width: 1px%3B %7D%3C/style%3E%3Crect rx='4' ry='4' x='6' y='4' width='52' height='24' vector-effect='non-scaling-stroke' /%3E%3C/svg%3E");
}


/* Wrapper (style1) */

.wrapper.style1>.inner {
    padding: 7rem 3.5rem 5rem 3.5rem;
    margin: 0 auto;
    max-width: 100%;
    width: 64rem;
}

.wrapper.style1>.inner.medium {
    width: 48rem;
}

.wrapper.style1>.inner.small {
    width: 32rem;
}

@media screen and (max-width: 1680px) {
    .wrapper.style1>.inner {
        padding: 5rem 2.5rem 3rem 2.5rem;
    }
}

@media screen and (max-width: 1280px) {
    .wrapper.style1>.inner {
        padding: 4rem 4rem 2rem 4rem;
    }
}

@media screen and (max-width: 980px) {
    .wrapper.style1>.inner {
        padding: 4.5rem 3rem 2.5rem 3rem;
    }
}

@media screen and (max-width: 736px) {
    .wrapper.style1>.inner {
        padding: 3rem 2rem 1rem 2rem;
    }
}


/* Items (transitions) */

.items.onload-fade-in>*>.inner {
    -moz-transition: opacity 0.75s ease-in-out;
    -webkit-transition: opacity 0.75s ease-in-out;
    -ms-transition: opacity 0.75s ease-in-out;
    transition: opacity 0.75s ease-in-out;
    -moz-transition-delay: 2.4s;
    -webkit-transition-delay: 2.4s;
    -ms-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.items.onload-fade-in>*:nth-child(1)>.inner {
    -moz-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.items.onload-fade-in>*:nth-child(2)>.inner {
    -moz-transition-delay: 0.15s;
    -webkit-transition-delay: 0.15s;
    -ms-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.items.onload-fade-in>*:nth-child(3)>.inner {
    -moz-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.items.onload-fade-in>*:nth-child(4)>.inner {
    -moz-transition-delay: 0.45s;
    -webkit-transition-delay: 0.45s;
    -ms-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.items.onload-fade-in>*:nth-child(5)>.inner {
    -moz-transition-delay: 0.6s;
    -webkit-transition-delay: 0.6s;
    -ms-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.items.onload-fade-in>*:nth-child(6)>.inner {
    -moz-transition-delay: 0.75s;
    -webkit-transition-delay: 0.75s;
    -ms-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.items.onload-fade-in>*:nth-child(7)>.inner {
    -moz-transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    -ms-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.items.onload-fade-in>*:nth-child(8)>.inner {
    -moz-transition-delay: 1.05s;
    -webkit-transition-delay: 1.05s;
    -ms-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.items.onload-fade-in>*:nth-child(9)>.inner {
    -moz-transition-delay: 1.2s;
    -webkit-transition-delay: 1.2s;
    -ms-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.items.onload-fade-in>*:nth-child(10)>.inner {
    -moz-transition-delay: 1.35s;
    -webkit-transition-delay: 1.35s;
    -ms-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.items.onload-fade-in>*:nth-child(11)>.inner {
    -moz-transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    -ms-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.items.onload-fade-in>*:nth-child(12)>.inner {
    -moz-transition-delay: 1.65s;
    -webkit-transition-delay: 1.65s;
    -ms-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.items.onload-fade-in>*:nth-child(13)>.inner {
    -moz-transition-delay: 1.8s;
    -webkit-transition-delay: 1.8s;
    -ms-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.items.onload-fade-in>*:nth-child(14)>.inner {
    -moz-transition-delay: 1.95s;
    -webkit-transition-delay: 1.95s;
    -ms-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.items.onload-fade-in>*:nth-child(15)>.inner {
    -moz-transition-delay: 2.1s;
    -webkit-transition-delay: 2.1s;
    -ms-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.items.onload-fade-in>*:nth-child(16)>.inner {
    -moz-transition-delay: 2.25s;
    -webkit-transition-delay: 2.25s;
    -ms-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.items.onload-fade-in>*:nth-child(17)>.inner {
    -moz-transition-delay: 2.4s;
    -webkit-transition-delay: 2.4s;
    -ms-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

body.is-preload .items.onload-fade-in>*>.inner {
    opacity: 0;
}

.items.onscroll-fade-in>*>.inner {
    -moz-transition: opacity 0.75s ease-in-out;
    -webkit-transition: opacity 0.75s ease-in-out;
    -ms-transition: opacity 0.75s ease-in-out;
    transition: opacity 0.75s ease-in-out;
    -moz-transition-delay: 2.4s;
    -webkit-transition-delay: 2.4s;
    -ms-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.items.onscroll-fade-in>*:nth-child(1)>.inner {
    -moz-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.items.onscroll-fade-in>*:nth-child(2)>.inner {
    -moz-transition-delay: 0.15s;
    -webkit-transition-delay: 0.15s;
    -ms-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.items.onscroll-fade-in>*:nth-child(3)>.inner {
    -moz-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.items.onscroll-fade-in>*:nth-child(4)>.inner {
    -moz-transition-delay: 0.45s;
    -webkit-transition-delay: 0.45s;
    -ms-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.items.onscroll-fade-in>*:nth-child(5)>.inner {
    -moz-transition-delay: 0.6s;
    -webkit-transition-delay: 0.6s;
    -ms-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.items.onscroll-fade-in>*:nth-child(6)>.inner {
    -moz-transition-delay: 0.75s;
    -webkit-transition-delay: 0.75s;
    -ms-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.items.onscroll-fade-in>*:nth-child(7)>.inner {
    -moz-transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    -ms-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.items.onscroll-fade-in>*:nth-child(8)>.inner {
    -moz-transition-delay: 1.05s;
    -webkit-transition-delay: 1.05s;
    -ms-transition-delay: 1.05s;
    transition-delay: 1.05s;
}

.items.onscroll-fade-in>*:nth-child(9)>.inner {
    -moz-transition-delay: 1.2s;
    -webkit-transition-delay: 1.2s;
    -ms-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.items.onscroll-fade-in>*:nth-child(10)>.inner {
    -moz-transition-delay: 1.35s;
    -webkit-transition-delay: 1.35s;
    -ms-transition-delay: 1.35s;
    transition-delay: 1.35s;
}

.items.onscroll-fade-in>*:nth-child(11)>.inner {
    -moz-transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    -ms-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.items.onscroll-fade-in>*:nth-child(12)>.inner {
    -moz-transition-delay: 1.65s;
    -webkit-transition-delay: 1.65s;
    -ms-transition-delay: 1.65s;
    transition-delay: 1.65s;
}

.items.onscroll-fade-in>*:nth-child(13)>.inner {
    -moz-transition-delay: 1.8s;
    -webkit-transition-delay: 1.8s;
    -ms-transition-delay: 1.8s;
    transition-delay: 1.8s;
}

.items.onscroll-fade-in>*:nth-child(14)>.inner {
    -moz-transition-delay: 1.95s;
    -webkit-transition-delay: 1.95s;
    -ms-transition-delay: 1.95s;
    transition-delay: 1.95s;
}

.items.onscroll-fade-in>*:nth-child(15)>.inner {
    -moz-transition-delay: 2.1s;
    -webkit-transition-delay: 2.1s;
    -ms-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.items.onscroll-fade-in>*:nth-child(16)>.inner {
    -moz-transition-delay: 2.25s;
    -webkit-transition-delay: 2.25s;
    -ms-transition-delay: 2.25s;
    transition-delay: 2.25s;
}

.items.onscroll-fade-in>*:nth-child(17)>.inner {
    -moz-transition-delay: 2.4s;
    -webkit-transition-delay: 2.4s;
    -ms-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.items.onscroll-fade-in.is-inactive>*>.inner {
    opacity: 0;
}


/* Items (style1) */

.items.style1 {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin: 3rem 0;
    position: relative;
}

.items.style1>* {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    border-style: solid;
    border-left-width: 1px;
    border-top-width: 1px;
}

.items.style1.big>* {
    padding: 3.5rem 3.5rem 1.5rem 3.5rem;
    width: 50%;
}

.items.style1.big>*:nth-child(-n+2) {
    border-top-width: 0;
}

.items.style1.big>*:nth-child(2n+1) {
    border-left-width: 0;
}

.items.style1.medium>* {
    padding: 2.1875rem 2.1875rem 0.1875rem 2.1875rem;
    width: 33.33333%;
}

.items.style1.medium>*:nth-child(-n+3) {
    border-top-width: 0;
}

.items.style1.medium>*:nth-child(3n+1) {
    border-left-width: 0;
}

.items.style1.small>* {
    padding: 1.3125rem 1.3125rem 0.1rem 1.3125rem;
    width: 25%;
}

.items.style1.small>*:nth-child(-n+4) {
    border-top-width: 0;
}

.items.style1.small>*:nth-child(4n+1) {
    border-left-width: 0;
}

@media screen and (max-width: 1280px) {
    .items.style1.small>*:nth-child(-n+4) {
        border-top-width: 1px;
    }
    .items.style1.small>*:nth-child(4n+1) {
        border-left-width: 1px;
    }
    .items.style1.small>* {
        padding: 2.1875rem 2.1875rem 0.1875rem 2.1875rem;
        width: 33.33333%;
    }
    .items.style1.small>*:nth-child(-n+3) {
        border-top-width: 0;
    }
    .items.style1.small>*:nth-child(3n+1) {
        border-left-width: 0;
    }
}

@media screen and (max-width: 980px) {
    .items.style1.medium>*:nth-child(-n+3) {
        border-top-width: 1px;
    }
    .items.style1.medium>*:nth-child(3n+1) {
        border-left-width: 1px;
    }
    .items.style1.medium>* {
        padding: 3.5rem 3.5rem 1.5rem 3.5rem;
        width: 50%;
    }
    .items.style1.medium>*:nth-child(-n+2) {
        border-top-width: 0;
    }
    .items.style1.medium>*:nth-child(2n+1) {
        border-left-width: 0;
    }
    .items.style1.small>*:nth-child(-n+3) {
        border-top-width: 1px;
    }
    .items.style1.small>*:nth-child(3n+1) {
        border-left-width: 1px;
    }
    .items.style1.small>* {
        padding: 3.5rem 3.5rem 1.5rem 3.5rem;
        width: 50%;
    }
    .items.style1.small>*:nth-child(-n+2) {
        border-top-width: 0;
    }
    .items.style1.small>*:nth-child(2n+1) {
        border-left-width: 0;
    }
}

@media screen and (max-width: 480px) {
    .items.style1.big>*:nth-child(-n+2) {
        border-top-width: 1px;
    }
    .items.style1.big>*:nth-child(2n+1) {
        border-left-width: 1px;
    }
    .items.style1.big>* {
        padding: 2.625rem 2.625rem 0.625rem 2.625rem;
        width: 100%;
    }
    .items.style1.big>*:nth-child(-n+1) {
        border-top-width: 0;
    }
    .items.style1.big>*:nth-child(1n+1) {
        border-left-width: 0;
    }
    .items.style1.medium>*:nth-child(-n+2) {
        border-top-width: 1px;
    }
    .items.style1.medium>*:nth-child(2n+1) {
        border-left-width: 1px;
    }
    .items.style1.medium>* {
        padding: 2.625rem 2.625rem 0.625rem 2.625rem;
        width: 100%;
    }
    .items.style1.medium>*:nth-child(-n+1) {
        border-top-width: 0;
    }
    .items.style1.medium>*:nth-child(1n+1) {
        border-left-width: 0;
    }
    .items.style1.small>*:nth-child(-n+2) {
        border-top-width: 1px;
    }
    .items.style1.small>*:nth-child(2n+1) {
        border-left-width: 1px;
    }
    .items.style1.small>* {
        padding: 2.625rem 2.625rem 0.625rem 2.625rem;
        width: 100%;
    }
    .items.style1.small>*:nth-child(-n+1) {
        border-top-width: 0;
    }
    .items.style1.small>*:nth-child(1n+1) {
        border-left-width: 0;
    }
    .items.style1.big>*,
    .items.style1.medium>*,
    .items.style1.small>* {
        padding-left: 0;
        padding-right: 0;
    }
    .items.style1.big> :first-child,
    .items.style1.medium> :first-child,
    .items.style1.small> :first-child {
        padding-top: 0;
    }
    .items.style1.big> :last-child,
    .items.style1.medium> :last-child,
    .items.style1.small> :last-child {
        padding-bottom: 0;
    }
    .items.style1.big> :last-child>.inner> :last-child,
    .items.style1.medium> :last-child>.inner> :last-child,
    .items.style1.small> :last-child>.inner> :last-child {
        margin-bottom: 0;
    }
}

.items.style1>* {
    border-color: rgba(0, 0, 0, 0.2);
}

p.major {
    font-size: 1.25rem;
}

.colorNegro {
    color: black !important;
}

.tituloIndex {
    color: black;
}

.tituloIndex:hover {
    color: #4FC3A1;
}

.botonPrecios {
    box-shadow: inset 0 0 0 1px black;
    color: black !important;
}

.botonPrecios:hover {
    box-shadow: inset 0 0 0 1px #4FC3A1;
    color: #4FC3A1 !important;
}