html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


p, ul, li {
    font-size: .9375rem;
    line-height: 1.5rem;
    color: #7a7a7a;
    font-weight: 400;
}

.container-barragan-big {
    width: 100%;
    max-width: 1620px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-barragan-normal {
    width: 100%;
    max-width: 1425px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-barragan-small {
    width: 100%;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
}

.form-control {
    background: #eef3f6;
    color: #7a7a7a;
    border-radius: 35px;
}

.form-control:focus {
    border-color: #13b7e2;
}

/* Button */

.santi-button {
    -webkit-appearance: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: none;
    outline: none;
    padding: 20px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.santi-button.disabled,
.santi-button:disabled {
    opacity: 0.4;
}

.santi-button-green {
    border: 1px solid #33d0a5;
    background-color: #33d0a5;
    color: #fff;
}

.santi-button-green:hover {
    background-color: #fff;
    color: #33d0a5;
}

.santi-button-blue {
    border: 1px solid #13b7e2;
    background-color: #13b7e2;
    color: #fff;
}

.santi-button-blue:hover {
    background-color: #fff;
    color: #13b7e2;
}

/* Policity Box */

#politicy-box {
    z-index: 999;
    display: none;
    position: fixed;
    width: 320px;
    border-radius: 10px;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    background-color: #f4f4f5;
    border: 1px solid #13b7e2;
    font-size: 12px;
    align-items: center;
}

#politicy-box .image {
    min-width: 30px;
    width: 30px;
    height: auto;
    margin-right: 15px;
}

#politicy-box .image svg {
    width: 100%;
    height: auto;
    fill:#13b7e2;
}

#politicy-box .text {
    color: #7a7a7a;
    display: flex;
    flex-direction: column;
}

#politicy-box .text a,
#politicy-box .text a:hover {
    color: #13b7e2;
}

#politicy-box .text .box-button {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    border: 1px solid #13b7e2;
    color: #13b7e2;
    padding: 5px 15px;
    border-radius: 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
#politicy-box .text .box-button:hover {
    cursor: pointer;
    background-color: #13b7e2;
    color: #fff;
}


/* Header */

.header-nav-barragan {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: transparent;
}

.header-nav-barragan.active {
    background-color: #2f3a4e;
    -webkit-box-shadow: 0px 11px 24px -12px rgba(0,0,0,0.59);
    -moz-box-shadow: 0px 11px 24px -12px rgba(0,0,0,0.59);
    box-shadow: 0px 11px 24px -12px rgba(0,0,0,0.59);
}

