/*
---------------------------------------------
welcome
---------------------------------------------
*/
.welcome-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 150px 0;
    background: black;
}

.welcome-area .welcome-area-container {
    max-width: 80vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    max-width: 1140px;
}

.welcome-area::before {
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000cc;
    position: absolute;
}

.welcome-area .welcome-area-container, .welcome-area .scroll-to {
    z-index: 2;
}

.welcome-area .scroll-to {
    font-size: 38px;
    color: white;
    position: absolute;
    bottom: 10px;
    text-shadow: 0px -5px 4px #d01a6a;
}

.welcome-area .welcome-area-container .logo {
    margin: 0px 0 3rem;
    position: relative;
    max-width: 500px;
    width: 100%;
}

.welcome-area .welcome-area-container h1 {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 1.4px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.welcome-area .welcome-area-container p {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.25px;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.welcome-area .welcome-area-container .main-button {
    font-size: 18px;
    border-radius: 20px;
    padding: 20px;
    background-color: #db1461;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.25px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);
    width: 100%;
    text-align: center;
    max-width: 400px;
    font-weight: 600;
}

.main-button {
    border-radius: 20px;
    border: 3px solid #000000;
}
.welcome-area .welcome-area-container .main-button:hover {
  font-weight: 700;
  box-shadow: 0px 0px 7px #db1461;
}

@media (max-width: 767px) {
    .welcome-area {
        max-width: 100%;
        padding: 60px 20px;
    }

    .welcome-area .welcome-area-container h1 {
        font-size: 22px;
    }

    .welcome-area .welcome-area-container .logo {
        margin-bottom: 2rem;
        max-width: 90%;
    }

    .welcome-area .welcome-area-container p {
        font-size: 18px;
        margin-bottom: 2rem;
    }

    .welcome-area .welcome-area-container .main-button {
        font-size: 14px;
        max-width: 269px;
        padding: 10px;
    }
}

/*
  ---------------------------------------------
  features
  ---------------------------------------------
  */
.featured-area {
    position: relative;
    padding: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    /* background: #000000;*/
    /* background: #fff; */
    padding: 0 0 80px;
}

.featured-area .featured-area-container {
    max-width: 80vw;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    max-width: 1140px;
}

.featured-area.featured-area-colored {
    background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);
    margin-top: 0;
    color: #ffff;
    padding: 150px 0;
}

.featured-area.featured-area-colored .featured-area-colored-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.featured-area.featured-area-colored .featured-area-colored-container .featured-item__title {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 1140px;
}

.featured-area.featured-area-colored .featured-area-colored-container p {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 1140px;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    overflow-x: auto;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 8%);
    margin-bottom: 30px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 10px;
    width: 150px;
    height: 150px;
    justify-content: center;
    position: relative;
}

.featured-area.featured-area-why {
    position: relative;
    margin: 0;
    padding: 20px 0;
    /* background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%); */
}

.featured-area.featured-area-why h3 {
    position: relative;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.2;
    max-width: 1140px;
    text-align: center;
    /* color: #d65152; */
    color: #FFF;
    padding: 0 20px;
}

.featured-area.featured-area-why .featured-area-container.featured-area-big {
    /* background:red; */
    /* margin: 20px; */
    margin: 0px;
}

.featured-area.featured-area-why .featured-area-container.featured-area-big .featured-area-item__big span.numeric-list {
    font-size: 71px;
    min-width: 100px;
    height: 100px;
    line-height: 50px;
    /* background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);*/
    background: #000000;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-family: initial;
}

.featured-area.featured-area-why .featured-item__container p {
    position: relative;
    font-size: 26px;
    line-height: 1.2;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box img {
    margin-bottom: 0.5rem;
    max-width: 49px;
    max-height: 49px;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box strong {
    text-transform: uppercase;
    font-size: 13px;
}

.featured-area .featured-area-container.featured-area-small {
    margin-top: -110px;
}

.featured-area .featured-area-container.featured-area-big {
    margin-top: 40px;
    flex-direction: column;
    padding: 0 60px;
}

.featured-area .featured-area-container.featured-area-big h2 {
    font-size: 25px;
}

.featured-area .featured-area-container .featured-area-item__big {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 5px;
}

.featured-area .featured-area-container .featured-area-item__big.left {
    text-align: left;
    min-height: 105px;
    width: 100%;
}

.featured-area .featured-area-container .featured-area-item__big.right {
    text-align: right;
    flex-direction: row-reverse;
    min-height: 150px;
    width: 100%;
}

.featured-area .featured-area-container .featured-area-item__big.left .featured-item__container, .featured-area .featured-area-container .featured-area-item__big.right .featured-item__container {
    margin: 0;
}

.featured-area .featured-area-container .featured-area-item__big img {
    max-width: 250px;
    width: 100%;
}

.featured-area .featured-area-container .featured-area-item__big .welcome-img {
    background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);
    padding: 20px;
    border-radius: 20px;
    max-width: 235px;
}

.featured-area .featured-area-container .featured-area-item__big .welcome-img img {
    max-width: initial;
}

.featured-area .featured-area-container .featured-area-item__big .featured-item__container {
    margin-left: 2rem;
    width: 100%;
    padding: 20px 25px;
    font-size: 19px;
    line-height: 1.4;
    color: #FFF;
}

.featured-area .featured-area-container .featured-area-item__big .featured-item__container h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
}

