:root {
    --main-color: #372454; /* Violeta */
    --secondary-color: #13ffb4; /* Turquesa */
    --blue: #62a3cc;
    --blue-txt: #85d0ff;
    --blue-txt-dark: #00609e;
}

body {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    background-color: var(--main-color);
}

body.menu-open {
    overflow: hidden;
}

/* body.menu-open .body-content {
    filter: blur(4px);
}

body.menu-open header .logo-wrapper,
body.menu-open header .btn-transparent {
    opacity: 0.3;
    filter: blur(4px);
} */

button:focus {
    outline: 0 none !important;
}

.menu-content {
    z-index: 3;
    opacity: 0;
    display: none;

    transition: opacity 0.6s ease-in;
    -webkit-transition: opacity 0.6s ease-in;

    padding-top: 140px;
}

.menu-content.menu-open {
    display: block;
}

.menu-content.fade-in {
    opacity: 1;
}

.menu-content.fade-out {
    opacity: 0;
}

.menu-content ul {
    margin: 0;
    padding: 0;
}

.menu-content ul li {
    list-style: none;
    font-size: 26px;
    padding: 15px 0;
    cursor: pointer;
}

.menu-content ul li a {
    color: #FFFFFF;
}

.menu-content ul li a:hover {
    text-decoration: underline !important;
}

.clearfix {
    display: block;
    content: "";
    clear: both;
}

img {
    max-width: 100%;
}

h1, h2 {
    text-align: center;
    line-height: 1.5em;
}

h2 {
    font-weight: bold;
    font-size: 36px;
    margin: 0 0 15px;
}

.uppercase {
    text-transform: uppercase;
}

.subtitle {
    font-size: 15px;
    font-weight: normal;
    color: var(--blue);
    text-align: center;
}


.btn {
    border-radius: 50px;
    padding: 8px 34px;

    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.5px;
    text-align: center;

    font-family: 'Roboto', sans-serif;
}

.btn-default {
    font-size: 14px;
    background: #13ffb4;
    color: #402961;
    padding: 19px 70px;

    transition: all .3s ease;
}

.btn-default:hover {

    background-color: #58ffa4;
    box-shadow: 0px 7px 18px 2px rgba(0, 0, 0, 0.25);
    color: #0057a7;
    /* padding-left: 80px;
    padding-right: 80px; */
}

/* Remove grow effect for some buttons */

/* .info .btn-default:hover {
        padding-left: 70px;
        padding-right: 70px;
} */


.btn-transparent {
    background-color: transparent;
    border: 2px solid #fff;

    color: var(--secondary-color);
    /* background-image: linear-gradient(to bottom, #13ffb4, #00cbbe); */
    text-transform: uppercase;

    font-size: 14px;
    font-weight: normal;

    /* background-clip: text;
    -webkit-text-fill-color: var(--secondary-color);
    -webkit-background-clip: text; */
}

.navbar-custom .nav-wrapper a.btn-transparent{
    font-family: 'Roboto', sans-serif;
    color: var(--secondary-color);
    font-weight: normal;
    font-size: 14px;
}

.navbar-custom .nav-wrapper a.btn-transparent:hover,
.btn-transparent:hover {
    background-color: #fff;
    color: #0057a7;
}

.white-bg {
    background: #fff;
    color: var(--main-color);
}

.font-thin {
    font-weight: 100;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 4;
    padding: 40px 0;
}

.header .logo_simple{
    display: none;
}
.header .logo{
    display: inherit;
}
@media (min-width: 767px) {

    .header .logo_simple{
        display: inherit;
    }
    .header .logo{
        display: none;
    }
}
@media (min-width: 992px) {
    .header .logo_simple{
        display: none;
    }
    .header .logo{
        display: inherit;
    }
}

.navbar-custom {
    background-color: transparent;
}

.navbar-custom .nav-wrapper a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: bold;
    transition: all .3s ease;

}
.navbar-custom .nav-wrapper a:hover {
    color: #13ffb4;
    text-decoration: none;

}

.navbar-custom .nav-wrapper button,
.navbar-custom .nav-wrapper a {
    margin-left: 15px;
}