.header-nav-barragan .container-barragan-big {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav-barragan .container-barragan-big .logo {
    width: 230px;
    min-width: 230px;
}

.header-nav-barragan .container-barragan-big .logo img {
    width: 100%;
    height: auto;
}

.header-nav-barragan .container-barragan-big .right-zone {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.header-nav-barragan .container-barragan-big .right-zone .menu-icon {
    display: none;
}

.header-nav-barragan .container-barragan-big .right-zone .menu {
    width: 100%;
}

.header-nav-barragan .container-barragan-big .right-zone .menu ul {
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
}

.header-nav-barragan .container-barragan-big .right-zone .menu ul li a[data-depth="0"] {
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons {
    display: flex;
    align-items: center;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info {
    margin: 0 20px;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info .user-info .login-icon,
.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #13b7e2;
    border: 1px solid #13b7e2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info .user-info .login-icon svg,
.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon svg {
    fill: #fff;
    width: 20px;
    height: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info .user-info .login-icon:hover,
.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon:hover {
    cursor: pointer;
    background-color: #fff;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info .user-info .login-icon:hover svg,
.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon:hover svg{
    fill: #13b7e2;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon {
    margin-right: 10px;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon span {
    position: absolute;
    top: -8px;
    right: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    border: 1px solid #13b7e2;
    color: #13b7e2;
    background-color: #fff;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart {
    display: flex;
    align-items: center;
}

.header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart span {
    color: #fff;
}


@media screen and (max-width: 1280px) {

    .header-nav-barragan .container-barragan-big .right-zone .menu {
        z-index: 999;
        position: absolute;
        top: 0;
        left: -200vw;
        width: calc(100vw - 245px);
        height: 100vh;
        padding: 20px;
        background-color: #13b7e2;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu.active {
        left: 0;
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu #_desktop_top_menu {
        height: 100%;
    }
    .header-nav-barragan .container-barragan-big .right-zone .menu ul {
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu-icon {
        width: 45px;
        height: 45px;
        border-radius: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #13b7e2;
        border: 1px solid #13b7e2;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu-icon:hover {
        cursor: pointer;
        background-color: #fff;
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu-icon span {
        display: block;
        width: 50%;
        height: 2px;
        border-radius: 3px;
        background-color: #fff;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu-icon.active span:nth-child(1) {
        -webkit-transform: rotate(-45deg) translate(-5px, 4px);
        transform: rotate(-45deg) translate(-5px, 4px);
    }
    .header-nav-barragan .container-barragan-big .right-zone .menu-icon.active span:nth-child(2) {
        opacity: 0;
    }
    .header-nav-barragan .container-barragan-big .right-zone .menu-icon.active span:nth-child(3) {
        -webkit-transform: rotate(45deg) translate(-5px, -6px);
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu-icon:hover span {
        background-color: #13b7e2;
    }

    .header-nav-barragan .container-barragan-big .right-zone .menu-icon span:nth-child(2) {
        margin: 5px 0;
    }
}

@media screen and (max-width: 799px) {

    .header-nav-barragan .container-barragan-big .right-zone .menu {
        width: calc(100vw  - 175px);
    }

    .header-nav-barragan {
        padding: 15px 0;
        background-color: #2f3a4e;
        -webkit-box-shadow: 0px 11px 24px -12px rgba(0,0,0,0.59);
        -moz-box-shadow: 0px 11px 24px -12px rgba(0,0,0,0.59);
        box-shadow: 0px 11px 24px -12px rgba(0,0,0,0.59);
    }

    .header-nav-barragan .container-barragan-big .logo {
        width: 140px;
        min-width: 140px;
    }

    .header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info {
        margin: 0 10px;
    }

    .header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info .user-info .login-icon,
    .header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon,
    .header-nav-barragan .container-barragan-big .right-zone .menu-icon {
        width: 38px;
        height: 38px;
    }

    .header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_user_info .user-info .login-icon svg,
    .header-nav-barragan .container-barragan-big .right-zone .right-icons #_desktop_cart .blockcart .cart-icon svg {
        width: 17px;
    }


}

#contact #wrapper,
#product #wrapper,
#cart #wrapper,
#authentication #wrapper
{
    margin-top: 80px;
    margin-bottom: 80px;
}


/* Main */

main {
    margin-top: 115px;
}

#index main {
    margin-top: 0px;
}

@media screen and (max-width: 799px) {
    main {
        margin-top: 70px;
    }

}


/* Title Header */
.page-header h1 {
    text-align: center;
}

/* Home Slider */

.carousel .carousel-inner {
    margin-bottom: 0;
}

.carousel .carousel-inner .carousel-item .background-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    width: 100%;
    height: 830px;
    padding: 0 55px;
}

.carousel .carousel-inner .carousel-item .background-slider .content-slider {
    width: 50%;
    margin-left: 50%;
}

.carousel .carousel-inner .carousel-item .background-slider .content-slider * {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.carousel .carousel-inner .carousel-item .background-slider .content-slider .title-slider {
    font-size: 55px;
    line-height: 55px;
    font-weight: 800;
    color: #13b7e2;
}

.carousel .carousel-inner .carousel-item .background-slider .content-slider  *:nth-child(2) {
    font-size: 55px;
    line-height: 55px;
    color: #ddd9d6;
}

.carousel .carousel-inner .carousel-item .background-slider .content-slider  *:nth-child(3) {
    font-size: 55px;
    line-height: 55px;
    color: #fff;
    font-weight: 800;
}


@media screen and (max-width: 1200px) {
    .carousel .carousel-inner .carousel-item .background-slider .content-slider {
        width: 70%;
        margin-left: 30%;
    }
}

@media screen and (max-width: 750px) {

    .carousel .carousel-inner .carousel-item .background-slider {
        padding: 140px 20px;
        height: auto;
    }

    .carousel .carousel-inner .carousel-item .background-slider .content-slider {
        width: 90%;
        margin-right: 5%;
        margin-left: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .carousel .carousel-inner .carousel-item .background-slider .content-slider .title-slider {
        font-size: 45px;
        line-height: 53px;
        text-align: center;
    }

    .carousel .carousel-inner .carousel-item .background-slider .content-slider *:nth-child(2) {
        font-size: 45px;
        line-height: 53px;
        text-align: center;
    }

    .carousel .carousel-inner .carousel-item .background-slider .content-slider *:nth-child(3) {
        font-size: 45px;
        line-height: 53px;
        text-align: center;
    }
}

/* Home Boxs */

.home-boxs {
    position: relative;
    width: 100%;
    max-width: 1210px;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
}

.home-boxs .box {
    flex-basis: 33%;
    width: 33%;
}

.home-boxs .side-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 345px;
    padding: 0 40px;
    background-color: #13b7e2;
}

.home-boxs .side-box * {
    color: #fff;
}

.home-boxs .side-box h2 {
    font-weight: normal;
    font-size: 35px;
}

.home-boxs .center-box {
    height: 370px;
    background-color: #2f3a4e;
}

.home-boxs .center-box #testominies {
    position: relative;
}
.home-boxs .center-box #testominies .owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-boxs .center-box #testominies .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    border-radius: 20px;
    border: 1px solid #fff;
    background-color: #2f3a4e;
    margin: 0 3px;
}
.home-boxs .center-box #testominies .owl-dots .owl-dot.active {
    background-color: #fff;
}
.home-boxs .center-box #testominies .testimony {
    padding: 40px;
}

.home-boxs .center-box #testominies .testimony p {
    color: #fff;
}
.home-boxs .center-box #testominies .testimony p:first-child {
    font-style: italic;
    font-size: 13px;
}
.home-boxs .center-box #testominies .testimony p:last-child {
    font-weight: bold;
}

@media screen and (max-width: 860px) {
    .home-boxs {
        flex-wrap: wrap;
    }
    .home-boxs .box {
        flex-basis: 100%;
        width: 100%;
    }
    .home-boxs .side-box {
        height: auto;
        padding: 40px;
    }
    .home-boxs .center-box {
        height: auto;
    }
}

@media screen and (max-width: 669px) {
    .home-boxs .side-box h2 {
        font-size: 25px;
    }
}


/* Who I Am */

.who-i-am {
    margin-top: 80px;
    background: url('/themes/santibarragan/assets/img/background-who-i-am.png') no-repeat bottom right;
    background-size: contain;
}

.who-i-am .container-barragan-normal {
    display: flex;
    align-items: flex-end;
}

.who-i-am .container-barragan-normal .text {
    flex-basis: 60%;
    width: 60%;
    padding-right: 175px;
    padding-bottom: 80px;
}

.who-i-am .container-barragan-normal .text ul {
    margin-left: 20px;
}

.who-i-am .container-barragan-normal .text ul li::before {
    content: "\2022";
    color: #13b7e2;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.who-i-am .container-barragan-normal .text h2 {
    font-weight: normal;
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 45px;
}

.who-i-am .container-barragan-normal .text .santi-button {
    margin-top: 45px;
}

.who-i-am .container-barragan-normal .image {
    flex-basis: 40%;
    width: 40%;
}

.who-i-am .container-barragan-normal .image img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1070px) {

    .who-i-am .container-barragan-normal {
        flex-wrap: wrap;
    }
    .who-i-am .container-barragan-normal .text {
        flex-basis: 100%;
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 80px;
    }
    .who-i-am .container-barragan-normal .image {
        flex-basis: 100%;
        width: 100%;
        text-align: center;
    }
    .who-i-am .container-barragan-normal .image img {
        max-width: 440px;
    }
}

@media screen and (max-width: 669px) {
    .who-i-am .container-barragan-normal .text h2 {
        font-size: 35px;
        line-height: 40px;
    }
}

/* How work */

.how-work {
    width: 95%;
    margin-right: 5%;
    display: flex;
}

.how-work .text {
    width: calc(100% - 500px);
    flex-basis: calc(100% - 500px);
    padding: 100px 100px 100px 17%;
    background: url('/themes/santibarragan/assets/img/background-how-work.png') no-repeat center center;
    background-size: cover;
}

.how-work .text * {
    color: #fff;
}

.how-work .text h2 {
    font-weight: normal;
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 45px;
}

.how-work .text .steps-work {
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
}

.how-work .text .steps-work .step {
    position: relative;
    padding-right: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.how-work .text .steps-work .step .background-step {
    position: relative;
    width: 170px;
    height: 140px;
    background-color: #2f3a4e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.how-work .text .steps-work .step .background-step:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -7.5px;
    right: -20px;
    width: 15px;
    height: 15px;
    background: url(/themes/santibarragan/assets/img/arrows.png) no-repeat center center;
    background-size: contain;
}

.how-work .text .steps-work .step:last-child {
    padding-right: 0;
}

.how-work .text .steps-work .step:last-child .background-step:after {
    content: none;
}

.how-work .image-and-testomonies {
    width: 500px;
    background-color: #2f3a4e;
    height: 500px;
    padding: 40px;
}
.how-work .image-and-testomonies #testominies-image {
    position: relative;
}


.how-work .image-and-testomonies #testominies-image .owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-work .image-and-testomonies #testominies-image .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    border-radius: 20px;
    border: 1px solid #fff;
    background-color: #2f3a4e;
    margin: 0 3px;
}