.featured-area .featured-area-container .featured-area-item__big .featured-item__container :not(:last-child) {
    margin-bottom: 1rem;
}

.featured-area .featured-area-container .featured-area-item__small {
    cursor: pointer;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    margin: 0px 10px;
    max-width: 33.33%;
    min-width: 210px;
    width: 100%;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.featured-area .featured-area-container .featured-area-item__small .icon {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 0 0 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #3b63dc 0%, #db1461 100%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-area .featured-area-container .featured-area-item__small .icon img {
    width: 38px;
}

.featured-area .featured-area-container .featured-area-item__small .featured-item__title {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.featured-area .featured-area-container .featured-area-item__small p {
    font-weight: 400;
    font-size: 18px;
    color: #777;
    letter-spacing: 0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.featured-area .featured-area-container .featured-area-item__small a {
    float: right;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .featured-area.featured-area-colored {
        min-height: 100vh;
        margin: 0;
    }

    .featured-area .featured-area-container.featured-area-small {
        margin-top: 10px;
    }

    .featured-area .featured-area-container {
        flex-direction: column;
        max-width: initial;
        width: 100%;
    }

    .featured-area .featured-area-container .featured-area-item__small {
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0;
        padding: 20px;
        min-height: initial;
        padding: 30px 20px;
    }

    .featured-area .featured-area-container.featured-area-big {
        max-width: initial;
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .featured-area .featured-area-container .featured-area-item__big {
        padding: 0 20px;
        text-align: center;
    }

    .featured-area .featured-area-container .featured-area-item__big .welcome-img, .featured-area .featured-area-container .featured-area-item__big img {
        display: none !important;
    }

    .featured-area .featured-area-container .featured-area-item__big .featured-item__container {
        margin: 0;
        padding: 0;
    }

    .featured-area .featured-area-container .featured-area-item__big.left .featured-item__container {
        padding-left: 15px;
    }

    .featured-area .featured-area-container .featured-area-item__big.right .featured-item__container {
        padding-right: 15px;
    }

    .featured-area.featured-area-why .featured-item__container p {
        font-size: 22px;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes {
        flex-direction: column;
        width: 100%;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box {
        display: block;
        width: initial;
        height: initial;
        font-size: 10px;
        width: 100%;
        margin: 0;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box {
        padding: 1rem
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box:not(:last-child) {
        margin-bottom: 10px;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box img {
        display: none;
    }

    .featured-area.featured-area-why .featured-area-container.featured-area-big .featured-area-item__big span.numeric-list {
        min-width: 65px;
        height: 65px;
        font-size: 34px;
    }
}

.bounce-6 {
    width: 36px;
    height: 60px;
    border: 3px solid #878787;
    border-radius: 60px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.bounce-6 label {
    position: relative;
    transition: all 0.3s ease 0s;
    top: 0;
    animation: opacityWheel 2s infinite;
    -webkit-animation: opacityWheel 2s infinite;
}

@media (max-width: 767px) {
    .bounce-6::before {
        content: '';
        width: 12px;
        height: 12px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ccc;
        border-radius: 50%;
        opacity: 1;
        animation: wheel 2s infinite;
        -webkit-animation: wheel 2s infinite;
    }

    .bounce-6 label {
        display: none;
    }
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 40px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 40px;
    }
}

@keyframes opacityWheel {
    to {
        top: 4px;
        opacity: 0;
    }
}

@-webkit-keyframes opacityWheel {
    to {
        top: 4px;
        opacity: 0;
    }
}

/* 
---------------------------------------------
welcome
--------------------------------------------- 
*/
.welcome-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
    background: black;
}

.welcome-area .welcome-area-container {
    max-width: 80vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    max-width: 1140px;
}

.welcome-area::before {
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000cc;
    position: absolute;
}

.welcome-area .welcome-area-container, .welcome-area .scroll-to {
    z-index: 2;
}

.welcome-area .scroll-to {
    font-size: 38px;
    color: white;
    position: absolute;
    bottom: 10px;
    text-shadow: 0px -5px 4px #d01a6a;
}

.welcome-area .welcome-area-container .logo {
    margin: 0px 0 3rem;
    position: relative;
    max-width: 300px;
    width: 100%;
}

.welcome-area .welcome-area-container h1 {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 1.4px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.welcome-area .welcome-area-container p {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.25px;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.welcome-area .welcome-area-container .main-button {
    font-size: 18px;
    border-radius: 20px;
    padding: 20px;
    background-color: #db1461;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.25px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);
    width: 100%;
    text-align: center;
    max-width: 400px;
    font-weight: 600;
    margin-top:20px;
}

.main-button {
    border-radius: 20px;
    border: 3px solid #000000;
}

.welcome-area .welcome-area-container .main-button:hover {
    font-weight: 700;
    box-shadow: 0px 0px 7px #db1461;
}

@media (max-width: 767px) {
    .welcome-area {
        max-width: 100%;
        padding: 60px 20px;
    }

    .welcome-area .welcome-area-container h1 {
        font-size: 16px;
    }

    .welcome-area .welcome-area-container .logo {
        margin-bottom: 2rem;
        max-width: 90%;
    }

    .welcome-area .welcome-area-container p {
        font-size: 14px;
        margin-bottom: 2rem;
    }

    .welcome-area .welcome-area-container .main-button {
        font-size: 14px;
        max-width: 269px;
        padding: 10px;
    }
}

/* 
  ---------------------------------------------
  features
  --------------------------------------------- 
  */
.featured-area {
    position: relative;
    padding: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    /*background: #000000;*/
    /* background: #fff; */
    padding: 0px;
}

.featured-area .featured-area-container {
    max-width: 80vw;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    max-width: 1140px;
}

.featured-area.featured-area-colored {
    background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);
    margin-top: 0;
    color: #ffff;
    padding: 150px 0;
}

.featured-area.featured-area-colored .featured-area-colored-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.featured-area.featured-area-colored .featured-area-colored-container .featured-item__title {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 1140px;
}

.featured-area.featured-area-colored .featured-area-colored-container p {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 1140px;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    overflow-x: auto;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 48px 0 rgb(0 0 0 / 8%);
    margin-bottom: 30px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 10px;
    width: 150px;
    height: 150px;
    justify-content: center;
    position: relative;
}

.featured-area.featured-area-why {
    position: relative;
    margin: 0;
    padding: 0px;
    /* background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%); */
}

.featured-area.featured-area-why h3 {
    position: relative;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.2;
    max-width: 1140px;
    text-align: center;
    /* color: #d65152; */
    color: #FFF;
    padding: 0 20px;
}

.featured-area.featured-area-why .featured-area-container.featured-area-big {
    /* background:red; */
    /* margin: 20px; */
    margin: 0px;
}

.featured-area.featured-area-why .featured-area-container.featured-area-big .featured-area-item__big span.numeric-list {
    font-size: 31px;
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    /* background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);*/
    background: #000000;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: initial;
}

.featured-area.featured-area-why .featured-item__container p {
    position: relative;
    font-size: 14px;
    line-height: 1.2;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box img {
    margin-bottom: 0.5rem;
    max-width: 49px;
    max-height: 49px;
}

.featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box strong {
    text-transform: uppercase;
    font-size: 13px;
}

.featured-area .featured-area-container.featured-area-small {
    margin-top: -110px;
}

.featured-area .featured-area-container.featured-area-big {
    margin-top: 0px;
    flex-direction: column;
    padding: 0px;
}

.featured-area .featured-area-container.featured-area-big h2 {
    font-size: 25px;
}

.featured-area .featured-area-container .featured-area-item__big {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 5px;
}

.featured-area .featured-area-container .featured-area-item__big.left {
    text-align: left;
    min-height: 105px;
    width: 100%;
}

.featured-area .featured-area-container .featured-area-item__big.right {
    text-align: right;
    flex-direction: row-reverse;
    min-height: 150px;
    width: 100%;
}

.featured-area .featured-area-container .featured-area-item__big.left .featured-item__container, .featured-area .featured-area-container .featured-area-item__big.right .featured-item__container {
    margin: 0;
}

.featured-area .featured-area-container .featured-area-item__big img {
    max-width: 250px;
    width: 100%;
}

.featured-area .featured-area-container .featured-area-item__big .welcome-img {
    background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);
    padding: 20px;
    border-radius: 20px;
    max-width: 235px;
}

.featured-area .featured-area-container .featured-area-item__big .welcome-img img {
    max-width: initial;
}

.featured-area .featured-area-container .featured-area-item__big .featured-item__container {
    margin-left: 2rem;
    width: 100%;
    padding: 10px 15px;
    font-size: 12px;
    line-height: 1.4;
    color: #FFF;
}

.featured-area .featured-area-container .featured-area-item__big .featured-item__container h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
}

.featured-area .featured-area-container .featured-area-item__big .featured-item__container :not(:last-child) {
    margin-bottom: 1rem;
}

.featured-area .featured-area-container .featured-area-item__small {
    cursor: pointer;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    margin: 0px 10px;
    max-width: 33.33%;
    min-width: 210px;
    width: 100%;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.featured-area .featured-area-container .featured-area-item__small .icon {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 0 0 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #3b63dc 0%, #db1461 100%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-area .featured-area-container .featured-area-item__small .icon img {
    width: 38px;
}

.featured-area .featured-area-container .featured-area-item__small .featured-item__title {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.featured-area .featured-area-container .featured-area-item__small p {
    font-weight: 400;
    font-size: 18px;
    color: #777;
    letter-spacing: 0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.featured-area .featured-area-container .featured-area-item__small a {
    float: right;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .featured-area.featured-area-colored {
        min-height: 100vh;
        margin: 0;
    }

    .featured-area .featured-area-container.featured-area-small {
        margin-top: 10px;
    }

    .featured-area .featured-area-container {
        flex-direction: column;
        max-width: initial;
        width: 100%;
    }

    .featured-area .featured-area-container .featured-area-item__small {
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0;
        padding: 20px;
        min-height: initial;
        padding: 30px 20px;
    }

    .featured-area .featured-area-container.featured-area-big {
        max-width: initial;
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .featured-area .featured-area-container .featured-area-item__big {
        padding: 0 20px;
        text-align: center;
    }

    .featured-area .featured-area-container .featured-area-item__big .welcome-img, .featured-area .featured-area-container .featured-area-item__big img {
        display: none !important;
    }

    .featured-area .featured-area-container .featured-area-item__big .featured-item__container {
        margin: 0;
        padding: 0;
    }

    .featured-area .featured-area-container .featured-area-item__big.left .featured-item__container {
        padding-left: 15px;
    }

    .featured-area .featured-area-container .featured-area-item__big.right .featured-item__container {
        padding-right: 15px;
    }

    .featured-area.featured-area-why .featured-item__container p {
        font-size: 12px;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes {
        flex-direction: column;
        width: 100%;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box {
        display: block;
        width: initial;
        height: initial;
        font-size: 10px;
        width: 100%;
        margin: 0;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box {
        padding: 1rem
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box:not(:last-child) {
        margin-bottom: 10px;
    }

    .featured-area.featured-area-colored .featured-area-colored-container .boxes .mini-box img {
        display: none;
    }

    .featured-area.featured-area-why .featured-area-container.featured-area-big .featured-area-item__big span.numeric-list {
        min-width: 65px;
        height: 65px;
        font-size: 34px;
    }
}

.bounce-6 {
    width: 36px;
    height: 60px;
    border: 3px solid #878787;
    border-radius: 60px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.bounce-6 label {
    position: relative;
    transition: all 0.3s ease 0s;
    top: 0;
    animation: opacityWheel 2s infinite;
    -webkit-animation: opacityWheel 2s infinite;
}

@media (max-width: 767px) {
    .bounce-6::before {
        content: '';
        width: 8px;
        height: 8px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ccc;
        border-radius: 50%;
        opacity: 1;
        animation: wheel 2s infinite;
        -webkit-animation: wheel 2s infinite;
    }

    .bounce-6 label {
        display: none;
    }
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 40px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 40px;
    }
}

@keyframes opacityWheel {
    to {
        top: 6px;
        opacity: 0;
    }
}

@-webkit-keyframes opacityWheel {
    to {
        top: 6px;
        opacity: 0;
    }
}


/* Widev per cambio home */
.container-welcome {
    width: 80%;
    /*border: solid 1px red;*/
}
.instruction-item{
    max-width: 45%;
    float: left;
    margin: 15px 20px;
}
.container-welcome-sx {
    float: left;
    width: 30%;
    margin-top: 2rem;
}
.container-welcome-dx {
    width: 70%;
    float: left;
}

@media (max-width: 1380px) {
    .container-welcome-sx {
        float: left;
        width: 100%;
        margin-top: 2rem;
    }
    .container-welcome-dx {
        width: 100%;
        float: left;
    }
    .featured-area .featured-area-container .featured-area-item__big.left {
        text-align: left;
        min-height: 100px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .container-welcome {
        width: 80%;
        margin: 20px 0px;
    /*border: solid 1px red;*/
    }
    .featured-area.featured-area-why .featured-area-container.featured-area-big .featured-area-item__big span.numeric-list {
        min-width: 45px;
        height: 45px;
    }
    .featured-area .featured-area-container .featured-area-item__big {
        padding: 0 2px;
    }
    .instruction-item{
        max-width: 100%;
        float: left;
        margin: 15px 20px;
    }
    .featured-area .featured-area-container .featured-area-item__big.left {
        text-align: center;
        min-height: 80px;
        width: 100%;
    }
}