.navbar-custom {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

section {
    padding: 120px 0;
}


@media (max-width: 767px) {
    p {
        font-size: 12px;
    }
    .subtitle {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    section {
        padding: 70px 0;
    }
}

/* .subtitle {
    font-size: 15px;
    font-weight: normal;
    color: var(--blue);
    text-align: center;
} */

/* Specific Sections */

section.main {
    position: relative;
}

.homepage .main:after {
    content: '';
    display: block;
    position: absolute;

    height: 80px;
    width: 140px;

    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    background: url(../img/drop-shape.svg) no-repeat center center / contain;

    transition: all 0.3s ease-in-out;

}

@media (max-width: 575px) {
    .main h1 {
        padding: 0 31px;
    }
    .main .btn-wrapper {
        padding: 0 15px;
    }
    .main .btn-wrapper .btn-default {
        width: 100%;
    }
}

.prizes-slider .item {
    padding: 0 15px;
}
.prizes-slider .item .item-contain {
    text-align: center;
    position: relative;
    max-width: 240px;
}
.prizes-slider .item .item-contain:before,
.prizes-slider .item .item-contain:after {
    content: '';
    display: block;
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}
.prizes-slider .item .item-contain:before {
    background: url('../img/laurel-left.png') no-repeat center center / contain;
    left: 0;
}
.prizes-slider .item .item-contain:after {
    background: url('../img/laurel-right.png') no-repeat center center / contain;
    right: 0;

}
.prizes-slider .item .item-contain span {
    display: block;
}
.prizes-slider .item .item-contain .year {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 3px;
}
.prizes-slider .item .item-contain .name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}
.prizes-slider .item .item-contain .result {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
}

@media (max-width: 575px) {
    .prizes-slider {
        width: 90%;
    }
    .prizes-slider .item .item-contain .year {
        font-size: 14px;
    }
    .prizes-slider .item .item-contain .name {
        font-size: 11px;
    }
    .prizes-slider .item .item-contain .result {
        font-size: 13px;
    }
    .prizes-slider .item .item-contain:after {
        right: -5px;
    }
    .prizes-slider .item .item-contain:before {
        left: -5px;
    }
}

/* .main:hover::after {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
} */

.maxim {
    padding: 120px;
    text-align: center;
}

.maxim p {
    margin: 0 0 75px;
}

.maxim .boxes-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;

    position: relative;
    z-index: 0;
}

.maxim .boxes-wrapper:before,
.maxim .boxes-wrapper:after {
    display: block;
    content: '';
    position: absolute;
    height: calc(100% + 180px);
    width: 250px;
    top: -150px;
    z-index: -1;
}