.how-work .image-and-testomonies #testominies-image .owl-dots .owl-dot.active {
    background-color: #fff;
}

.how-work .image-and-testomonies img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1755px) {
    .how-work .text {
        padding: 100px;
    }
}

@media screen and (max-width: 1385px) {

    .how-work {
        flex-wrap: wrap;
        width: 100%;
        margin-right: 0;
    }

    .how-work .text {
        width: 95%;
        flex-basis: 95%;
    }

    .how-work .text .steps-work .step:nth-child(2) .background-step:after {
        content: '';
    }

    .how-work .image-and-testomonies {
        margin-left: auto;
        margin-top: -30px;
        width: 95%;
        flex-basis: 95%;
        height: auto;
    }
}

@media screen and (max-width: 859px) {

    .how-work .text .steps-work {
        justify-content: center;
    }

    .how-work .text .steps-work .step {
        flex-basis: 50%;
        width: 50%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .how-work .text .steps-work .step .background-step {
        width: calc(100% - 25px);
    }

    .how-work .text .steps-work .step:nth-child(2) .background-step:after {
        content: none;
    }
}

@media screen and (max-width: 860px) {
    .how-work .text {
        padding: 80px 25px;
    }
}

@media screen and (max-width: 669px) {

    .how-work .text h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .how-work .text .steps-work .step {
        flex-basis: 100%;
        width: 100%;
    }
    .how-work .text .steps-work .step .background-step:after {
        content: none;
    }
}

/* Programs */

.programs-section .container-barragan-big {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #eef3f6;
}

.programs-section .container-barragan-big  .title-programs * {
    text-align: center;
}

.programs-section .container-barragan-big  .title-programs h2 {
    font-weight: normal;
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 45px;
}

.programs-section .container-barragan-big  .title-programs p {
    color: #2f3a4e;
}

.programs-section .container-barragan-big .programs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
    margin-top: 75px;
}