.maxim .boxes-wrapper:before {
    left: 10%;
    background: url('../img/laurel-right.svg') no-repeat center center / contain;

    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.maxim .boxes-wrapper:after {
    right: 10%;
    background: url('../img/laurel-right.svg') no-repeat center center / contain;
}

.maxim .boxes-wrapper .box {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    margin: 0 11px;
    padding: 40px 10px;
    font-weight: bold;
    flex: 0 0 auto;

    background-color: var(--main-color);
    border-radius: 33%;
    text-align: center;

    width: calc(33% - 22px);
    max-width: 170px;
    height: 170px;
}

.maxim .boxes-wrapper .box .top {
    font-size: 64px;
    line-height: 0.88em;
    color: #fff;
    display: block;

    letter-spacing: 1px;
}

.maxim .boxes-wrapper .box .top.small {
    font-size: 24px;
    line-height: 1.1em;
}

.maxim .boxes-wrapper .box .top.smallest {
    font-size: 18px;
    line-height: 1.1em;
}

.maxim p,
.maxim h2 {
    z-index: 2;
    position: relative;
}

.maxim .boxes-wrapper .box .sub {
    color: var(--secondary-color);
    font-size: 23px;
}

@media (max-width: 991px) {
    .maxim {
        padding: 120px 40px;
    }
    .maxim p {
        padding: 0 15%;
        font-size: 14px;
    }
    .maxim .boxes-wrapper .box {
        max-width: 120px;
        height: 120px;
    }
    .maxim .boxes-wrapper .box .top {
        font-size: 32px;
    }
    .maxim .boxes-wrapper .box .top.small {
        font-size: 12px;
    }
    .maxim .boxes-wrapper .box .top.smallest {
        font-size: 12px;
    }
    .maxim .boxes-wrapper .box .sub {
        font-size: 12px;
    }
    .maxim .boxes-wrapper:before, .maxim .boxes-wrapper:after {
        height: calc(100% + 195px);
        width: 165px;
        top: -150px;
    }
    .maxim .boxes-wrapper:before {
        left: 5%;
    }
    .maxim .boxes-wrapper:after {
        right: 5%;
    }

}

@media (max-width: 575px) {
    .maxim {
        padding: 70px 10px;
    }
    .maxim p {
        margin-bottom: 25px;
    }
    .maxim .boxes-wrapper {
        display: block;
        text-align: center;
    }
    .maxim .boxes-wrapper .box {
        /* max-width: 90px;
        height: 90px; */

        width: 100%;
        max-width: 220px;
        border-radius: 30px;
        margin: 0 auto 20px;
    }
    .maxim .boxes-wrapper .box .top {
        font-size: 40px;
    }
    .maxim .boxes-wrapper .box .top.small {
        font-size: 16px;
    }
    .maxim .boxes-wrapper .box .sub {
        font-size: 16px;
    }
    .maxim .boxes-wrapper:before, .maxim .boxes-wrapper:after {
        top: -100px;
    }
    .maxim .boxes-wrapper:before, .maxim .boxes-wrapper:before {
        left: 0;
    }
    .maxim .boxes-wrapper:before, .maxim .boxes-wrapper:after {
        right: 0;
    }
}

.grow-icon-wrapper {
    position: relative;
    height: 1px;
    z-index: 2
}

/* #grow-icon {
    width: 20%;
    margin-top: -14%;
} */

.grow-icon-contain {
    position: relative;
    width: 20%;
    display: inline-block;
    margin-top: -14%;
}

.grow-icon-contain .icon-text-animation {
    position: absolute;
    top: 14%;
    left: 48%;
    color: var(--secondary-color);
}

.grow-icon-contain .icon-text-animation.icon-text-animation-1,
.grow-icon-contain .icon-text-animation.icon-text-animation-2 {
    top: 14%;
    left: 57%;
}

.grow-icon-contain .icon-text-animation.icon-text-animation-1 {
    -webkit-animation: text-flutter-1 1s both infinite;
    animation: text-flutter-1 1s both infinite;
    animation-delay: 0.3s;
}

.grow-icon-contain .icon-text-animation.icon-text-animation-2 {
    -webkit-animation: text-flutter-1 1s both infinite;
    animation: text-flutter-1 1s both infinite;
}

.grow-icon-contain .icon-text-animation.icon-text-animation-3 {
    -webkit-animation: text-flutter-1 0.9s both infinite;
    animation: text-flutter-1 0.9s both infinite;
    animation-delay: 0.5s;
}

.grow-icon-contain .icon-text-animation.icon-text-animation-4 {
    -webkit-animation: text-flutter-1 1s both infinite;
    animation: text-flutter-1 1s both infinite;
}

@media (max-width: 575px) {
    .grow-icon-contain {
        margin-top: -9%;
    }
    .grow-icon-contain .icon-text-animation {
        font-size: 9px;
    }
}

.info {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 300;
    font-size: 15px;

    position: relative;
    /* margin: 30px 0 0; */
    padding: 0 15px;
}

.info p {
    margin-bottom: 20px;
}

.info .info1, .info .info2 {
    padding: 75px 0 45px 0;
}

.info .info1 {
    background-color: #331c70;
}

.info .info2 {
    background-color: #43278e;
}

.info .example-logo-wrapper img {
    margin-bottom: 30px;
}

.info .info-overlay {
    position: absolute;
    height: calc(100% + 60px);
    top: -30px;
    right: 0;
    width: 40%;

    background: url('../img/bitmap.jpg') no-repeat center center / cover;

    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.info .info-overlay .info-overlay-contain {
    width: 100%;
    width: 100%;
    flex: 0 0 auto;
}

.info .info-overlay .info-overlay-contain .icon {
    padding: 15px;
    max-width: 120px;
}

.info .info-overlay:before,
.info .info-overlay:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;

    border-style: solid;
    left: -30px;
}

.info .info-overlay:before {
    top: 0;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent var(--secondary-color) transparent;
}
.info .info-overlay:after {
    bottom: 0;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--secondary-color) transparent transparent;

}