.programs-section .container-barragan-big .programs .program {
    width: calc(24% - 15px);
    flex-basis: calc(24% - 15px);
    text-align: center;
}

.programs-section .container-barragan-big .programs .program.big {
    width: calc(26% - 15px);
    flex-basis: calc(26% - 15px);
    text-align: center;
}

.programs-section .container-barragan-big .programs .program .header-program {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #13b7e2;
    padding: 20px 40px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.programs-section .container-barragan-big .programs .program .body-program {
    padding: 20px 40px;
    background: url('/themes/santibarragan/assets/img/background-programa.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programs-section .container-barragan-big .programs .program .body-program p {
    color: #fff;
    text-transform: uppercase;
}

.programs-section .container-barragan-big .programs .program .body-program p:nth-child(1),
.programs-section .container-barragan-big .programs .program .body-program p:nth-child(2)
{
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
}
.programs-section .container-barragan-big .programs .program .body-program p:nth-child(2) span {
    font-size: 16px;
    line-height: 35px;
    font-weight: normal;
}

.programs-section .container-barragan-big .programs .program .body-program .app {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 15px 0;
    border-top: 1px solid #5c61b3;
}

.programs-section .container-barragan-big .programs .program .body-program .app img {
    margin-right: 15px;
}


.programs-section .container-barragan-big .programs .program .option-program {
    padding: 15px;
    text-transform: uppercase;
    background-color:  #13b7e2;
    color: #fff;
}

.programs-section .container-barragan-big .programs .footer-program {
    display: block;
    padding: 25px;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    background: linear-gradient(90deg,  #2f3a4e 35%,  #2f3a4e 100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.programs-section .container-barragan-big .programs .footer-program:hover {
    background: linear-gradient(90deg, rgba(242,95,42,1) 35%, rgba(215,133,88,1) 100%);
}


@media screen and (max-width: 1300px) {
    .programs-section .container-barragan-big .programs {
        flex-wrap: wrap;
    }
    .programs-section .container-barragan-big .programs .program,
    .programs-section .container-barragan-big .programs .program.big{
        width: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
        text-align: center;
        margin-bottom: 15px;
    }
    .programs-section .container-barragan-big .programs .program:nth-child(3),
    .programs-section .container-barragan-big .programs .program:nth-child(4) {
        margin-top: -35px;
    }
}

@media screen and (max-width: 920px) {
    .programs-section .container-barragan-big .programs {
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media screen and (max-width: 669px) {

    .programs-section .container-barragan-big .title-programs h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .programs-section .container-barragan-big .programs .program,
    .programs-section .container-barragan-big .programs .program.big{
        flex-basis: 100%;
        width: 100%;
    }
    .programs-section .container-barragan-big .programs .program:nth-child(3),
    .programs-section .container-barragan-big .programs .program:nth-child(4) {
        margin-top: 0;
    }
}




/* Payments Procress */

.payment-process {
    padding-top: 80px;
    position: relative;
}


.payment-process .container-barragan-normal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.payment-process .container-barragan-normal h2 {
    text-align: center;
    font-weight: normal;
    color: #13b7e2;
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 45px;
}

.payment-process .container-barragan-normal h2 strong {
    color: #2f3a4e;
}

.payment-process .container-barragan-normal .process-steps {
    margin: 95px 0 50px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.payment-process .container-barragan-normal .process-steps .process-step {
    flex-basis: 320px;
    width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.payment-process .container-barragan-normal .process-steps .process-step h3 {
    font-weight: normal;
    color: #13b7e2;
    font-size: 30px;
    margin-bottom: 20px;
}


.payment-process .container-barragan-normal .process-steps .process-step .number {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 30px;
}

.payment-process .container-barragan-normal .process-steps .process-step .number:after {
    content: ' ';
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: -12vw;
    width: 105px;
    height: 35px;
    background: url(/themes/santibarragan/assets/img/arrow-long.png) no-repeat center center;
    background-size: contain;
}

.payment-process .container-barragan-normal .process-steps .process-step:last-child .number:after {
    content: none;
}

.payment-process .container-barragan-normal .process-steps .process-step:nth-child(1) .number {
    background-color: #eef3f6;
}

.payment-process .container-barragan-normal .process-steps .process-step:nth-child(2) .number {
    background-color: #d8e2e8;
}

.payment-process .container-barragan-normal .process-steps .process-step:nth-child(3) .number {
    background-color: #b2c1ca;
}

@media screen and (max-width: 1075px) {

    .payment-process .container-barragan-normal .process-steps {
        flex-wrap: wrap;
        margin: 0 0 50px 0;
    }
    .payment-process .container-barragan-normal .process-steps .process-step {
        flex-basis:100%;
        width: 100%;
        margin-bottom: 20px;
    }
    .payment-process .container-barragan-normal .process-steps .process-step p {
        width: 100%;
        max-width: 400px;
    }
    .payment-process .container-barragan-normal .process-steps .process-step .number:after {
        content: none;
    }
}

@media screen and (max-width: 669px) {

    .payment-process .container-barragan-normal h2 {
        font-size: 35px;
        line-height: 40px;
    }
    .payment-process .container-barragan-normal .process-steps .process-step h3 {
        font-size: 25px;
    }
}


/* Video Section */

.videos-social-process {
    display: flex;
    align-items: center;
    margin-top: 80px;
}
.videos-social-process img {
    flex-basis: 40%;
    width: 40%;
    height: auto;
    z-index: 3;
}
.videos-social-process .text {
    z-index: 2;
    flex-basis: 80%;
    width: 80%;
    margin-left: -16%;
    background-color: #13b7e2;
    padding: 75px 75px 75px 20%;
}
.videos-social-process .text * {
    color: #fff;
}
.videos-social-process .text h2 {
    width: 100%;
    flex-basis: 100%;
    font-weight: normal;
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 20px;
}

.videos-social-process .text p:nth-child(1) {
    width: 100%;
    flex-basis: 100%;
    font-size: 16px;
    margin-bottom: 40px;
}

.videos-social-process .text a {
    text-decoration: underline;
    font-weight: bold;
}
.videos-social-process .text img {
    width: 300px;
    height: auto;
    margin: 0 15px 15px 0;
}

.videos-social-process #slider-moto-photo {
    margin-top: 20px;
    position: relative;
}
.videos-social-process #slider-moto-photo .owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videos-social-process #slider-moto-photo .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    border-radius: 20px;
    border: 1px solid #fff;
    background-color: #2f3a4e;
    margin: 0 3px;
}

.videos-social-process #slider-moto-photo .owl-dots .owl-dot.active {
    background-color: #fff;
}


.videos-social-process .text iframe {
    flex-basis: calc(33% - 7.5px);
    width: calc(33% - 7.5px);
    height: 350px;
}
.videos-social-process .text p a {
    text-decoration: underline;
}

@media screen and (max-width: 1250px) {
    .videos-social-process img {
       display: none;
    }
    .videos-social-process .text {
        flex-basis: 95%;
        width: 95%;
        margin-left: 5%;
        background-color: #13b7e2;
        padding: 75px;
    }
}
@media screen and (max-width: 1250px) {
    .videos-social-process .text {
        padding: 75px 20px;
    }
    .videos-social-process .text iframe {
        flex-basis: calc(50% - 7.5px);
        width: calc(50% - 7.5px);
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 669px) {

    .videos-social-process .text {
        padding: 75px 20px 20px 20px;
    }

    .videos-social-process .text h2 {
        font-size: 25px;
    }
    .videos-social-process .text iframe {
        flex-basis: 100%;
        width: 100%;
    }
}



/* App Section */

.app-section {
    z-index: 1;
    margin-top: -300px;
    margin-bottom: 75px;
}

.app-section .container-barragan-big {
    background-color: #eef3f6;
    display: flex;
    align-items: flex-end;
    padding-right: 0;
    padding-left: 0;
}

.app-section .container-barragan-big .text {
    margin-top: 450px;
    flex-basis: 50%;
    width: 50%;
    padding: 0 0 180px 180px;
}

.app-section .container-barragan-big .text h2 {
    font-weight: normal;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 40px;
}

.app-section .container-barragan-big .tex p {
    color: #586686;
}

.app-section .container-barragan-big .text .stores-link {
    margin-top: 85px;
    display: flex;
}

.app-section .container-barragan-big .text .stores-link a {
    width: 185px;
    display: block;
}

.app-section .container-barragan-big .text .stores-link a img {
    width: 100%;
    height: auto;
}

.app-section .container-barragan-big .text .stores-link a:first-child {
    margin-right: 20px;
}

.app-section .container-barragan-big .image {
    width: 50%;
    flex-basis: 50%;
    height: auto;
}

@media screen and (max-width: 1250px) {
    .app-section .container-barragan-big .text {
        margin-top: 380px;
        padding: 0 25px 50px 25px;
    }
}

@media screen and (max-width: 940px) {
    .app-section .container-barragan-big {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .app-section .container-barragan-big .text {
        flex-basis: 100%;
        width: 100%;
    }
    .app-section .container-barragan-big .image {
       display: none;
    }
    .app-section .container-barragan-big .text .stores-link {
        margin-top: 40px;
    }
}

@media screen and (max-width: 669px) {
    .app-section .container-barragan-big .text h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .app-section .container-barragan-big .image {
        flex-basis: 100%;
        width: 100%;
        display: block;
    }
}


/* Product / Plan */

#product #wrapper {
    background: url(/themes/santibarragan/assets/img/background-who-i-am.png) no-repeat top left;
    background-size: cover;
    padding-bottom: 100px;
}

#product h1 {
    font-weight: normal;
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 45px;
}

#product h1 span {
    font-weight: bold;
}

#product h2 {
    font-weight: normal;
    font-size: 35px;
    margin: 45px 0 15px 1px;
}

#product .product-description ul {
    margin: 50px 0;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

#product .product-description ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: relative;
    text-align: center;
    background-color: #d8e2e8;
    /*background: url(/themes/santibarragan/assets/img/background-how-work.png) no-repeat center center;
    background-size: cover;*/
    color: #7a7a7a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#product .product-description ul li::before {
    content: '';
    width: 60px;
    height: 60px;
    background: url(/themes/santibarragan/assets/img/icons/check.png) no-repeat center center;
    background-size: cover;
    margin-bottom: 25px;
}

#product .product-description h3 {
    font-weight: 600;
}

#product .right-fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
}

#product .current-price span {
    font-size: 60px;
    line-height: 70px;
    font-weight: bold;
    color: #2f3a4e;
}

#product .product-variants>.product-variants-item select {
    border: 3px solid rgba(0,0,0,.25);
    background-color: #fff;
    width: 100%;
    padding: 1.2rem;
    border-radius: 50px;
}

#product .product-variants>.product-variants-item select:focus {
    border: 3px solid #33d0a5;
}

#product .product-actions .control-label {
    font-size: 20px;
    line-height: 28px;
    color: #2f3a4e;
    font-weight: 600;
    margin-bottom: 1rem;
    display:block;
    width: 100%
}
#product .santi-button {
    width: 100%;
}


@media screen and (max-width: 992px) {

    #product .right-fixed {
        width: 100%;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        background-color: #fff;
        padding-bottom: 20px;
        -webkit-box-shadow: 0px 1px 24px -12px rgba(0,0,0,0.59);
        -moz-box-shadow: 0px 1px 24px -12px rgba(0,0,0,0.59);
        box-shadow: 0px 1px 24px -12px rgba(0,0,0,0.59);
    }
    #product .current-price span {
        font-size: 30px;
        line-height: 35px;
    }
    #product .product-actions .control-label {
        font-size: 14px;
        line-height: 17px;
    }

    #product .product-variants>.product-variants-item {
        margin: 0;
    }
    #product .product-actions {
        margin-top: 15px;
    }
    #product .product-actions form {
        display: flex;
        align-items: flex-end;
    }
    #product .product-actions  .product-variants {
        flex: 1;
        margin-right: 10px;
    }
    #product .product-variants>.product-variants-item select {
        padding: 0.9rem;
    }
    #product .product-actions form .santi-button {
        padding: 15px 30px;
    }

    #product .product-actions form .santi-button span {
        display: none;
    }
}