@media (max-width: 575px) {
    .info .info-overlay {
        position: relative;
        top: 0;
        left: -15px;
        width: calc(100% + 30px);
    }
    .info .info-overlay:before, .info .info-overlay:after {
        display: none;
    }
    .info .info-overlay .info-overlay-contain .icon {
        width: 40%;
    }
}

.samples {
    background: url('../img/bg-v-4.jpg') no-repeat center center / cover var(--main-color);
    padding: 225px 0 150px;
}

.samples .subtitle {
    color: var(--secondary-color);
}

.samples .boxes-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100%;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-gap: 30px 30px;
    grid-template-areas: ". . ." ". . .";

    padding-top: 70px;
}

.samples .boxes-wrapper .box {
    position: relative;
    border-radius: 40px;
    padding: 50px 30px;

    text-align: center;
}

.samples .boxes-wrapper .box:after {
    border-radius: 40px;
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 0;

    mix-blend-mode: multiply;
    background-color: #402d8c;
    opacity: 0.72;
}

.samples .boxes-wrapper .box .box-content {
    z-index: 1;
    position: relative;
}

.samples .boxes-wrapper .box .btn {
    margin-top: 40px;


}

.samples .boxes-wrapper .box img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 767px) {

    .samples .boxes-wrapper {
        grid-template-areas: ". .";
        grid-gap: 15px 15px;
    }
}

@media (max-width: 567px) {
    .samples {
        padding: 70px 0;
    }
    .samples .boxes-wrapper {
        padding-top: 30px;
    }
    .samples .boxes-wrapper .box {
        padding: 41px 22px;
    }
    .samples .boxes-wrapper .box .btn {
        margin-top: 20px;
    }
    /* .samples .boxes-wrapper {
        grid-template-areas: ".";
    } */
}

.value {
    /* padding: 120px 0 120px; */
}

.value .icon {
    display: inline-block;
    /* float: left; */
}

.value .thumbs-wrapper {
    padding: 64px 0;
}

.value .thumbs-wrapper .thumb {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
}

.value .thumbs-wrapper .text {
    margin-left: 20px;
}

/* .value .thumbs-wrapper h4 {
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.3em;
    text-align: justify;
} */

.value .thumbs-wrapper .icon {
    flex: 0 0 auto;
    /* margin-left: -30px; */
    /* width: 70px; */
}

.value .thumbs-wrapper .icon img {
    width: auto;
    height: 67px;
}

.value .thumbs-wrapper .thumb-title,
.value .thumbs-wrapper .thumb-subtitle {
    color: #372454;
    /* padding-left: 15px; */
}

.value .thumbs-wrapper .thumb-title {
    display: block;
    font-weight: bold;
    font-size: 20px;
    padding-top: 0;
    padding-bottom: 12px;
    /* padding-left: 15px; */
}

.value .thumbs-wrapper .thumb-subtitle {
    font-size: 14px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    /* .value .thumbs-wrapper .thumb:nth-child(odd) {
        padding-right: 70px;
    }
    .value .thumbs-wrapper .thumb:nth-child(even) {
        padding-left: 70px;
    } */
}

@media (max-width: 991px) {
    .value .thumbs-wrapper {

    }
    .value .thumbs-wrapper .icon img {
        height: 50px;
    }
    .value .thumbs-wrapper .thumb-title {
        /* width: calc(100% - 60px); */
        font-size: 14px;
    }

    .value .thumbs-wrapper .thumb-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 567px) {
    .value .thumbs-wrapper {
        padding: 20px 0;
    }
    .value .thumbs-wrapper .thumb-title {
        font-size: 14px;
    }

    .value .thumbs-wrapper .thumb-subtitle {
        font-size: 10px;
    }
}

/* Example of use media queries to load images for all devices */
@media all and (-webkit-min-device-pixel-ratio : 1.5),
    all and (-o-min-device-pixel-ratio: 3/2),
    all and (min--moz-device-pixel-ratio: 1.5),
    all and (min-device-pixel-ratio: 1.5) {

    div.background {
        background-image: url(./images/yourimage@2x.jpg);
        background-size: 200px 200px;
    }
}