@media screen and (max-width: 669px) {

    #product h1 {
        font-size: 35px;
        line-height: 40px;
    }

    #product h2 {
        font-size: 25px;
    }

    #product .product-description ul {
        grid-template-columns: repeat(1, 1fr);
    }

}


/* CMS Special Page */

.special-cms-page {
    background-color: #f1f5f7;
    padding-bottom: 110px;
}

.special-cms-page .entry-header {
    padding: 200px 0;
}

.special-cms-page .entry-header * {
    color: #fff;
}

.special-cms-page .entry-header h1 {
    font-size: 55px;
    line-height: 55px;
    font-weight: 800;
    color: #fff;
}

.special-cms-page .entry-header p {
    padding: 15px;
    background-color: rgba(0,0,0,0.5);
}

#sb51studio .entry-header {
    background: url('/themes/santibarragan/assets/img/sb51studio/background-sb51studio.png') no-repeat top center;
    background-size: cover;
}


#visionbody .entry-header {
    background: url('/themes/santibarragan/assets/img/visionbody/background.jpg') no-repeat top center;
    background-size: cover;
}

.special-cms-page .text-and-image {
    display: flex;
    align-items: center;
    margin-top: 110px;
}

.special-cms-page .text-and-image .image {
    order: 1;
    margin-left: -10%;
}