footer {
    background: #3023ae;
    background: -moz-linear-gradient(left, #3023ae 0%, #53a0fd 83%, #13ffb4 100%);
    background: -webkit-linear-gradient(left, #3023ae 0%,#53a0fd 83%,#13ffb4 100%);
    background: linear-gradient(to right, #3023ae 0%,#53a0fd 83%,#13ffb4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3023ae', endColorstr='#13ffb4',GradientType=1 );

    font-size: 13px;
    padding: 40px 0;
}

.backtotop-icon-wrapper {
    /* position: absolute;
    right: 15px; */
}

.backtotop {
    display: block;
    width: 40px;
    height: 40px;
    background: url('../img/arrow-top.svg') no-repeat center center / 20px #fff;
    border-radius: 50%;
    margin-left: auto;

    transition: all .3s ease;

    cursor: pointer;
}

.backtotop:hover {
        box-shadow: 0px 7px 18px 2px rgba(0, 0, 0, 0.25);
}

footer .disclaimer {
    text-align: right;
}

footer .copy-menu {
    margin: 10px 0;
}

footer .menufooter {
    text-align: left;
    /*text-align: center;
    margin-top: 40px;*/
}

footer .menufooter a {
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.6px;
    color: #8dd3ff;
    margin-right: 8px;
    transition: all .3s ease;
}

footer .menufooter .sep {
    margin-right: 8px;
}
footer .menufooter a:hover {
    text-decoration: none;
    color: azure;
}

footer .menufooter a:last-child {
    margin-right: 0;
}

footer hr {
    height: 1px;
    background-color: #fff;
    display: block;
    width: 100%;
    border: 0 none;
    opacity: 0.2;
    margin: 40px 0;

    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 90%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 10%,rgba(255,255,255,1) 90%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 10%,rgba(255,255,255,1) 90%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
}

footer .below-footer {
    /* margin-top: 40px; */
}

footer .logo_simple{
    display: inherit;
}
footer .logo{
    display: none;
}
@media(max-width: 992px) {
    footer .logo_simple{
        display: none;
    }
    footer .logo{
        display: inherit;
    }

    /* Safe use of background in small devices */
    footer {
        background: -moz-linear-gradient(left, #3023ae 0%, #53a0fd 61%, #13ffb4 100%);
        background: -webkit-linear-gradient(left, #3023ae 0%,#53a0fd 61%,#13ffb4 100%);
        background: linear-gradient(to right, #3023ae 0%,#53a0fd 61%,#13ffb4 100%);
    }

    footer .disclaimer {
        text-align: center;
    }
    footer .menufooter,
    footer .copy {
        text-align: center;
        margin: 5px 0;
        padding: 0 30px;
    }
}

@media(max-width: 767px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 567px) {
    footer .logo-wrapper {
        /* margin-bottom: 20px; */
    }
    /* footer .menufooter {
        margin-top: 40px;
    } */
    footer .menufooter a {
        display: block;
        margin: 10px 0;
    }
    footer hr {
        margin: 20px 0;
    }
    footer .copy,
    footer .disclaimer {
        padding: 10px 0;
        text-align: center;
    }
}

/* marcablanca page */


.landing-sample .boxes-wrapper {
    padding: 90px 0;
}

.landing-sample .boxes-wrapper .box {
    display: inline-block;
    height: 145px;
    width: calc(33% - 67px);
    background: #eeecf4;
    margin: 0 50px;
}

.landing-sample .boxes-wrapper .box:first-child {
    margin-left: 0;
}

.landing-sample .boxes-wrapper .box:last-child {
    margin-right: 0;
}


.marcablanca .control {
    padding-top: 300px;
}

.marcablanca .control h2 {
    text-align: left;
    font-size: 47px;
    /* padding-right: 30%; */
}

.marcablanca .control p {
    color: var(--blue);
    font-size: 18px;
    text-align: justify;
    line-height: 1.61;
    letter-spacing: 0.7px;
}

.marcablanca .control .control-icon {
    width: 450px;
}

.marcablanca .control a {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    text-decoration: underline;
    margin-top: 20px;
}

.marcablanca .separate-shape svg {
    -webkit-filter: drop-shadow(0px 7px 4px rgba(0,0,0,0.5));
    filter: drop-shadow(0px 7px 4px rgba(0,0,0,0.5));

    position: relative;
    top: -1px;
}

.marcablanca .description {
    padding-top: 0;
    background: #3023ae;
    background: -moz-linear-gradient(116deg, #3023ae 0%, #c86dd7 100%);
    background: -webkit-linear-gradient(116deg, #3023ae 0%,#c86dd7 100%);
    background: linear-gradient(116deg, #3023ae 0%,#c86dd7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3023ae', endColorstr='#c86dd7',GradientType=1 );
}

.marcablanca .description .container {
    position: relative;
    z-index: 1;
    /* background: url('../img/tool-icon-100.svg') no-repeat center center / contain; */
}

.marcablanca .description .container:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../img/tool-icon-100.svg') no-repeat center center / contain;

    opacity: 0.6;
}

.marcablanca .description h3 {
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.61;
    letter-spacing: 0.7px;
    text-align: center;
    color: #ffffff;

    margin-bottom: 80px;
    padding: 20px 20% 0;
}

.marcablanca .description .boxes-wrapper {
    margin-bottom: 80px;
}

.marcablanca .description .boxes-wrapper .box {
    /* height: 2em;
    display: inline-block;
    float: left;
    width: calc(33% - 17px);
    margin-right: 30px;*/


    background: #fff;
    color: var(--main-color);
    position: relative;

}

.marcablanca .description .boxes-wrapper .box:last-child {
    margin-right: 0;
}

.marcablanca .description .boxes-wrapper .box .box-order {
    background-color: var(--secondary-color);
    float: left;
    display: inline-block;
    width: 70px;
    height: 70px;

    font-size: 36px;
    font-weight: bold;

    text-align: center;
    line-height: 70px;
}

.marcablanca .description .boxes-wrapper .box .box-content {
    display: inline-block;
    width: calc(100% - 70px);
    height: 70px;
    padding-left: 30px;

    font-size: 18px;
    line-height: 25px;
    padding: 10px 30px;
}

.marcablanca .description .btn-default {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .landing-sample .boxes-wrapper .box {
        width: calc(33% - 28px);
        margin: 0 20px;
    }

    .marcablanca .control h2 {
        font-size: 28px;
    }

    .marcablanca .control p,
    .marcablanca .control a {
        font-size: 14px;
    }

    .marcablanca .description .boxes-wrapper .box .box-order {
        font-size: 22px;
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    .marcablanca .description .boxes-wrapper .box .box-content {
        font-size: 13px;
        height: 50px;
        line-height: 18px;
        padding: 6px 0 6px 15px;
    }
}
@media (max-width: 767px) {
    .landing-sample {
        padding: 33px;
        transform: translateY(154px);
    }
    .landing-sample .boxes-wrapper {
        padding: 30px 0;
    }
    .landing-sample .boxes-wrapper .box {
        width: calc(33% - 10px);
        margin: 0 5px;
        height: 85px;
    }
    .landing-sample .btn-default {
        padding: 15px 40px;
    }

    .marcablanca .control {
        padding-top: 180px;
        padding-bottom: 60px;
    }

    .marcablanca .control h2 {
        font-size: 20px;
        padding: 0;
        margin-bottom: 40px;
        /* text-align: center; */
    }

    .marcablanca .control p,
    .marcablanca .control a {
        font-size: 12px;
    }

    .marcablanca .description h3 {
        font-size: 16px;
        padding: 0 10%;
    }

    .marcablanca .description .boxes-wrapper .box {
        margin: 10px auto;
        max-width: 240px;
    }

    .marcablanca .description .boxes-wrapper .box:last-child {
        margin-right: auto;
    }

    .marcablanca .description .boxes-wrapper .box .box-order {
        font-size: 22px;
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    .marcablanca .description .boxes-wrapper .box .box-content {
        font-size: 13px;
        height: 50px;
        line-height: 18px;
        padding: 6px 0 6px 15px;
    }
}
@media (max-width: 575px) {
    .landing-sample {
        padding: 20px;
    }
    .landing-sample .content-wrapper .laurel {
        padding: 0 8% !important;
    }
    .landing-sample .content-wrapper .sample-header .sample-logo {
        width: 140px;
    }
    .marcablanca .main .btn-wrapper {
        padding: 0 0;
    }
    .marcablanca .control .control-icon {
        width: 200px;
        margin: 0 auto 40px;
        display: block;
    }
    .marcablanca .control h2 {
        text-align: center;
    }
}

/* Productos */

.grad-bg {
    /* background-image: linear-gradient(134deg, #2275d5, #5033b7 49%, #c86dd7); */
    background: rgb(67,140,198);
    background: -moz-linear-gradient(top, rgba(67,140,198,1) 0%, rgba(80,51,183,1) 50%, rgba(60,0,155,1) 100%);
    background: -webkit-linear-gradient(top, rgba(67,140,198,1) 0%,rgba(80,51,183,1) 50%,rgba(60,0,155,1) 100%);
    background: linear-gradient(to bottom, rgba(67,140,198,1) 0%,rgba(80,51,183,1) 50%,rgba(60,0,155,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438cc6', endColorstr='#3c009b',GradientType=0 );
}

.grad-bg h2 {
    color: #fff;
    text-align: left;
}

.productos .landing-sample {
    color: #fff;
    /* padding: 60px 120px; */
    padding: 60px 220px;
    border-radius: 10px;
    box-shadow: none;
}

.productos .landing-sample.top p {
    color: #fff;
}

.productos p {
    color: var(--blue-txt-dark);
    font-size: 18px;
}
.productos .grad-bg p{
    color: var(--blue-txt);
}

.productos .landing-sample p {
    margin: 20px 0 60px;
    font-size: 18px;
}

.landing-sample.bottom p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
}

.landing-sample.bottom {
    background: url('../img/adptube.jpg') no-repeat center center / cover;
    transform: translateY(100px);
}

.productos .multibibrate {
    padding-top: 300px;
}

.productos .multibibrate p {
    text-align: justify;
}

.productos .description {
    padding-top: 200px;
}

.productos .description .br{
    display: block;
}

.productos .m-bot {
    margin-bottom: 90px;
}

.productos .multibibrate h2 {
    text-align: left;
}

.productos .care .conveyor-icon {
    /* max-width: 300px; */
    width: 300px;
    display: block;
    margin: 0 auto 30px;
}

.productos .care a {
    text-decoration: underline;
    color: var(--secondary-color);
}

.productos .gift {
    padding-bottom: 0;
}

.productos .gift p {
    font-size: 15px;
}

.productos .gift .community-bg {
    padding: 40px 0;
    background: url('../img/community.svg') no-repeat center center / contain #fff;
}

/* .productos .description h2 {
    font-size: 48px;
} */

.productos .description p {
    /* font-size: 18px; */
    color: var(--secondary-color);
}

.productos .embed {
    background-color: #4e2e7d;
    padding: 70px 0;
}

.productos .embed h4 {
    color: var(--blue-txt);
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 70px;
}

.embed .container {
    padding-top: 40px;
    padding-bottom: 40px;
    background: url('../img/conveyor-bg.svg') no-repeat center center / contain;
}

.embed strong {
    color: #fff;
    font-weight: bold;
}


@media (max-width: 991px) {
    .productos .landing-sample {
        padding: 33px 94px;
        transform: translateY(154px);
    }
    .productos .landing-sample img {
        width: 70%;
    }

    .productos p {
        font-size: 14px !important;
    }


}

@media (max-width: 767px) {
    .productos .landing-sample {
        padding: 33px;
    }
    .productos .multibibrate {
        padding-top: 200px;
    }
}

@media (max-width: 575px) {
    .productos .m-bot {
        margin-bottom: 20px;
    }
    .productos .multibibrate h2,
    .productos .care h2 {
        text-align: center;
    }
    .productos .multibibrate p,
    .productos .care p,
    .productos .description p {
        text-align: justify;
    }

    .productos .multibibrate img {
        max-width: 60%;
        display: block;
        margin: 20px auto;
    }

    .productos .care .conveyor-icon {
        max-width: 60%;
        margin: 20px auto 40px;
    }

    .productos .gift .community-bg {
        padding: 0;
    }

    .productos .landing-sample {
        padding: 30px 15px;
    }

    .productos .landing-sample.top {
        transform: translateY(140px);
    }
    .productos .landing-sample.bottom {
        transform: translateY(60px);
    }

    .productos .description {
        padding-top: 100px;
    }

    .productos .description {
        padding-top: 100px;
    }

    .productos .description h2 {
        /* font-size: 18px; */
        text-align: center;
    }

    .productos .description .br{
        display: none;
    }

    .productos .description img {
        max-width: 120px;
        display: block;
        margin: 20px auto;
    }

    .productos .embed .container {
        padding-top: 0;
        padding-bottom: 0;
        background-size: 150px;
    }

    .productos .embed h4 {
        text-align: justify;
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* Tarifas */

.tarifas .pricing-boxes {
    background-color: #f5f8ff;
    color: var(--blue);
}

.tarifas .pricing-wrapper > div:first-child{
    margin-left: 0;
}

.tarifas .pricing-wrapper > div:last-child{
    margin-right: 0;
}

.tarifas .pricing {
    display: inline-block;
    float: left;
    margin: 0 10px;
    width: calc(33.333% - 14px);
    background-color: #fff;
    min-height: 400px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 27px 0 rgba(0, 0, 0, 0.08);
}

.tarifas .pricing-wrapper .pricing-title {
    background: url('../img/pricing-bg.jpg') no-repeat center center / cover;
    border-radius: 10px 10px 0 0;
    padding: 20px 0;
}
.tarifas .pricing-wrapper .pricing-title h3 {
    font-size: 24px;
    letter-spacing: 5px;
    padding: 26px 0 20px;
    margin: 0;
    color: #fff;
    text-align: center;
}
.tarifas .pricing.pricing-climb h3 {
    background: url('../img/shape.svg') no-repeat center center / contain;
}
.tarifas .pricing.pricing-pack h3 {
    background: url('../img/wall-clock.svg') no-repeat center center / contain;
}
.tarifas .pricing.pricing-operator h3 {
    background: url('../img/chat-2.svg') no-repeat center center / contain;
}
.tarifas .pricing ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.tarifas .pricing ul li {
    list-style: none;
    margin: 0;
    display: block;
    clear: both;
    background-color: #fff;
    padding: 10px 30px;
    font-size: 14px;
}

.tarifas .pricing ul li:nth-child(even) {
    background: #f3f6fd;
}


.tarifas .pricing .limit {
    float: left;
}
.tarifas .pricing .price {
    float: right;
    font-weight: bold;
}

.tarifas .disclaimer {
    margin-top: 40px;
    font-size: 12px;
}

@media (max-width: 991px) and (min-width: 576px) {
    .pricing-boxes .container {
        max-width: 100% !important;
    }
}

@media (max-width: 1199px) {
    .tarifas .pricing-wrapper .pricing-title h3 {
        font-size: 2.5vw;
    }
    .tarifas .pricing ul li {
        padding: 10px;
        font-size: 12px;
    }

}

@media (max-width: 699px) {
    .tarifas .pricing-wrapper .pricing-title h3 {
        font-size: 20px;
    }
    .tarifas .pricing {
        width: 100%;
        margin: 0 0 40px 0;
        max-width: 400px;
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none;
    }

}


/* Animations */

/**
 * ----------------------------------------
 * animation shadow-drop-2-center
 * ----------------------------------------
 */
@-webkit-keyframes shadow-drop-2-center {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px);
            transform: translateZ(50px);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-2-center {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px);
            transform: translateZ(50px);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}

@-webkit-keyframes text-flutter-1 {
  /* 0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  } */
  100% {
    -webkit-transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
            transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
    opacity: 0;
  }
}
@keyframes text-flutter-1 {
  /* 0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  } */
  100% {
    -webkit-transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
            transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
    opacity: 0;
  }
}

@-webkit-keyframes text-flutter-2 {
  /* 0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  } */
  100% {
    -webkit-transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
            transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
    opacity: 0;
  }
}
@keyframes text-flutter-2 {
  /* 0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  } */
  100% {
    -webkit-transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
            transform: translate3d(21px,-29px,0)rotate(-16deg)scale(0.7);
    opacity: 0;
  }
}