.special-cms-page .text-and-image .text {
    order: 0;
}

.special-cms-page .text-and-image .text h2 {
    color: #2f3a4e;
    font-size: 30px;
    line-height: 35px;
}

.special-cms-page .text-and-image .text h2 span {
    color: #13b7e2;
}

.special-cms-page .text-and-image .text ul {
    margin-left: 20px;
}

.special-cms-page .text-and-image .text ul li::before {
    content: "\2022";
    color: #13b7e2;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.special-cms-page .text-and-image.image_first .image{
    order: 0;
    margin-right: -10%;
    margin-left: 0;
}
.special-cms-page .text-and-image.image_first .image.iframe {
    margin-right: -2%;
    z-index: 3;
}

.special-cms-page .text-and-image.image_first .text {
    order: 1;
}

.special-cms-page .text-and-image .text {
    padding: 90px;
    background-color: #fff;
    flex-basis: 55%;
    width: 55%;
    z-index: 2;
}

.special-cms-page .text-and-image .image {
    flex-basis: 55%;
    width: 55%;
    z-index: 1;
}

.special-cms-page .text-and-image .image img {
    width: 100%;
    height: auto;
}

.special-cms-page .text-and-image .image iframe {
    z-index: 3;
    width: 100%;
    height: 500px;
}

@media screen and (max-width: 769px) {

    .special-cms-page .entry-header {
        padding: 100px 0;
    }

    .special-cms-page .text-and-image {
        flex-wrap: wrap;
    }
    .special-cms-page .text-and-image .image,
    .special-cms-page .text-and-image .text{
       flex-basis: 95%;
        width: 95%;
        margin: 0;
    }
    .special-cms-page .text-and-image.image_first .image.iframe {
        z-index: 1;
    }
    .special-cms-page .text-and-image .image {
        order: 1 !important;
        margin: -8% 0 0 5% !important;
    }

    .special-cms-page .text-and-image .text {
        padding: 20px;
        order: 0 !important;
        margin: 0 5% 0 0 !important;
    }
}


/* Checkout */

#checkout #wrapper {
    margin-top: 160px;
}

@media screen and (max-width: 799px) {
    #checkout #wrapper {
        margin-top: 130px;
    }
}

/* Footer */

#footer .footer-santi {
    padding: 240px 0 80px 0;
    background: url('/themes/santibarragan/assets/img/background-footer.png') no-repeat center center;
    background-size: cover;
}

#footer .footer-santi .container-barragan-small {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer .footer-santi .container-barragan-small .logo-footer {
    margin-bottom: 50px;
}

#footer .footer-santi .container-barragan-small .footer-links a {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    margin-right: 35px;
}

#footer .after-footer-santi {
    background-color: #1b1d28;
    padding: 20px 0;
}

#footer .after-footer-santi .container-barragan-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .after-footer-santi .container-barragan-small * {
    font-size: 12px;
    color: #fff;
}

#footer .after-footer-santi .container-barragan-small .after-footer-links a {
    margin-right: 20px;
}