/* ---------------------------------------------------------- */
/* ---------------------- COMMON STYLING -------------------- */
/* ---------------------------------------------------------- */

/* Web Fonts */
@import url('https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
}

body{
    font-family: 'overlock',cursive;
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

/* Pixi web icon */
.pixi-web{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}
.pixi-web img{
    max-width: 150px;
}

/* Social Media Icon Bar */
.icon-bar{
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.icon-bar a {
    display: block;
    color: rgb(250, 192, 51);
    text-decoration: none;
    border-radius: 100%;
    background-color: rgba(56, 42, 1, 0.53);
    height: 50px;
    text-align: center;
    width: 52px;
    box-shadow: rgb(248 249 250) 0px 0px 8px 0px;
}
.icon-bar a:hover {
    background-color: rgb(2, 2, 2);
}
.icon-bar a i {
    font-size: 34px;
    line-height: 52px;
}

/* Header */
header{    
    /* background-color: #FAC033; */
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: 0.2s all ease-in-out;
}
/* navigation */
header nav .nav-link{
    color: #333;
    font-weight: 600;
    font-size: 18px;
    margin: 0 10px;
}
.navbar-brand{
    max-width: 200px;
}
.navbar-nav .nav-link {
    padding: 10px 30px !important;
    border-radius: 50px;
    position: relative;
    /* background: #FAC033; */
    border: none;
    z-index: 1;
}
.navbar-nav .nav-link:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #fff;
    border-radius: 50px;
        box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
        7px 7px 20px 0px rgba(0,0,0,.1),
        4px 4px 5px 0px rgba(0,0,0,.1);
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #0F4F87;
}
.navbar-nav .nav-link:hover:after {
    left: 0;
    width: 100%;
}
.navbar-nav .nav-link:active {
    top: 2px;
}

/* Modal 1 css */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: 0;
}
.btn-close {
    margin-right: 5px !important;
    font-size: 14px;
}
.modal-header {
    background-color: #fac033;
    color: #000;
    border-bottom: 0;
}
.modal-header h2 {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 20px;
    line-height: 1.2;
}

#Mymodal1 .modal-body ul li {
    padding: 10px 0;
    font-size: 20px;
}
#Mymodal1 .modal-body ul {
    padding: 5px 40px;
    margin: 0;
    list-style: square;
}
#Mymodal1 .modal-body ul li span {
    display: inline-block;
    width: 100%;
    max-width: 158px;
    font-weight: 700;
    color: #333;
    margin-right: 30px;
}
#Mymodal1 .modal-body ul li a {
    display: inline-flex;
    align-items: center;
    color: #0F4F87;
    font-weight: 700;
    gap: 10px;
}
#Mymodal1 .modal-body ul li a i {
    font-size: 28px;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none !important;
}

/* Modal 2 css */
.modal-header h2 img{
    max-width: 50px;
}
#Mymodal2 .modal-body{
    padding: 25px 15px;
}
.btn-yellow{
    color: #fff;
    background-color: #fac033;
    font-size: 18px;
    margin: 20px 0 30px 0;   
    width: 100%; 
    font-weight: 800;
    border-radius: 50px;
    transition: 0.2s all ease-in-out;
}
#Mymodal2 label{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
#Mymodal2 p{
    font-size: 16px;
    font-weight: 700;
}
#Mymodal2 input{
    font-size: 18px;
}
#Mymodal2 .form-control{
    outline: none !important;
    box-shadow: none !important;
}
.link-color1 *{
    color: #333 !important;
    transition: 0.2s all ease-in-out;
}
.link-color2 *{
    color: #fff !important;
}
.link-color1 *:hover,
.link-color2 *:hover{
    color: #333 !important;
}
/* Modal 3 css */
#Mymodal3 .modal-dialog{
    max-width: 1000px;
}
#Mymodal3 .modal-body{
    padding: 30px 15px;
}
.modal-body .inner-flex{
    display: flex;
    flex-direction: row;
    gap: 30px;
    text-align: center;
    justify-content: center;
}
.modal-body .inner-flex .box{
    width: calc(100% / 3 - 4%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-body .box .img-wrapper img{
    width: 100%;
}

/* footer */
#footer {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.screen10{
    padding-top: 80px;
    background: linear-gradient( 
342deg
 , rgba(76,87,107,1) 7%, rgba(6,42,108,1) 36%);
}
.footer-img {
    text-align: center;
}
.footer-img img {
    max-width: 700px;
}
.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 50px;
}
.footer-widget1 a,
.footer-widget2 a,
.footer-widget3 a {
    /* display: block; */
    color: #fff;
    font-size: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 10px;
}
.footer-widget3 p {
    margin: 0 0 10px 0;
}
.footer-widget3 a {
    text-decoration: underline;
    text-underline-position: under;
}
.footer-widget3 p span{
    display: block;
    color: #fff;
    font-size: 20px;
}
/* ----------------------- HOME PAGE CSS START ------------------- */
/* --------------------------------------------------------------- */

.screen2 .wrapper,
.screen3 .wrapper,
.screen4 .wrapper{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.screen2.screen3.screen4{
    padding-top: 0;
}



/* main */
main > section{
    padding-top: 150px;
}

/* Screen1 Css Start */
.screen1,
.screen2{
    background-image: url('../images/curva-amarilla.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -80px;
}
.screen1 .wrapper{
    max-width: 1600px !important;
    margin: 0 auto !important;
}

.screen1 .banner-caps h1 {
    font-size: 60px;
    font-weight: 900;
    color: #333;
    margin-top: 100px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.screen1 .banner-caps p {
    color: #333;
    font-family: 'Overlock';
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}
.screen1 .banner-caps a {
    display: inline-block;
    width: 100%;
    color: #333;
    text-align: center;
    max-width: 220px;
    border-radius: 50px;
    padding: 10px 0;
    font-weight: 800;
    font-family: 'overlock';
    font-size: 22px;
    transition: 0.2s all ease-in-out;
    position: relative;
    z-index: 1;
}   
.screen1 .banner-caps a {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}
.screen1 .banner-caps a:after {
    position: absolute;
    content: " ";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(315deg, #fff 0%, #fff 74%);
    transition: all 0.3s ease;
}
.screen1 .banner-caps a:hover {
    background: transparent;
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
        inset -4px -4px 6px 0 rgba(255,255,255,.5),
        inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
    color: #0F4F87;
}
.screen1 .banner-caps a:hover:after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
        inset -4px -4px 6px 0 rgba(255,255,255,.5),
        inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}

/* Banner Manu CSS Start */

.screen1 .menu-wrapper{
    position: relative;
    min-height: 600px;
    width: 100%;
    max-width: 700px !important;
    margin: 50px auto 0;
}

.screen1 .bannerMenu .menu-wrapper a {
    display: inline-block !important;
    text-decoration: none;
    width: 100%;
    max-width: 150px !important;
    color: #333;
    font-size: 18px;
    z-index: 1111111;
    border-radius: 13px;
    position: absolute;
    text-align: center;
    transition: 0.5s all ease-in-out;
    border-radius: 50px;
    transition: 0.2s all ease-in-out;
}
.screen1 .bannerMenu .menu-wrapper a span{
    display: inline-block;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #18073A;
    font-family: Overlock;
    font-weight: 600;
    font-size: 22px;
    width: 100%;
    min-width: 150px;
    max-width: 150px;
    height: 100%;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.screen1 .bannerMenu .menu-wrapper a:hover span{
    background-color: #0F4F87;
    color: #fff;
}

.screen1 .bannerMenu .menu-wrapper a span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50px;
    z-index: -1;
    transition: 0.2s all ease-in-out;
    /* animation: pulse-animation1a 2.4s infinite;     */
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
}

@keyframes pulse-animation1a {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
      }
      50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.4);
      }
      100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
      }
}

.screen1 .bannerMenu .menu-wrapper a:hover span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50px;
    z-index: -1;
    transition: 0.2s all ease-in-out;
    animation: pulse-animation1 2.4s infinite;    
}

@keyframes pulse-animation1 {
    0% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
      }
      50% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.4);
      }
      100% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
      }
}

.screen1 .bannerMenu .menu-wrapper a span::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 80px;
    border-radius: 50px;
    z-index: -2;
    transition: 0.2s all ease-in-out;
    box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.4);
    /* animation: pulse_mood_01a 2.4s ease-in-out infinite; */
}

@-webkit-keyframes pulse_mood_01a {
    0% {
        box-shadow: 0px 0px 0px 20px rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0px 0px 0px 20px rgba(255, 255, 255, 0.4);
    }
}

.screen1 .bannerMenu .menu-wrapper a:hover span::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 80px;
    border-radius: 50px;
    z-index: -2;
    transition: 0.2s all ease-in-out;
    animation: pulse_mood_01 2.4s ease-in-out infinite;
} 


.pulse-mood01 {
    -webkit-animation: pulse_mood_01 2.4s ease-in-out infinite;
    -moz-animation: pulse_mood_01 2.4s ease-in-out infinite;
    -o-animation: pulse_mood_01 2.4s ease-in-out infinite;
    -ms-animation: pulse_mood_01 2.4s ease-in-out infinite;
    animation: pulse_mood_01 2.4s ease-in-out infinite;
}

@-webkit-keyframes pulse_mood_01 {
    0% {
        box-shadow: 0px 0px 0px 40px rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0px 0px 0px 40px rgba(255, 255, 255, 0.4);
    }
}

.screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
    left: 0px;
    bottom: 80px;
    animation: game_01a 2s ease-in-out infinite;
    transition: 0.2s all ease-in-out;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(1):hover{
    -webkit-animation: game_01 2s ease-in-out infinite;
    -moz-animation: game_01 2s ease-in-out infinite;
    -o-animation: game_01 2s ease-in-out infinite;
    -ms-animation: game_01 2s ease-in-out infinite;
    animation: game_01 2s ease-in-out infinite;
    transition: 0.2s all ease-in-out;
}

@-webkit-keyframes game_01a {
    0% {
        left: 0px;
        bottom: 80px;
    }
    50% {
        left: 10px;
        bottom: 90px;
    }
    100% {
        left: 0px;
        bottom: 80px;
    }
}

@-webkit-keyframes game_01 {
    0% {
        left: 0px;
        bottom: 80px;
    }
    50% {
        left: 30px;
        bottom: 100px;
    }
    100% {
        left: 0px;
        bottom: 80px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
    bottom: 270px;
    left: 0px;
    animation: game_02a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(2):hover{
    -webkit-animation: game_02 2s ease-in-out infinite;
    -moz-animation: game_02 2s ease-in-out infinite;
    -o-animation: game_02 2s ease-in-out infinite;
    -ms-animation: game_02 2s ease-in-out infinite;
    animation: game_02 2s ease-in-out infinite;
}
@-webkit-keyframes game_02a {
    0% {
        bottom: 270px;
        left: 0px;
    }

    50% {
        bottom: 270px;
        left: 10px;
    }

    100% {
        bottom: 270px;
        left: 0px;
    }
}
@-webkit-keyframes game_02 {
    0% {
        bottom: 270px;
        left: 0px;
    }

    50% {
        bottom: 270px;
        left: 20px;
    }

    100% {
        bottom: 270px;
        left: 0px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
    left: 70px;
    top: 80px;
    animation: game_03a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(3):hover{
    -webkit-animation: game_03 2s ease-in-out infinite;
    -moz-animation: game_03 2s ease-in-out infinite;
    -o-animation: game_03 2s ease-in-out infinite;
    -ms-animation: game_03 2s ease-in-out infinite;
    animation: game_03 2s ease-in-out infinite;
}
@-webkit-keyframes game_03a {
    0% {
        left: 70px;
        top: 80px;
    }

    50% {
        left: 80px;
        top: 90px;
    }

    100% {
        left: 70px;
        top: 80px;
    }
}
@-webkit-keyframes game_03 {
    0% {
        left: 70px;
        top: 80px;
    }

    50% {
        left: 90px;
        top: 100px;
    }

    100% {
        left: 70px;
        top: 80px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
    left: 280px;
    top: -35px;
    animation: game_04a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(4):hover{
    -webkit-animation: game_04 2s ease-in-out infinite;
    -moz-animation: game_04 2s ease-in-out infinite;
    -o-animation: game_04 2s ease-in-out infinite;
    -ms-animation: game_04 2s ease-in-out infinite;
    animation: game_04 2s ease-in-out infinite;
}
@-webkit-keyframes game_04a {
    0% {
        left: 280px;
        top: -35px;
    }

    50% {
        left: 280px;
        top: -5px;
    }

    100% {
        left: 280px;
        top: -35px;
    }
}
@-webkit-keyframes game_04 {
    0% {
        left: 280px;
        top: -35px;
    }

    50% {
        left: 280px;
        top: -20px;
    }

    100% {
        left: 280px;
        top: -35px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
    right: 70px;
    top: 80px;
    animation: game_05a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(5):hover{
    -webkit-animation: game_05 2s ease-in-out infinite;
    -moz-animation: game_05 2s ease-in-out infinite;
    -o-animation: game_05 2s ease-in-out infinite;
    -ms-animation: game_05 2s ease-in-out infinite;
    animation: game_05 2s ease-in-out infinite;
}
@-webkit-keyframes game_05a {
    0% {
        right: 70px;
        top: 80px;
    }

    50% {
        right: 80px;
        top: 90px;
    }

    100% {
        right: 70px;
        top: 80px;
    }
}
@-webkit-keyframes game_05 {
    0% {
        right: 70px;
        top: 80px;
    }

    50% {
        right: 90px;
        top: 100px;
    }

    100% {
        right: 70px;
        top: 80px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
    bottom: 280px;
    right: 20px;
    animation: game_06a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(6):hover{
    -webkit-animation: game_06 2s ease-in-out infinite;
    -moz-animation: game_06 2s ease-in-out infinite;
    -o-animation: game_06 2s ease-in-out infinite;
    -ms-animation: game_06 2s ease-in-out infinite;
    animation: game_06 2s ease-in-out infinite;
}
@-webkit-keyframes game_06a {
    0% {
        bottom: 280px;
        right: 20px;
    }

    50% {
        bottom: 280px;
        right: 30px;
    }

    100% {
        bottom: 280px;
        right: 20px;
    }
}
@-webkit-keyframes game_06 {
    0% {
        bottom: 280px;
        right: 20px;
    }

    50% {
        bottom: 280px;
        right: 40px;
    }

    100% {
        bottom: 280px;
        right: 20px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
    right: 0px;
    bottom: 100px;
    animation: game_07a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(7):hover{
    -webkit-animation: game_07 2s ease-in-out infinite;
    -moz-animation: game_07 2s ease-in-out infinite;
    -o-animation: game_07 2s ease-in-out infinite;
    -ms-animation: game_07 2s ease-in-out infinite;
    animation: game_07 2s ease-in-out infinite;
}
@-webkit-keyframes game_07a {
    0% {
        right: 0px;
        bottom: 100px;
    }

    50% {
        right: 10px;
        bottom: 110px;
    }

    100% {
        right: 0px;
        bottom: 100px;
    }
}
@-webkit-keyframes game_07 {
    0% {
        right: 0px;
        bottom: 100px;
    }

    50% {
        right: 30px;
        bottom: 120px;
    }

    100% {
        right: 0px;
        bottom: 100px;
    }
}

.screen1 .bannerMenu .images-wrapper{
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-top: 100px;
}

.screen1 .bannerMenu .menu-wrapper .last-child {
    position: absolute;
    z-index: 5;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    /* border: 1px solid blue; */
    max-width: 350px;
    -webkit-filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}
.screen1 .bannerMenu .menu-wrapper .first-child {
    max-width: 320px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    vertical-align: baseline;
    transition: all 0.5s ease-in-out;
    color: #0f4f87;
    animation: img-animation2 3s ease-in-out infinite;
}


@keyframes img-animation2 {
    0% {
        -webkit-filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
        filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
    }
    25% {
        -webkit-filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
        filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
    }
    50% {
        -webkit-filter: drop-shadow( 0 0 50px rgba(152, 31, 98, 0.4));
        filter: drop-shadow( 0 0 50px rgba(152, 31, 98, 0.4));
    }
    75% {
        -webkit-filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
        filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
    }
    100% {
        -webkit-filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
        filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
        
    }
  }

/* ------------------------------------------------------- */
/* ------------------ Menu Item Position ----------------- */
/* ------------------------------------------------------- */

@media (max-width: 1400px){
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 140px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 17px;
        min-width: 140px;
        max-width: 140px;
        min-height: 70px;
        max-height: 70px;
    }
    .screen1 .bannerMenu .menu-wrapper a span::before{
        width: 140px;
        min-height: 70px;
        max-height: 70px;
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
    }
    .screen1 .bannerMenu .menu-wrapper a span::after{
        width: 140px;
        height: 70px;
        box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.4);
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 140px;
        min-height: 70px;
        max-height: 70px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 140px;
        height: 70px;
    }
    .screen1 .bannerMenu .menu-wrapper{
        min-height: 500px;
        width: 100%;
        max-width: 600px !important;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 70px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 70px;
        }
        50% {
            left: 20px;
            bottom: 90px;
        }
        100% {
            left: 0px;
            bottom: 70px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        left: 0px;
        bottom: 220px !important;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 220px;
            left: 0px;
        }
    
        50% {
            left: 30px;
            bottom: 220px;
        }
    
        100% {
            bottom: 220px;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    
        50% {
            left: 50%;
            transform: translateX(-50%);
            top: 10px;
        }
    
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 70px;
        top: 60px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 70px;
            top: 60px;
        }
    
        50% {
            right: 90px;
            top: 80px;
        }
    
        100% {
            right: 70px;
            top: 60px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 220px !important;
        right: 0px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 220px !important;
            right: 0px;
        }
    
        50% {
            bottom: 220px !important;
            right: 20px;
        }
    
        100% {
            bottom: 220px !important;
            right: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 70px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 70px;
        }
    
        50% {
            right: 20px;
            bottom: 90px;
        }
    
        100% {
            right: 0px;
            bottom: 70px;
        }
    }
    
}

@media (max-width: 1200px){
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7){
        animation: none;
    }
    .screen1 .bannerMenu .menu-wrapper a span::before,
    .screen1 .bannerMenu .menu-wrapper a span::after{
        box-shadow: none;
    }
}

@media (max-width: 991px){
    .screen1{
        background-position: center -400px;
    }
    .screen1 .wrapper{
        padding-top: 20px !important;
    }
    .screen1 .bannerMenu .menu-wrapper{
        margin: 30px auto 0;
    }
    .screen1 .menu-column{
        order: 1;
    }
    .screen1 .text-column{
        order: 2;
    }
    .screen1 .text-column .banner-caps{
        padding: 50px 0 0;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 110px;
        }
        50% {
            left: 20px;
            bottom: 130px;
        }
        100% {
            left: 0px;
            bottom: 110px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 240px !important;
        left: 0px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 240px !important;
            left: 0px;
        }
    
        50% {
            bottom: 240px !important;
            left: 30px;
        }
    
        100% {
            bottom: 240px !important;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
        left: 30px;
        top: 60px;
    }
    @-webkit-keyframes game_03 {
        0% {
            left: 30px;
            top: 60px;
        }
    
        50% {
            left: 50px;
            top: 80px;
        }
    
        100% {
            left: 30px;
            top: 60px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    
        50% {
            left: 50%;
            transform: translateX(-50%);
            top: 10px;
        }
    
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 30px;
        top: 60px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 30px;
            top: 60px;
        }
    
        50% {
            right: 50px;
            top: 80px;
        }
    
        100% {
            right: 30px;
            top: 60px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 240px !important;
        right: 0px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 240px !important;
            right: 0px;
        }
    
        50% {
            bottom: 240px !important;
            right: 30px;
        }
    
        100% {
            bottom: 240px !important;
            right: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 110px;
        }
    
        50% {
            right: 20px;
            bottom: 130px;
        }
    
        100% {
            right: 0px;
            bottom: 110px;
        }
    }
}


@media (max-width: 600px){
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 120px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 14px;
        min-width: 120px;
        max-width: 120px;
        min-height: 60px;
        max-height: 60px;
        padding: 0px 10px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 120px;
        min-height: 60px;
        max-height: 60px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 120px;
        height: 60px;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 110px;
        }
        50% {
            left: 20px;
            bottom: 130px;
        }
        100% {
            left: 0px;
            bottom: 110px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 240px;
        left: 0px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 240px;
            left: 0px;
        }
    
        50% {
            bottom: 240px;
            left: 30px;
        }
    
        100% {
            bottom: 240px;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 240px;
        right: 0px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 240px;
            right: 0px;
        }
    
        50% {
            bottom: 240px;
            right: 30px;
        }
    
        100% {
            bottom: 240px;
            right: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 110px;
        }
    
        50% {
            right: 20px;
            bottom: 130px;
        }
    
        100% {
            right: 0px;
            bottom: 110px;
        }
    }
    
    
}

@media (max-width: 450px){
    .screen1 {
        background-position: center -300px;
    }
    .screen1 .bannerMenu .menu-wrapper{
        min-height: 285px;
    }
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 100px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 12px;
        min-width: 100px;
        max-width: 100px;
        min-height: 50px;
        max-height: 50px;
        margin-right: 0 !important;
        right: 0 !important;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 100px;
        min-height: 50px;
        max-height: 50px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 100px;
        height: 50px;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 70px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 70px;
        }
        50% {
            left: 20px;
            bottom: 50px;
        }
        100% {
            left: 0px;
            bottom: 70px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 140px !important;
        left: 0px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 140px !important;
            left: 0px;
        }
    
        50% {
            bottom: 140px !important;
            left: 20px;
        }
    
        100% {
            bottom: 140px !important;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
        left: 20px;
        top: 30px;
    }
    @-webkit-keyframes game_03 {
        0% {
            left: 20px;
            top: 30px;
        }
    
        50% {
            left: 40px;
            top: 50px;
        }
    
        100% {
            left: 20px;
            top: 30px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 120px;
        transform: translateX(0);
        top: -40px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 120px;
            transform: translateX(0);
            top: -40px;
        }
    
        50% {
            left: 110px;
            transform: translateX(0);
            top: -10px;
        }
    
        100% {
            left: 120px;
            transform: translateX(0);
            top: -40px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 70px;
        top: -10px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 70px;
            top: -10px;
        }
    
        50% {
            right: 90px;
            top: 30px;
        }
    
        100% {
            right: 70px;
            top: -10px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 170px !important;
        right: 30px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 170px !important;
            right: 30px;
        }
    
        50% {
            bottom: 170px !important;
            right: 40px;
        }
    
        100% {
            bottom: 170px !important;
            right: 30px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 90px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 90px;
        }
    
        50% {
            right: 20px;
            bottom: 70px;
        }
    
        100% {
            right: 0px;
            bottom: 90px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper .last-child {
        bottom: 0px;
        max-width: 220px !important;
    }
    
}

@media (max-width: 400px){
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 100px;
        transform: translateX(0);
        top: -40px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 100px;
            transform: translateX(0);
            top: -40px;
        }
    
        50% {
            left: 110px;
            transform: translateX(0);
            top: -20px;
        }
    
        100% {
            left: 100px;
            transform: translateX(0);
            top: -40px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 30px;
        top: 0px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 30px;
            top: 0px;
        }
    
        50% {
            right: 60px;
            top: 20px;
        }
    
        100% {
            right: 30px;
            top: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 165px !important;
        right: 10px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 165px !important;
            right: 10px;
        }
    
        50% {
            bottom: 165px !important;
            right: 40px;
        }
    
        100% {
            bottom: 165px !important;
            right: 10px;
        }
    }
}

@media  (max-width: 350px){
    .screen1 {
        background-position: center  -350px;
    }
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 90px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 14px;
        min-width: 90px;
        max-width: 90px;
        min-height: 45px;
        max-height: 45px;
        padding: 0px 10px;
        font-size: 12px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 90px;
        min-height: 45px;
        max-height: 45px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 90px;
        height: 45px;
    }
    .screen1 .bannerMenu .images-wrapper {
        padding-top: 50px;
        max-width: 140px !important;
    }
}

@media  (max-width: 320px){
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 80px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 14px;
        min-width: 80px;
        max-width: 80px;
        min-height: 45px;
        max-height: 45px;
        padding: 0px 10px;
        font-size: 12px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 80px;
        min-height: 45px;
        max-height: 45px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 80px;
        height: 45px;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: -5px;
        bottom: 100px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: -5px;
            bottom: 100px;
        }
        50% {
            left: 10px;
            bottom: 80px;
        }
        100% {
            left: -5px;
            bottom: 100px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 160px !important;
        left: -5px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 160px !important;
            left: -5px;
        }
    
        50% {
            bottom: 160px !important;
            left: 10px;
        }
    
        100% {
            bottom: 160px !important;
            left: -5px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
        left: 15px;
        top: 20px;
    }
    @-webkit-keyframes game_03 {
        0% {
            left: 15px;
            top: 20px;
        }
    
        50% {
            left: 25px;
            top: 35px;
        }
    
        100% {
            left: 15px;
            top: 20px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 90px;
        transform: translateX(0);
        top: -30px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 90px;
            transform: translateX(0);
            top: -30px;
        }
    
        50% {
            left: 90px;
            transform: translateX(0);
            top: -20px;
        }
    
        100% {
            left: 90px;
            transform: translateX(0);
            top: -30px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 30px;
        top: -10px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 30px;
            top: -10px;
        }
    
        50% {
            right: 40px;
            top: 5px;
        }
    
        100% {
            right: 30px;
            top: -10px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 190px !important;
        right: -5px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 190px !important;
            right: -5px;
        }
    
        50% {
            bottom: 190px !important;
            right: 10px;
        }
    
        100% {
            bottom: 190px !important;
            right: -5px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: -5px;
        bottom: 130px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: -5px;
            bottom: 130px;
        }
    
        50% {
            right: 10px;
            bottom: 120px;
        }
    
        100% {
            right: -5px;
            bottom: 130px;
        }
    }
}








/* Screen1 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen2 Css Start */

.screen2 .custom-row,
.screen3 .custom-row,
.screen4 .custom-row{
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen2 .custom-row .column,
.screen3 .custom-row .column,
.screen4 .custom-row .column{
    width: 100%;
}

.screen2 .custom-row .img-column,
.screen3 .custom-row .img-column,
.screen4 .custom-row .img-column{
    max-width: 40% !important;
}
.screen2 .custom-row .content-column,
.screen3 .custom-row .content-column,
.screen4 .custom-row .content-column{
    max-width: 60%;
    
}

.screen2 .flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
    width: 100%;
    /* max-width: 700px; */
    margin: 0 auto !important;
}
.screen2 .flex-box .box {
    width: calc(100% / 2 - 4%);
    margin: auto;
    border-radius: 15px;
}
.screen2 .flex-box .box a {
    display: block;
    text-align: center;
    padding: 70px 0;
    font-size: 36px;
    color: #fff;
    background-color: #0F4F87;
    line-height: 1.3;
    font-weight: 900;
    border-radius: 16px;
    transition: 0.2s all ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.screen2 .flex-box .box a:hover {
    color: #0F4F87;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/* Screen2 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen3 Css Start */
.screen3{
    background-color: #FAC033;
}
.screen3 .caps-wrapper h1{
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    color: black;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.screen3 .caps-wrapper p{
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: black;
    margin-bottom: 30px;
}
.screen3 .btn-wrapper{
    display: flex;
    justify-content: center;
    column-gap: 25px;
}
.playstore-btn{
    padding: 10px 0;
    width: 100%;
    max-width: 238px;
    background-color: black;
    color: white;
    font-family: 'Raleway';
    font-size: 15px;
    font-weight: 600;
    border-radius: 13px;
    display: flex;
    flex-direction: row;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    transition: 0.2s all ease-in-out;
}
.playstore-btn i {
    font-size: 42px;
}
.playstore-btn h4 p {
    margin: 0;
    font-size: 24px;
}
.playstore-btn h4 {
    margin: 0;
    font-size: 16px;
}

.channel-btn{
    padding: 10px 0;
    width: 100%;
    max-width: 432px;
    background-color: rgb(255, 255, 255);
    color: #3c3c3b;
    font-family: 'Raleway';
    font-size: 24px;
    font-weight: 700;
    border-radius: 13px;
    display: flex;
    flex-direction: row;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
    transition: 0.2s all ease-in-out;
}
.channel-btn i{
    font-size: 31px;    
}
.channel-btn:hover,
.playstore-btn:hover{
    color: #FAC033;
    /* box-shadow: rgb(0 0 0 / 35%) 0px 25px 50px -12px; */
}

/* Screen3 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen4 Css Start */
.screen4{
    background-color: #fff;
}
.screen4 h1{
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f4f87;
    margin-bottom: 40px;
}
.screen4 .flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 34px;
    column-gap: 35px;
}
.screen4 .flex-box .box {
    width: calc(100% / 3 - 3%);
    margin: auto;
    border-radius: 5px;
}
.screen4 .flex-box .box a {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-radius: 5px;
    /* box-shadow: 0 0 10px #0F4F87; */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    transition: 0.5s all ease-in-out;
}
.screen4 .flex-box .box a:hover {
    box-shadow: rgb(15 79 135 / 27%) 0px 4px 16px, rgb(15 79 135 / 11%) 0px 8px 32px;
    transform: scale(1.05);
}
.screen4 .box .box-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.screen4 .box-inner .img-wrapper {
    height: 103px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.screen4 .box-inner .img-wrapper img {
    max-width: 86px;
}
.screen4 .flex-box .box:nth-child(4) img {
    max-width: 116px;
}
.screen4 .flex-box .box:nth-child(3) img {
    max-width: 95px;
}
.screen4 .box .box-inner p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}
/* Screen4 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen5 Css Start */
.screen5{
    padding-top: 50px;
}
.screen5 .wrapper,
.screen6 .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.screen5 .wrapper .flex-right {
    background-color: #0F4F87;
    width: 100%;
    max-width: 35%;
    padding: 100px 0 100px 50px;
}
.screen5 .wrapper .flex-left {
    background-color: #F5F4FA;
    position: relative;
    width: 100%;
    max-width: 65%;
    background-image: url('../images/resfriada.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}
.screen5 .wrapper .flex-left img{
    position: absolute;
    width: 100%;
    z-index: 5;
}
.screen5 .wrapper .flex-left img:first-child{
    right: 0;
    bottom: 0;
    max-width: 400px;
}
.screen5 .wrapper .flex-left img:last-child{
    top: 20px;
    right: 30px;
    max-width: 70px;
}

.screen5 .flex-right h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}
.screen5 .flex-right p {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    width: 100%;
    max-width: 60%;
}
.screen5 .check-list{
    font-size: 22px;
    color: #fff;
    margin: 30px 0;
    list-style-type: none;
}
.screen5 .check-list li::before{
    content: "✓";
    font-size: 23px;
    margin-right: 1em;
}
.screen5 .btn-wrapper {
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
    flex-wrap: wrap;
}
.screen5 .btn-wrapper a {
    width: 100%;
    max-width: 200px;
    background-color: transparent;
    padding: 12px 0;
    font-size: 18px;
    display: flex;
    font-weight: 700;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: 0.2s all ease-in-out;
}
.screen5 .btn-wrapper a:hover {
    color: #0F4F87;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.473);
}

/* Screen5 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen6 Css Start */
.zen{
    text-align: center;
    color: #0F4F87;
}
.zen img {
    max-width: 270px;
}
.zen h1 {
    font-size: 68px;
    font-weight: 900;
    margin: 10px 0 15px 0;
}
.zen h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}
.btn-blue {
    width: 100%;
    max-width: 200px;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    font-size: 24px;
    background: linear-gradient(0deg, #1377cefb 0%, #0f4f87 100%);
    border: none;
}
.btn-blue span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;    
    padding: 15px 25px;
}
.btn-blue:before,
.btn-blue:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: #0f4f87;
    box-shadow:
    -7px -7px 20px 0px rgba(255,255,255,.9),
    -4px -4px 5px 0px rgba(255,255,255,.9),
    7px 7px 20px 0px rgba(0,0,0,.2),
    4px 4px 5px 0px rgba(0,0,0,.3);
    transition: all 0.3s ease;
}
.btn-blue:before{
    height: 0%;
    width: 2px;
}
.btn-blue:after {
    width: 0%;
    height: 2px;
}
.btn-blue:hover{
    color: #0f4f87;
    background: transparent;
}
.btn-blue:hover:before {
    height: 100%;
}
.btn-blue:hover:after {
    width: 100%;
}
.btn-blue span:before,
.btn-blue span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #0f4f87;
    box-shadow:
    -7px -7px 20px 0px rgba(255,255,255,.9),
    -4px -4px 5px 0px rgba(255,255,255,.9),
    7px 7px 20px 0px rgba(0,0,0,.2),
    4px 4px 5px 0px rgba(0,0,0,.3);
    transition: all 0.3s ease;
}
.btn-blue span:before {
    width: 3px;
    height: 0%;
}
.btn-blue span:after {
    height: 2px;
    width: 0%;
}
.btn-blue span:hover:before {
    height: 100%;
}
.btn-blue span:hover:after {
    width: 100%;
}
.checklist-zen{
    color: #0F4F87;
}
.checklist-zen h1 {
    font-size: 42px;
    font-weight: 700;
}
.checklist-zen ul {
    list-style: none;
    width: 98%;
    font-size: 40px;
    margin-top: 2%;
    font-weight: 200;
    margin-left: 2%;
    line-height: 1.1;
}
.checklist-zen ul li:before {
    content: '✓';
    font-size: 53px;
    margin-right: 6%;
}

/* Screen6 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen7 Css Start */
.screen7{
    background-color: #39A76A;
    position: relative;
    z-index: -5;
}
.screen7::before{
    content: '';
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 235px;
    top: 0;
    z-index: -4;
}
.logo-market {
    width: 100%;
    text-align: center;
    max-width: 450px;
    margin: auto;
    border-radius: 50px;
    background-color: white;
    border: solid 0.5px #39a76a;
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    z-index: 99999999;
}
.logo-market img{
    z-index: 999;
    width: 100%;
    max-width: 400px;
}
.screen7 .hd-sec{
    color: #fff;
    text-align: center;
}
.screen7 .hd-sec h1{
    font-weight: 700;
    font-size: 56px;
    margin: 15px 0 0 0;
}
.screen7 .hd-sec h2{
    font-weight: 400;
    font-size: 36px;
}
.cat-market {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 40px;
    justify-content: center;
}
.box-market {
    width: calc(100% / 4 - 4%);
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 200;
    font-size: 28px;
    color: #fff;
    gap: 10px;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
    transition: 0.3s all ease-in-out;
}
.box-market:hover {
    transform: scale(1.05);
}
.box-market p {
    margin: 0;
    line-height: 1;
    width: 100%;
    max-width: 190px;
    height: 65px;
}
.box-market .img-wrapper {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-market img {
    width: 100%;
    max-width: 100px;
}
.box-market:nth-child(3) img {
    max-width: 81px;
}
.screen7 a{
    width: 100%;
    max-width: 400px;
    margin: 50px auto 0;
    padding: 10px 0;
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    font-weight: 700;
    background-color: #fff;
    color: #39a76a;
    border-radius: 13px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 27px;
    font-family: 'Raleway';
    transition: 0.3s all ease-in-out;
}
.screen7 a:hover{
    background: linear-gradient(0deg, #1f1f1f8e 0%, #39a76a 100%);
    color: #fff;
}
/* Screen7 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen8 Css Start */
.screen8{
    background-image: url('../images/bene.png');
    background-position: center -30px;
    background-repeat: no-repeat;
    background-size: cover;
}
.screen8 h1{
    font-weight: 900;
    font-size: 3rem;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}
.screen8 a{
    width: 100%;
    display: block;
    max-width: 400px;
    padding: 10px 0;
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    font-weight: 700;
    background-color: #fff;
    color: #981f62;
    text-align: center;
    border-radius: 13px;
    font-size: 27px;
    font-family: 'Raleway';
    margin: 20% 0 0 auto;
    transition: 0.3s all ease-in-out;
}
.screen8 a:hover{
    background: linear-gradient(0deg, #1f1f1f8e 0%, #981f62 100%);
    color: #fff;
}
/* Screen8 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen9 Css Start */
.screen9{
  background-color:rgba(6,42,108,1);
}
.screen9 .wrapper{
    max-width: 1600px !important;
    margin: 0 auto !important;
}
.screen9 .sec-hd {
    color: #fff;
    font-weight: 800;
    font-size: 48px;
    text-align: center;
}
.pixi-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.pixi-container .pixi-video {
    position: relative;
    width: 100%;
    max-width: 300px;
}
.pixi-container .pixi-video video {
    position: absolute;
    left: -88px;
    z-index: 5;
    width: 750px;
    height: auto;
    top: -51px;
}
.soypixi {
    display: flex;
    flex-direction: column;
    color: #fff;
    z-index: 999;
    padding: 40px 100px;
}
.soypixi h1 {
    font-weight: 900;
    font-size: 36px;
    color: #61d8c2;
    margin-bottom: 0px;
}
.soypixi h2 {
    font-weight: 900;
    font-size: 52px;
}
.cyan-btn {
    border-radius: 11px;
    background-color: #61d8c2;
    width: 100%;
    max-width: 250px;
    padding: 10px 0;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 900;
    color: #3c3c3b;
    position: relative;
    box-shadow: 0px 0px 8px 0px #f8f9fa;
    border: none;
    z-index: 1;
}
.cyan-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 11px;
    background-color: #ffffff;
    background-image: linear-gradient(315deg, #61d8c2 0%, #61d8c25e 74%);
        box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
        7px 7px 20px 0px rgba(0,0,0,.1),
        4px 4px 5px 0px rgba(0,0,0,.1);
    transition: all 0.3s ease;
}
.cyan-btn:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}
.cyan-btn:active {
    top: 2px;
}
.cyan-btn:hover {
    color: #333;
}
.videollamada {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    z-index: 999;
    width: 100%;
    max-width: 550px;
}
.videollamada > div {
    display: flex;
    flex-direction: row;
    align-items:center;
    flex-wrap: wrap;
    gap: 40px;
}
.videollamada > div img {
    max-width: 125px;
}
.videollamada h1 {
    color: #fff;
    line-height: 1.2;
    font-weight: 900;
    margin: 28px 0 0 0;
}
.videollamada a{
    margin: 20px auto 0;
}
/* Screen9 Css End */


/* ------------------------ HOME PAGE CSS END ------------------- */
/* --------------------------------------------------------------- */

/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* -------------------- RESPONSIVE CSS START --------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */

@media (max-width:1900px) {
    .screen2 .flex-box {
        row-gap: 30px;
        column-gap: 30px;
    }
    .screen2 .flex-box .box a {
        padding: 65px 0;
        font-size: 34px;
    }
}

@media (max-width:1600px) {
    .screen4 .box-inner .img-wrapper img {
        max-width: 65px;
    }
    .screen4 .flex-box .box:nth-child(3) img {
        max-width: 72px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 90px;
    }
    .screen4 .box-inner .img-wrapper {
        height: 75px;
    }

    .screen5 .wrapper .flex-right {
        padding: 50px 0 50px 50px;
    }

    .screen7::before {
        height: 208px;
    }
    .logo-market {
        max-width: 350px;
        border-radius: 35px;
    }
    .logo-market img {
        max-width: 290px;
    }
    .screen7 .hd-sec h1 {
        font-size: 46px;
    }
    .screen7 .hd-sec h2 {
        font-size: 28px;
    }

    .screen8 {
        background-position: center 6px;
    }

    .screen9 .sec-hd {
        font-size: 44px;
        z-index: 9999999;
    }
    .pixi-container .pixi-video video {
        left: -7px;
        width: 668px;
        top: -7px;
    }
    .screen1 .banner-caps {
        padding-left: 50px;
    }
}

@media (max-width:1400px) {
    .screen1 .banner-caps {
        max-height: 350px;
    }
    .screen1 .bannerMenu .images-wrapper{
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding-top: 100px;
    }
    /* .screen1 .bannerMenu .menu-wrapper .first-child {
        max-width: 220px;
    } */
    .screen1 .bannerMenu .menu-wrapper .last-child {
        bottom: 5px;
        max-width: 265px;
    }
    .img-wrapper.mobile-img img {
        max-width: 350px;
        /* float: right; */
    }
    .screen2 .flex-box {
        row-gap: 20px;
        column-gap: 20px;
        justify-content: center;
        /* justify-content: flex-start; */
    }
    .screen2 .flex-box .box {
        width: calc(100% / 2 - 10%);
        margin: 0;
    }
    .screen2 .flex-box .box a {
        padding: 55px 0px;
        font-size: 25px;
    }
    .screen4 .flex-box {
        row-gap: 25px;
        column-gap: 25px;
    }

    .screen3 .caps-wrapper h1 {
        font-size: 46px;
        margin-bottom: 15px;
    }
    .screen3 .caps-wrapper p {
        font-size: 23px;
        margin-bottom: 15px;
    }
    .playstore-btn h4 {
        font-size: 14px;
    }
    .playstore-btn h4 p {
        font-size: 20px;
    }
    .playstore-btn {
        padding: 10px 0;
        width: 191px;
        font-size: 15px;
        column-gap: 10px;
    }
    .playstore-btn i {
        font-size: 35px;
    }
    .screen4 h1 {
        font-size: 45px;
        margin-bottom: 16px;
    }    
    .screen4 .flex-box .box {
        width: calc(100% / 3 - 6%);
        margin: 0;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 54px;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 54px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 71px;
    }
    .screen4 .box .box-inner p {
        font-size: 18px;
    }
    .screen5 .flex-right h1 {
        font-size: 40px;
        margin-bottom: 5px;
    }
    .screen5 .flex-right p {
        font-size: 20px;
        margin-bottom: 0px;
        max-width: 75%;
    }
    .screen5 .check-list {
        font-size: 18px;
        margin: 15px 0;
    }
    .screen5 .btn-wrapper a {
        max-width: 177px;
        padding: 10px 0;
        font-size: 16px;
    }
    .channel-btn {
        padding: 10px 0;
        width: 343px;
        font-size: 18px;
        column-gap: 7px;
    }
    .pixi-web img {
        max-width: 110px;
    }
    .zen h1 {
        font-size: 36px;
        margin-bottom: 0;
    }
    .zen h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .btn-blue {
        max-width: 158px;
    }
    .btn-blue span {
        padding: 10px 15px;
    }
    .checklist-zen h1 {
        font-size: 30px;
    }
    .checklist-zen ul {
        font-size: 20px;
    }
    .checklist-zen ul li{
        margin-bottom: 5px;
    }
    .checklist-zen ul li:before {
        font-size: 22px;
        margin-right: 20px;
    }
    .zen img {
        max-width: 205px;
    }
    .screen8 {
        background-position: center -22px;
    }
    .screen8 a {
        max-width: 301px;
        padding: 10px 0;
        border-radius: 15px;
        font-size: 22px;
        margin: 14% 0 0 69%;
    }
    .logo-market img {
        max-width: 208px;
    }
    .logo-market {
        max-width: 250px;
        border-radius: 21px;
    }
    .screen7::before {
        height: 192px;
    }
    .screen7 .hd-sec h1 {
        font-size: 36px;
        margin: 7px 0 0 0;
    }
    .screen7 .hd-sec h2 {
        font-size: 20px;
    }
    .box-market {
        width: calc(100% / 4 - 6%);
        font-size: 18px;
        gap: 16px;
        padding: 10px 0;
        margin-top: 20px;
    }
    .screen7 a {
        max-width: 320px;
        margin: 30px auto 0;
        padding: 10px 0;
        border-radius: 14px;
        gap: 12px;
        font-size: 21px;
    }
    .box-market img {
        max-width: 72px;
    }
    .box-market:nth-child(3) img {
        max-width: 52px;
    }
    .box-market .img-wrapper {
        height: 75px;
    }
    .box-market p {
        height: 47px;
    }
    .screen8 h1 {
        font-size: 36px;
        margin-top: 0;
    }
    .screen9 .sec-hd {
        font-size: 36px;
    }
    .pixi-container .pixi-video video {
        left: 25px;
        width: 556px;
        height: 256px;
    }
    .soypixi h1 {
        font-size: 28px;
    }
    .soypixi h2 {
        font-size: 36px;
        margin: 0;
    }
    .soypixi h3 {
        font-size: 20px;
    }
    .cyan-btn {
        max-width: 200px;
        padding: 10px 0;
        margin-top: 7px;
        font-size: 18px;
    }
    .soypixi {
        padding: 43px 39px;
    }
    .videollamada > div img {
        max-width: 72px;
    }
    .videollamada > div {
        gap: 14px;
    }
    .videollamada h1 {
        line-height: 1;
        margin: 12px 0 0 0;
        font-size: 26px;
    }
    .videollamada {
        gap: 10px;
        max-width: 40%;
    }    
    .videollamada a {
        margin: 6px 0 0 55px;
    }
    .footer-img img {
        max-width: 400px;
    }
    .footer-title {
        margin-bottom: 23px;
        font-size: 28px;
    }
    .footer-widget1 a, .footer-widget2 a, .footer-widget3 a {
        font-size: 18px;
        gap: 14px;
        margin-bottom: 5px;
    }
    .footer-widget3 p span {
        font-size: 17px;
    }
    .icon-bar a i {
        font-size: 26px;
        line-height: 42px;
    }
    .icon-bar a {
        height: 41px;
        width: 43px;
    }
    .screen1 .wrapper {
        max-width: 1200px !important;
    }
    .screen1 .banner-caps h1 {
        font-size: 44px;
        margin-top: 65px;
        margin-bottom: 0;
    }
    .screen1 .banner-caps p {
        font-size: 28px;
        margin-bottom: 22px;
    }
    .screen1 .banner-caps a {
        font-size: 20px;
    }
    .navbar-nav .nav-link {
        padding: 5px 20px !important;
        font-size: 16px;
        margin: 0 5px;
    }
    .navbar-brand {
        max-width: 142px;
        padding: 0;
    }
    nav.navbar {
        padding: 3px 0;
    }
}
@media (max-width:1200px) {

    .screen2 .flex-box .box a {
        font-size: 28px;
        line-height: 1.1;
    }    

    .screen3 .caps-wrapper h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }
    .screen3 .caps-wrapper p {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .screen3 .btn-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }

    .screen4 h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 55px;
    }
    .screen4 .flex-box .box:nth-child(3) img {
        max-width: 62px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 77px;
    }
    .screen4 .box .box-inner p {
        font-size: 18px;
    }

    .screen5 .flex-right h1 {
        font-size: 32px;
        margin-bottom: 5px;
    }
    .screen5 .flex-right p {
        font-size: 16px;
        max-width: 80%;
    }
    .screen5 .check-list {
        font-size: 16px;
        margin: 10px 0;
    }
    .screen5 .check-list li::before {
        font-size: 16px;
    }
    .screen5 .btn-wrapper {
        row-gap: 10px;
        flex-direction: column;
    }
    .screen5 .btn-wrapper a {
        max-width: 169px;
        padding: 10px 0;
        font-size: 14px;
    }
    .screen5 .wrapper .flex-right {
        padding: 25px 0 25px 30px;
    }
    .screen5 .wrapper .flex-left img:first-child {
        max-width: 318px;
    }
    .screen5 .wrapper .flex-left img:last-child {
        max-width: 55px;
    }
    .screen8 {
        background-position: center 49px;
    }
    .zen img {
        max-width: 200px;
    }
    .zen h1 {
        font-size: 36px;
    }
    .zen h2 {
        font-size: 24px;
    }
    .checklist-zen h1 {
        font-size: 30px;
    }
    .checklist-zen ul {
        font-size: 26px;
    }

    .box-market img {
        max-width: 82px;
    }
    .box-market:nth-child(3) img {
        max-width: 63px;
    }
    .box-market .img-wrapper {
        height: 90px;
    }
    .cat-market {
        column-gap: 30px;
    }
    .box-market {
        width: calc(100% / 4 - 3%);
    }
    .screen7 a {
        margin: 35px auto 0;
    }

    .pixi-container .pixi-video video {
        width: 560px;
        height: 296px;
    }
    .videollamada > div img {
        max-width: 90px;
    }
    .videollamada h1 {
        line-height: 1;
        font-size: 34px;
    }
    .soypixi h1 {
        font-size: 32px;
    }
    .soypixi h2 {
        font-size: 40px;
        margin-bottom: 0;
    }
    .soypixi h3 {
        font-size: 24px;
    }
}

@media (max-width:1080px) {
    .img-wrapper.mobile-img img {
        max-width: 274px;
        margin-top: 38px;
    }
    .screen2 .flex-box .box a {
        font-size: 22px;
        line-height: 1.1;
    }
    .screen3 .caps-wrapper h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .screen3 .caps-wrapper p {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .playstore-btn i {
        font-size: 24px;
    }
    .playstore-btn h4 {
        font-size: 12px;
    }
    .playstore-btn h4 p {
        font-size: 16px;
    }
    .screen3 .btn-wrapper {
        row-gap: 10px;
    }
    .playstore-btn {
        padding: 8px 0;
        max-width: 156px;
        column-gap: 10px;
    }
    .channel-btn {
        padding: 8px 0;
        max-width: 265px;
        font-size: 14px;
    }
    .screen4 h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 45px;
    }
    .screen4 .flex-box .box:nth-child(3) img {
        max-width: 48px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 65px;
    }
    .screen4 .box-inner .img-wrapper {
        height: 55px;
    }
    .screen4 .box .box-inner {
        gap: 10px;
    }
    .screen4 .box .box-inner p {
        font-size: 16px;
    }
    .screen4 .flex-box {
        row-gap: 20px;
        column-gap: 20px;
    }
}

@media (max-width : 991px) {
    #header{
        position: initial;
    }
    .screen7 .wrapper{
        padding-top: 0 !important;
    }
    .screen7 .wrapper .logo-market{
        margin-top: -30px;
        z-index: 111111111 !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .screen7 .hd-sec{
        padding-top: 50px;
    }
    .screen7::before{
        display: none;
    }
    main > section {
        padding-top: 0 !important;
        position: initial !important;
        height: initial !important;
    }
    main > section .wrapper{
        padding: 50px 0 !important;
        position: unset !important;
        top: unset !important;
        transform: unset !important;
    }
    .screen2 {
        background-image: none;
    }
    .screen4 .flex-box .box {
        width: calc(100% / 2 - 3%);
    }
    .screen2 .flex-box .box a {
        font-size: 18px;
    }
    .screen8 {
        background-position: center;
    }
    .screen8 a {
        margin: 100px 0 100px auto;
    }
    .videollamada {
        /* margin-top: 70px;logo-market */
    }
    .screen10 {
        padding: 0 0 50px 0;
    }
    .footer-img img {
        max-width: 300px;
    }
    #footer {
        position: unset;
        top: unset; 
        transform: translateY(0);
    }
    .screen5 .wrapper .flex-left img:last-child{
        top: 10px;
        right: 20px;
        max-width: 30px;
    }
    .screen1 .banner-caps {
        padding-left: 0;
        text-align: center;
    }
    .screen1 .banner-caps a{
        box-shadow: 0 0 20px  rgba(0, 0, 0, 0.2) !important;
    }
    .screen7 .container{
        max-width: 100%;
    }
    .screen7 .cat-market{
        column-gap: 12px;
    }
}

@media (max-width : 767px) {
    .screen2 .container,
    .screen3 .container,
    .screen4 .container{
        max-width: 98%;
    }
    .screen2 .flex-box {
        justify-content: center;
        row-gap: 10px;
        column-gap: 10px;
        padding: 0 10px;
    }
    .screen2 .flex-box .box{
        width: calc(100%/2 - 2%);
    }
    .screen2 .flex-box .box a {
        padding: 40px 10px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 12px;
    }
    .screen2 .img-column,
    .screen3 .img-column,
    .screen4 .img-column{
        text-align: center;
    }
    .screen2 .img-column img,
    .screen3 .img-column img,
    .screen4 .img-column img{
        width: 100%;
        max-width: 180px;
    }
    .mobile-img img {
        float: none !important;
        margin: auto;
        display: block;
    }
    .playstore-btn,
    .channel-btn {
        margin: auto;
    }
    .screen4 h1 {
        text-align: center;
        margin-bottom: 30px;
    }
    .screen5 .wrapper {
        flex-direction: column;
    }
    .screen5 .wrapper .flex-right,
    .screen5 .wrapper .flex-left{
        max-width: 100%;
    }
    .screen5 .wrapper .flex-left {
        height: 300px;
    }
    .screen5 .wrapper .flex-right {
        padding: 40px 0;
    }
    .screen5 .btn-wrapper {
        flex-direction: initial;
        justify-content: center;
    }
    .screen5 .flex-right h1 {
        text-align: center;
        margin-bottom: 10px;
    }
    .screen5 .flex-right p {
        max-width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .screen5 .check-list {
        width: fit-content;
        margin: 20px auto;
    }
    .checklist-zen h1 {
        text-align: center;
        margin: 45px 0px 15px 0;
    }
    .checklist-zen ul {
        width: fit-content;
        margin: auto;
    }
    .box-market {
        width: calc(100% / 3);
    }
    .screen7 .hd-sec h1 {
        margin: 25px 0 6px 0;
    }
    .videollamada {
        max-width: 50%;
        margin: 40px auto 0;
        gap: 25px;
    }
    .footer-widget2,
    .footer-widget3 {
        margin-top: 44px;
    }
    .mobile-img {
        margin-bottom: 40px;
    }
    .screen3 .caps-wrapper h1 {
        margin-bottom: 14px;
    }
    .screen3 .caps-wrapper p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .screen3 .btn-wrapper {
        row-gap: 15px;
    }
    .screen3 .btn-wrapper a{
        margin: 0 !important;
        width: 100%;
        max-width: 170px;
    }
    .channel-btn{
        padding: 10px;
        column-gap: 0px;
        transition: 0.2s all ease-in-out;
    }
    .zen img {
        max-width: 160px;
    }
    .zen h1 {
        margin: 20px 0 0 0;
    }
    .pixi-container .pixi-video {
        height: 268px;
        max-width: 396px;
        overflow: hidden;
        border-radius: 100%;
        margin: auto;
    }
    .pixi-container .pixi-video video {
        left: 3px;
    }    
    .pixi-container {
        flex-direction: column;
    }
    .soypixi {
        text-align: center;
    }
    .cyan-btn {
        margin: auto;
    }
    .videollamada h1 {
        line-height: 1;
        font-size: 22px;
    }
    .videollamada > div img {
        max-width: 56px;
    }
    .soypixi {
        gap: 5px;
    }
    .videollamada > div {
        gap: 14px;
        justify-content: center;
    }
    .videollamada a {
        margin: auto;
    }
    .screen1 .banner-caps h1 {
        font-size: 36px;
        margin-top: 0px;
        margin-bottom: 0;
    }
    .screen1 .banner-caps p {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .screen1 .banner-caps a {
        font-size: 18px;
        padding: 10px 0;
    }
    .screen8 .wrapper{
        padding: 20px 0 !important;
    }
    .screen8 h1{
        margin-top: 0;
        font-size: 36px !important;
    }
    .screen8 a{
        margin: 0 auto !important;
    }
    .screen8 .col-sm-12{
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (max-width : 600px){
    .screen1 .banner-caps h1 {
        font-size: 30px;
    }
    .screen1 .banner-caps p {
        font-size: 22px;
        margin: 10px auto 20px;
        padding-left: 20px;
    }
    .screen1 .banner-caps a {
        font-size: 18px;
        padding: 8px 0;
        max-width: 182px;
        box-shadow: 0 0 20px  rgba(0, 0, 0, 0.2) !important;
    }
    .footer-title {
        font-size: 24px;
        text-align: center;
    }
    .footer-widget1 a, .footer-widget2 a, .footer-widget3 a {
        justify-content: center;
    }
    .footer-widget3 p {
        margin: auto;
        width: 100%;
        max-width: 270px;
        margin-bottom: 5px;
        text-align: center;
    }
    .icon-bar a {
        height: 29px;
        width: 29px;
    }
    .icon-bar a i {
        font-size: 18px;
        line-height: 31px;
    }
    .icon-bar {
        right: 15px;
    }
    .pixi-web img {
        max-width: 65px;
    }
    .screen4 .custom-row .img-column{
        display: none !important;
    }
    .screen4 .wrapper{
        padding-bottom: 20px !important;
    }
    .screen4 .content-column{
        max-width: 100% !important;
    }
    .screen4 .flex-box {
        row-gap: 10px;
        column-gap: 10px;
    }
    .screen4 .flex-box .box {
        width: calc(100% / 2 - 2%);
    }
    
}   

@media (max-width:500px) {
    .screen2 .flex-box{
        padding-right: 0;
    }
    .screen2 .flex-box .box {
        width: 100%;
        max-width: 320px;
    }
    .screen2 .flex-box .box:nth-child(1){
        display: none;
    }
    .screen2 .flex-box .box a {
        font-size: 16px;
    }
    .screen3 .caps-wrapper h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .screen4 h1 {
        font-size: 24px;
    }
    .screen4 .img-column .img-wrapper{
        display: none;
    }
    .screen4 .flex-box{
        column-gap: 0;
        align-items: stretch;
        justify-content: space-between;
    }
    .screen4 .flex-box .box {
        width: 100%;
        max-width: 48%;
        margin: 0 !important;
        margin: auto;
    }
    .screen4 .flex-box .box a{
        min-height: 100%;
        padding: 10px !important;
    }
    .screen5 .wrapper .flex-left img:first-child {
        max-width: 259px;
    }
    .screen5 .btn-wrapper {
        flex-direction: column;
    }
    .screen5 .btn-wrapper a {
        margin: auto;
    }
    .screen5 .flex-right h1 {
        font-size: 24px;
    }
    .zen img {
        max-width: 140px;
    }
    .zen h1 {
        font-size: 26px;
    }
    .zen h2 {
        font-size: 18px;
    }
    .btn-blue {
        font-size: 20px;
    }
    .checklist-zen h1 {
        font-size: 22px;
    }
    .checklist-zen ul {
        font-size: 18px;
    }
    .logo-market img {
        max-width: 166px;
    }
    .logo-market {
        max-width: 189px;
        border-radius: 21px;
    }
    .screen7 .hd-sec h1 {
        margin: 19px 0 3px 0;
        font-size: 24px;
    }
    .screen7 .hd-sec h2 {
        font-size: 18px;
        max-width: 80%;
        margin: 10px auto;
    }
    .box-market {
        width: 100%;
        max-width: 300px;
    }
    .screen7 a {
        max-width: 274px;
        margin: 30px auto 0;
        font-size: 18px;
    }
    .screen7 .cat-market {
        column-gap: 0;
        justify-content: space-between;
        align-items: stretch;
    }
    .screen7 .box-market {
        width: 48%;
        font-size: 18px;
        margin-top: 15px;
        padding: 30px 10px 0px;
    }
    .screen7 .box-market .img-wrapper{
        margin: 0;
        height: 60px;
    }
    .screen7 .box-market img{
        width: 100%;
        max-width: 50px;
    }
    .screen8 .wrapper{
        padding: 20px 0 10px !important;
    }
    .screen8 .col-sm-12{
        min-height: 330px;
    }
    .screen8 {
        background: url('../images/credit-card-img.PNG') no-repeat;
        background-size: cover;
        background-position: center;
    }
    .screen8 h1 {
        font-size: 28px !important;
        margin-top: 0;
    }
    .screen8 a {
        font-size: 12px;
        max-width: 160px;
        margin: 50px auto 0 !important;
    }

}

@media (max-width: 450px){
    .screen1 .bannerMenu .images-wrapper{
        padding-top: 50px;
        max-width: 170px !important;
    }
    .screen1 .bannerMenu .images-wrapper .last-child{
        max-width: 170px !important;
        bottom: 0;
    }
}

@media (max-width:400px){
    .screen5 .wrapper .flex-left img:first-child {
        max-width: 204px;
    }
    .screen5 .wrapper .flex-left {
        height: 232px;
    }
    .screen2 .custom-row .img-column,
    .screen3 .custom-row .img-column{
        max-width: 45% !important;
    }
    .screen2 .custom-row .content-column,
    .screen3 .custom-row .content-column{
        max-width: 55% !important;
    }
    .screen2 .flex-box .box a {
        padding: 35px 10px;
        font-size: 13px;
        border-radius: 6px;
    }
}

@media (max-width:380px) {
    .pixi-container .pixi-video video {
        left: -29px;
    }
}

@media (max-width: 350px){
    .screen1 .bannerMenu .images-wrapper{
        max-width: 140px !important;
    }
    .screen1 .bannerMenu .images-wrapper .last-child{
        max-width: 140px !important;
        bottom: 37px;
    }
}

.screen2 .img-column img,
.screen3 .img-column img,
.screen4 .img-column img{
    display: none;
}

@media (max-width: 991px){
    
    .screen2 .img-column img,
    .screen3 .img-column img,
    .screen4 .img-column img{
        display: inline-block;
    }
}



/* ------------------ MOBILE MENU -------------------- */

#menu-toggler{
    /* z-index: 11111111; */
    color: #fff;
    font-size: 32px;
    border-radius: 0px !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

aside{
    background-color: #fac033;
    position: fixed;
    right: 0px;
    top: 0;
    height: 100%;
    width: 280px;
    margin-right: -280px;
    z-index: 11111;
    padding: 15px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);

    transition: all 0.5s ease-in-out;
}

aside.show{
    margin-right: 0px;
}

aside .close-sidebar{
    position: absolute;
    right: 15px;
    top: 0px;
    color: #fff !important;
    font-size: 32px;
    border-radius: 0px !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

aside h1{
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: capitalize;
    border-bottom: 2px solid #fff;
}

aside ul{
    padding-left: 0;
}

aside ul li{
    list-style-type: none;
    margin-bottom: 15px;
}

aside ul li a{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

aside ul li i{
    margin-right: 10px;
}

@media (max-width: 990px){
    .navbar-collapse{
        display: none;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
}

body{
    font-family: 'overlock',cursive;
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

/* Pixi web icon */
.pixi-web{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}
.pixi-web img{
    max-width: 150px;
}

/* Social Media Icon Bar */
.icon-bar{
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.icon-bar a {
    display: block;
    color: rgb(250, 192, 51);
    text-decoration: none;
    border-radius: 100%;
    background-color: rgba(56, 42, 1, 0.53);
    height: 50px;
    text-align: center;
    width: 52px;
    box-shadow: rgb(248 249 250) 0px 0px 8px 0px;
}
.icon-bar a:hover {
    background-color: rgb(2, 2, 2);
}
.icon-bar a i {
    font-size: 34px;
    line-height: 52px;
}

/* Header */
header{    
    /* background-color: #FAC033; */
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: 0.2s all ease-in-out;
}
/* navigation */
header nav .nav-link{
    color: #333;
    font-weight: 600;
    font-size: 18px;
    margin: 0 10px;
}
.navbar-brand{
    max-width: 200px;
}
.navbar-nav .nav-link {
    padding: 10px 30px !important;
    border-radius: 50px;
    position: relative;
    /* background: #FAC033; */
    border: none;
    z-index: 1;
}
.navbar-nav .nav-link:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #fff;
    border-radius: 50px;
        box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
        7px 7px 20px 0px rgba(0,0,0,.1),
        4px 4px 5px 0px rgba(0,0,0,.1);
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #0F4F87;
}
.navbar-nav .nav-link:hover:after {
    left: 0;
    width: 100%;
}
.navbar-nav .nav-link:active {
    top: 2px;
}

/* Modal 1 css */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: 0;
}
.btn-close {
    margin-right: 5px !important;
    font-size: 14px;
}
.modal-header {
    background-color: #fac033;
    color: #000;
    border-bottom: 0;
}
.modal-header h2 {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 20px;
    line-height: 1.2;
}

#Mymodal1 .modal-body ul li {
    padding: 10px 0;
    font-size: 20px;
}
#Mymodal1 .modal-body ul {
    padding: 5px 40px;
    margin: 0;
    list-style: square;
}
#Mymodal1 .modal-body ul li span {
    display: inline-block;
    width: 100%;
    max-width: 158px;
    font-weight: 700;
    color: #333;
    margin-right: 30px;
}
#Mymodal1 .modal-body ul li a {
    display: inline-flex;
    align-items: center;
    color: #0F4F87;
    font-weight: 700;
    gap: 10px;
}
#Mymodal1 .modal-body ul li a i {
    font-size: 28px;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none !important;
}

/* Modal 2 css */
.modal-header h2 img{
    max-width: 50px;
}
#Mymodal2 .modal-body{
    padding: 25px 15px;
}
.btn-yellow{
    color: #fff;
    background-color: #fac033;
    font-size: 18px;
    margin: 20px 0 30px 0;   
    width: 100%; 
    font-weight: 800;
    border-radius: 50px;
    transition: 0.2s all ease-in-out;
}
#Mymodal2 label{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
#Mymodal2 p{
    font-size: 16px;
    font-weight: 700;
}
#Mymodal2 input{
    font-size: 18px;
}
#Mymodal2 .form-control{
    outline: none !important;
    box-shadow: none !important;
}
.link-color1 *{
    color: #333 !important;
    transition: 0.2s all ease-in-out;
}
.link-color2 *{
    color: #fff !important;
}
.link-color1 *:hover,
.link-color2 *:hover{
    color: #333 !important;
}
/* Modal 3 css */
#Mymodal3 .modal-dialog{
    max-width: 1000px;
}
#Mymodal3 .modal-body{
    padding: 30px 15px;
}
.modal-body .inner-flex{
    display: flex;
    flex-direction: row;
    gap: 30px;
    text-align: center;
    justify-content: center;
}
.modal-body .inner-flex .box{
    width: calc(100% / 3 - 4%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-body .box .img-wrapper img{
    width: 100%;
}

/* footer */
#footer {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.screen10{
    padding-top: 80px;
    background: linear-gradient( 
342deg
 , rgba(76,87,107,1) 7%, rgba(6,42,108,1) 36%);
}
.footer-img {
    text-align: center;
}
.footer-img img {
    max-width: 700px;
}
.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 50px;
}
.footer-widget1 a,
.footer-widget2 a,
.footer-widget3 a {
    /* display: block; */
    color: #fff;
    font-size: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 10px;
}
.footer-widget3 p {
    margin: 0 0 10px 0;
}
.footer-widget3 a {
    text-decoration: underline;
    text-underline-position: under;
}
.footer-widget3 p span{
    display: block;
    color: #fff;
    font-size: 20px;
}
/* ----------------------- HOME PAGE CSS START ------------------- */
/* --------------------------------------------------------------- */

.screen2 .wrapper,
.screen3 .wrapper,
.screen4 .wrapper{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.screen2.screen3.screen4{
    padding-top: 0;
}



/* main */
main > section{
    padding-top: 150px;
}

/* Screen1 Css Start */
.screen1,
.screen2{
    background-image: url('../images/curva-amarilla.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -80px;
}
.screen1 .wrapper{
    max-width: 1600px !important;
    margin: 0 auto !important;
}

.screen1 .banner-caps h1 {
    font-size: 60px;
    font-weight: 900;
    color: #333;
    margin-top: 100px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.screen1 .banner-caps p {
    color: #333;
    font-family: 'Overlock';
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}
.screen1 .banner-caps a {
    display: inline-block;
    width: 100%;
    color: #333;
    text-align: center;
    max-width: 220px;
    border-radius: 50px;
    padding: 10px 0;
    font-weight: 800;
    font-family: 'overlock';
    font-size: 22px;
    transition: 0.2s all ease-in-out;
    position: relative;
    z-index: 1;
}   
.screen1 .banner-caps a {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}
.screen1 .banner-caps a:after {
    position: absolute;
    content: " ";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(315deg, #fff 0%, #fff 74%);
    transition: all 0.3s ease;
}
.screen1 .banner-caps a:hover {
    background: transparent;
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
        inset -4px -4px 6px 0 rgba(255,255,255,.5),
        inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
    color: #0F4F87;
}
.screen1 .banner-caps a:hover:after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
        inset -4px -4px 6px 0 rgba(255,255,255,.5),
        inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}

/* Banner Manu CSS Start */

.screen1 .menu-wrapper{
    position: relative;
    min-height: 600px;
    width: 100%;
    max-width: 700px !important;
    margin: 50px auto 0;
}

.screen1 .bannerMenu .menu-wrapper a {
    display: inline-block !important;
    text-decoration: none;
    width: 100%;
    max-width: 150px !important;
    color: #333;
    font-size: 18px;
    z-index: 1111111;
    border-radius: 13px;
    position: absolute;
    text-align: center;
    transition: 0.5s all ease-in-out;
    border-radius: 50px;
    transition: 0.2s all ease-in-out;
}
.screen1 .bannerMenu .menu-wrapper a span{
    display: inline-block;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #18073A;
    font-family: Overlock;
    font-weight: 600;
    font-size: 22px;
    width: 100%;
    min-width: 150px;
    max-width: 150px;
    height: 100%;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.screen1 .bannerMenu .menu-wrapper a:hover span{
    background-color: #0F4F87;
    color: #fff;
}

.screen1 .bannerMenu .menu-wrapper a span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50px;
    z-index: -1;
    transition: 0.2s all ease-in-out;
    /* animation: pulse-animation1a 2.4s infinite;     */
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
}

@keyframes pulse-animation1a {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
      }
      50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.4);
      }
      100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
      }
}

.screen1 .bannerMenu .menu-wrapper a:hover span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50px;
    z-index: -1;
    transition: 0.2s all ease-in-out;
    animation: pulse-animation1 2.4s infinite;    
}

@keyframes pulse-animation1 {
    0% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
      }
      50% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.4);
      }
      100% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
      }
}

.screen1 .bannerMenu .menu-wrapper a span::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 80px;
    border-radius: 50px;
    z-index: -2;
    transition: 0.2s all ease-in-out;
    box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.4);
    /* animation: pulse_mood_01a 2.4s ease-in-out infinite; */
}

@-webkit-keyframes pulse_mood_01a {
    0% {
        box-shadow: 0px 0px 0px 20px rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0px 0px 0px 20px rgba(255, 255, 255, 0.4);
    }
}

.screen1 .bannerMenu .menu-wrapper a:hover span::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 80px;
    border-radius: 50px;
    z-index: -2;
    transition: 0.2s all ease-in-out;
    animation: pulse_mood_01 2.4s ease-in-out infinite;
} 


.pulse-mood01 {
    -webkit-animation: pulse_mood_01 2.4s ease-in-out infinite;
    -moz-animation: pulse_mood_01 2.4s ease-in-out infinite;
    -o-animation: pulse_mood_01 2.4s ease-in-out infinite;
    -ms-animation: pulse_mood_01 2.4s ease-in-out infinite;
    animation: pulse_mood_01 2.4s ease-in-out infinite;
}

@-webkit-keyframes pulse_mood_01 {
    0% {
        box-shadow: 0px 0px 0px 40px rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0px 0px 0px 40px rgba(255, 255, 255, 0.4);
    }
}

.screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
    left: 0px;
    bottom: 80px;
    animation: game_01a 2s ease-in-out infinite;
    transition: 0.2s all ease-in-out;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(1):hover{
    -webkit-animation: game_01 2s ease-in-out infinite;
    -moz-animation: game_01 2s ease-in-out infinite;
    -o-animation: game_01 2s ease-in-out infinite;
    -ms-animation: game_01 2s ease-in-out infinite;
    animation: game_01 2s ease-in-out infinite;
    transition: 0.2s all ease-in-out;
}

@-webkit-keyframes game_01a {
    0% {
        left: 0px;
        bottom: 80px;
    }
    50% {
        left: 10px;
        bottom: 90px;
    }
    100% {
        left: 0px;
        bottom: 80px;
    }
}

@-webkit-keyframes game_01 {
    0% {
        left: 0px;
        bottom: 80px;
    }
    50% {
        left: 30px;
        bottom: 100px;
    }
    100% {
        left: 0px;
        bottom: 80px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
    bottom: 270px;
    left: 0px;
    animation: game_02a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(2):hover{
    -webkit-animation: game_02 2s ease-in-out infinite;
    -moz-animation: game_02 2s ease-in-out infinite;
    -o-animation: game_02 2s ease-in-out infinite;
    -ms-animation: game_02 2s ease-in-out infinite;
    animation: game_02 2s ease-in-out infinite;
}
@-webkit-keyframes game_02a {
    0% {
        bottom: 270px;
        left: 0px;
    }

    50% {
        bottom: 270px;
        left: 10px;
    }

    100% {
        bottom: 270px;
        left: 0px;
    }
}
@-webkit-keyframes game_02 {
    0% {
        bottom: 270px;
        left: 0px;
    }

    50% {
        bottom: 270px;
        left: 20px;
    }

    100% {
        bottom: 270px;
        left: 0px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
    left: 70px;
    top: 80px;
    animation: game_03a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(3):hover{
    -webkit-animation: game_03 2s ease-in-out infinite;
    -moz-animation: game_03 2s ease-in-out infinite;
    -o-animation: game_03 2s ease-in-out infinite;
    -ms-animation: game_03 2s ease-in-out infinite;
    animation: game_03 2s ease-in-out infinite;
}
@-webkit-keyframes game_03a {
    0% {
        left: 70px;
        top: 80px;
    }

    50% {
        left: 80px;
        top: 90px;
    }

    100% {
        left: 70px;
        top: 80px;
    }
}
@-webkit-keyframes game_03 {
    0% {
        left: 70px;
        top: 80px;
    }

    50% {
        left: 90px;
        top: 100px;
    }

    100% {
        left: 70px;
        top: 80px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
    left: 280px;
    top: -35px;
    animation: game_04a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(4):hover{
    -webkit-animation: game_04 2s ease-in-out infinite;
    -moz-animation: game_04 2s ease-in-out infinite;
    -o-animation: game_04 2s ease-in-out infinite;
    -ms-animation: game_04 2s ease-in-out infinite;
    animation: game_04 2s ease-in-out infinite;
}
@-webkit-keyframes game_04a {
    0% {
        left: 280px;
        top: -35px;
    }

    50% {
        left: 280px;
        top: -5px;
    }

    100% {
        left: 280px;
        top: -35px;
    }
}
@-webkit-keyframes game_04 {
    0% {
        left: 280px;
        top: -35px;
    }

    50% {
        left: 280px;
        top: -20px;
    }

    100% {
        left: 280px;
        top: -35px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
    right: 70px;
    top: 80px;
    animation: game_05a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(5):hover{
    -webkit-animation: game_05 2s ease-in-out infinite;
    -moz-animation: game_05 2s ease-in-out infinite;
    -o-animation: game_05 2s ease-in-out infinite;
    -ms-animation: game_05 2s ease-in-out infinite;
    animation: game_05 2s ease-in-out infinite;
}
@-webkit-keyframes game_05a {
    0% {
        right: 70px;
        top: 80px;
    }

    50% {
        right: 80px;
        top: 90px;
    }

    100% {
        right: 70px;
        top: 80px;
    }
}
@-webkit-keyframes game_05 {
    0% {
        right: 70px;
        top: 80px;
    }

    50% {
        right: 90px;
        top: 100px;
    }

    100% {
        right: 70px;
        top: 80px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
    bottom: 280px;
    right: 20px;
    animation: game_06a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(6):hover{
    -webkit-animation: game_06 2s ease-in-out infinite;
    -moz-animation: game_06 2s ease-in-out infinite;
    -o-animation: game_06 2s ease-in-out infinite;
    -ms-animation: game_06 2s ease-in-out infinite;
    animation: game_06 2s ease-in-out infinite;
}
@-webkit-keyframes game_06a {
    0% {
        bottom: 280px;
        right: 20px;
    }

    50% {
        bottom: 280px;
        right: 30px;
    }

    100% {
        bottom: 280px;
        right: 20px;
    }
}
@-webkit-keyframes game_06 {
    0% {
        bottom: 280px;
        right: 20px;
    }

    50% {
        bottom: 280px;
        right: 40px;
    }

    100% {
        bottom: 280px;
        right: 20px;
    }
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
    right: 0px;
    bottom: 100px;
    animation: game_07a 2s ease-in-out infinite;
}
.screen1 .bannerMenu .menu-wrapper > a:nth-child(7):hover{
    -webkit-animation: game_07 2s ease-in-out infinite;
    -moz-animation: game_07 2s ease-in-out infinite;
    -o-animation: game_07 2s ease-in-out infinite;
    -ms-animation: game_07 2s ease-in-out infinite;
    animation: game_07 2s ease-in-out infinite;
}
@-webkit-keyframes game_07a {
    0% {
        right: 0px;
        bottom: 100px;
    }

    50% {
        right: 10px;
        bottom: 110px;
    }

    100% {
        right: 0px;
        bottom: 100px;
    }
}
@-webkit-keyframes game_07 {
    0% {
        right: 0px;
        bottom: 100px;
    }

    50% {
        right: 30px;
        bottom: 120px;
    }

    100% {
        right: 0px;
        bottom: 100px;
    }
}

.screen1 .bannerMenu .images-wrapper{
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-top: 100px;
}

.screen1 .bannerMenu .menu-wrapper .last-child {
    position: absolute;
    z-index: 5;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    /* border: 1px solid blue; */
    max-width: 350px;
    -webkit-filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}
.screen1 .bannerMenu .menu-wrapper .first-child {
    max-width: 320px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    vertical-align: baseline;
    transition: all 0.5s ease-in-out;
    color: #0f4f87;
    animation: img-animation2 3s ease-in-out infinite;
}


@keyframes img-animation2 {
    0% {
        -webkit-filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
        filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
    }
    25% {
        -webkit-filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
        filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
    }
    50% {
        -webkit-filter: drop-shadow( 0 0 50px rgba(152, 31, 98, 0.4));
        filter: drop-shadow( 0 0 50px rgba(152, 31, 98, 0.4));
    }
    75% {
        -webkit-filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
        filter: drop-shadow( 0 0 50px rgba(99, 244, 239, 0.6));
    }
    100% {
        -webkit-filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
        filter: drop-shadow( 0 0 45px rgba(255,255,255,0.8));
        
    }
  }

/* ------------------------------------------------------- */
/* ------------------ Menu Item Position ----------------- */
/* ------------------------------------------------------- */

@media (max-width: 1400px){
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 140px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 17px;
        min-width: 140px;
        max-width: 140px;
        min-height: 70px;
        max-height: 70px;
    }
    .screen1 .bannerMenu .menu-wrapper a span::before{
        width: 140px;
        min-height: 70px;
        max-height: 70px;
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
    }
    .screen1 .bannerMenu .menu-wrapper a span::after{
        width: 140px;
        height: 70px;
        box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.4);
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 140px;
        min-height: 70px;
        max-height: 70px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 140px;
        height: 70px;
    }
    .screen1 .bannerMenu .menu-wrapper{
        min-height: 500px;
        width: 100%;
        max-width: 600px !important;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 70px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 70px;
        }
        50% {
            left: 20px;
            bottom: 90px;
        }
        100% {
            left: 0px;
            bottom: 70px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        left: 0px;
        bottom: 220px !important;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 220px;
            left: 0px;
        }
    
        50% {
            left: 30px;
            bottom: 220px;
        }
    
        100% {
            bottom: 220px;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    
        50% {
            left: 50%;
            transform: translateX(-50%);
            top: 10px;
        }
    
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 70px;
        top: 60px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 70px;
            top: 60px;
        }
    
        50% {
            right: 90px;
            top: 80px;
        }
    
        100% {
            right: 70px;
            top: 60px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 220px !important;
        right: 0px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 220px !important;
            right: 0px;
        }
    
        50% {
            bottom: 220px !important;
            right: 20px;
        }
    
        100% {
            bottom: 220px !important;
            right: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 70px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 70px;
        }
    
        50% {
            right: 20px;
            bottom: 90px;
        }
    
        100% {
            right: 0px;
            bottom: 70px;
        }
    }
    
}

@media (max-width: 1200px){
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6),
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7){
        animation: none;
    }
    .screen1 .bannerMenu .menu-wrapper a span::before,
    .screen1 .bannerMenu .menu-wrapper a span::after{
        box-shadow: none;
    }
}

@media (max-width: 991px){
    .screen1{
        background-position: center -400px;
    }
    .screen1 .wrapper{
        padding-top: 20px !important;
    }
    .screen1 .bannerMenu .menu-wrapper{
        margin: 30px auto 0;
    }
    .screen1 .menu-column{
        order: 1;
    }
    .screen1 .text-column{
        order: 2;
    }
    .screen1 .text-column .banner-caps{
        padding: 50px 0 0;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 110px;
        }
        50% {
            left: 20px;
            bottom: 130px;
        }
        100% {
            left: 0px;
            bottom: 110px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 240px !important;
        left: 0px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 240px !important;
            left: 0px;
        }
    
        50% {
            bottom: 240px !important;
            left: 30px;
        }
    
        100% {
            bottom: 240px !important;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
        left: 30px;
        top: 60px;
    }
    @-webkit-keyframes game_03 {
        0% {
            left: 30px;
            top: 60px;
        }
    
        50% {
            left: 50px;
            top: 80px;
        }
    
        100% {
            left: 30px;
            top: 60px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    
        50% {
            left: 50%;
            transform: translateX(-50%);
            top: 10px;
        }
    
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: -20px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 30px;
        top: 60px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 30px;
            top: 60px;
        }
    
        50% {
            right: 50px;
            top: 80px;
        }
    
        100% {
            right: 30px;
            top: 60px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 240px !important;
        right: 0px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 240px !important;
            right: 0px;
        }
    
        50% {
            bottom: 240px !important;
            right: 30px;
        }
    
        100% {
            bottom: 240px !important;
            right: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 110px;
        }
    
        50% {
            right: 20px;
            bottom: 130px;
        }
    
        100% {
            right: 0px;
            bottom: 110px;
        }
    }
}


@media (max-width: 600px){
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 120px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 14px;
        min-width: 120px;
        max-width: 120px;
        min-height: 60px;
        max-height: 60px;
        padding: 0px 10px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 120px;
        min-height: 60px;
        max-height: 60px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 120px;
        height: 60px;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 110px;
        }
        50% {
            left: 20px;
            bottom: 130px;
        }
        100% {
            left: 0px;
            bottom: 110px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 240px;
        left: 0px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 240px;
            left: 0px;
        }
    
        50% {
            bottom: 240px;
            left: 30px;
        }
    
        100% {
            bottom: 240px;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 240px;
        right: 0px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 240px;
            right: 0px;
        }
    
        50% {
            bottom: 240px;
            right: 30px;
        }
    
        100% {
            bottom: 240px;
            right: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 110px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 110px;
        }
    
        50% {
            right: 20px;
            bottom: 130px;
        }
    
        100% {
            right: 0px;
            bottom: 110px;
        }
    }
    
    
}

@media (max-width: 450px){
    .screen1 {
        background-position: center -300px;
    }
    .screen1 .bannerMenu .menu-wrapper{
        min-height: 285px;
    }
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 100px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 12px;
        min-width: 100px;
        max-width: 100px;
        min-height: 50px;
        max-height: 50px;
        margin-right: 0 !important;
        right: 0 !important;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 100px;
        min-height: 50px;
        max-height: 50px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 100px;
        height: 50px;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: 0px;
        bottom: 70px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: 0px;
            bottom: 70px;
        }
        50% {
            left: 20px;
            bottom: 50px;
        }
        100% {
            left: 0px;
            bottom: 70px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 140px !important;
        left: 0px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 140px !important;
            left: 0px;
        }
    
        50% {
            bottom: 140px !important;
            left: 20px;
        }
    
        100% {
            bottom: 140px !important;
            left: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
        left: 20px;
        top: 30px;
    }
    @-webkit-keyframes game_03 {
        0% {
            left: 20px;
            top: 30px;
        }
    
        50% {
            left: 40px;
            top: 50px;
        }
    
        100% {
            left: 20px;
            top: 30px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 120px;
        transform: translateX(0);
        top: -40px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 120px;
            transform: translateX(0);
            top: -40px;
        }
    
        50% {
            left: 110px;
            transform: translateX(0);
            top: -10px;
        }
    
        100% {
            left: 120px;
            transform: translateX(0);
            top: -40px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 70px;
        top: -10px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 70px;
            top: -10px;
        }
    
        50% {
            right: 90px;
            top: 30px;
        }
    
        100% {
            right: 70px;
            top: -10px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 170px !important;
        right: 30px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 170px !important;
            right: 30px;
        }
    
        50% {
            bottom: 170px !important;
            right: 40px;
        }
    
        100% {
            bottom: 170px !important;
            right: 30px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: 0px;
        bottom: 90px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: 0px;
            bottom: 90px;
        }
    
        50% {
            right: 20px;
            bottom: 70px;
        }
    
        100% {
            right: 0px;
            bottom: 90px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper .last-child {
        bottom: 0px;
        max-width: 220px !important;
    }
    
}

@media (max-width: 400px){
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 100px;
        transform: translateX(0);
        top: -40px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 100px;
            transform: translateX(0);
            top: -40px;
        }
    
        50% {
            left: 110px;
            transform: translateX(0);
            top: -20px;
        }
    
        100% {
            left: 100px;
            transform: translateX(0);
            top: -40px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 30px;
        top: 0px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 30px;
            top: 0px;
        }
    
        50% {
            right: 60px;
            top: 20px;
        }
    
        100% {
            right: 30px;
            top: 0px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 165px !important;
        right: 10px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 165px !important;
            right: 10px;
        }
    
        50% {
            bottom: 165px !important;
            right: 40px;
        }
    
        100% {
            bottom: 165px !important;
            right: 10px;
        }
    }
}

@media  (max-width: 350px){
    .screen1 {
        background-position: center  -350px;
    }
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 90px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 14px;
        min-width: 90px;
        max-width: 90px;
        min-height: 45px;
        max-height: 45px;
        padding: 0px 10px;
        font-size: 12px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 90px;
        min-height: 45px;
        max-height: 45px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 90px;
        height: 45px;
    }
    .screen1 .bannerMenu .images-wrapper {
        padding-top: 50px;
        max-width: 140px !important;
    }
}

@media  (max-width: 320px){
    .screen1 .bannerMenu .menu-wrapper a{
        max-width: 80px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a span{
        font-size: 14px;
        min-width: 80px;
        max-width: 80px;
        min-height: 45px;
        max-height: 45px;
        padding: 0px 10px;
        font-size: 12px !important;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::before{
        width: 80px;
        min-height: 45px;
        max-height: 45px;
    }
    .screen1 .bannerMenu .menu-wrapper a:hover span::after{
        width: 80px;
        height: 45px;
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(1) {
        left: -5px;
        bottom: 100px;
    }
    @-webkit-keyframes game_01 {
        0% {
            left: -5px;
            bottom: 100px;
        }
        50% {
            left: 10px;
            bottom: 80px;
        }
        100% {
            left: -5px;
            bottom: 100px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(2) {
        bottom: 160px !important;
        left: -5px;
    }
    @-webkit-keyframes game_02 {
        0% {
            bottom: 160px !important;
            left: -5px;
        }
    
        50% {
            bottom: 160px !important;
            left: 10px;
        }
    
        100% {
            bottom: 160px !important;
            left: -5px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(3) {
        left: 15px;
        top: 20px;
    }
    @-webkit-keyframes game_03 {
        0% {
            left: 15px;
            top: 20px;
        }
    
        50% {
            left: 25px;
            top: 35px;
        }
    
        100% {
            left: 15px;
            top: 20px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(4) {
        left: 90px;
        transform: translateX(0);
        top: -30px;
    }
    @-webkit-keyframes game_04 {
        0% {
            left: 90px;
            transform: translateX(0);
            top: -30px;
        }
    
        50% {
            left: 90px;
            transform: translateX(0);
            top: -20px;
        }
    
        100% {
            left: 90px;
            transform: translateX(0);
            top: -30px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(5) {
        right: 30px;
        top: -10px;
    }
    @-webkit-keyframes game_05 {
        0% {
            right: 30px;
            top: -10px;
        }
    
        50% {
            right: 40px;
            top: 5px;
        }
    
        100% {
            right: 30px;
            top: -10px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(6) {
        bottom: 190px !important;
        right: -5px;
    }
    @-webkit-keyframes game_06 {
        0% {
            bottom: 190px !important;
            right: -5px;
        }
    
        50% {
            bottom: 190px !important;
            right: 10px;
        }
    
        100% {
            bottom: 190px !important;
            right: -5px;
        }
    }
    .screen1 .bannerMenu .menu-wrapper > a:nth-child(7) {
        right: -5px;
        bottom: 130px;
    }
    @-webkit-keyframes game_07 {
        0% {
            right: -5px;
            bottom: 130px;
        }
    
        50% {
            right: 10px;
            bottom: 120px;
        }
    
        100% {
            right: -5px;
            bottom: 130px;
        }
    }
}








/* Screen1 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen2 Css Start */

.screen2 .custom-row,
.screen3 .custom-row,
.screen4 .custom-row{
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen2 .custom-row .column,
.screen3 .custom-row .column,
.screen4 .custom-row .column{
    width: 100%;
}

.screen2 .custom-row .img-column,
.screen3 .custom-row .img-column,
.screen4 .custom-row .img-column{
    max-width: 40% !important;
}
.screen2 .custom-row .content-column,
.screen3 .custom-row .content-column,
.screen4 .custom-row .content-column{
    max-width: 60%;
    
}

.screen2 .flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
    width: 100%;
    /* max-width: 700px; */
    margin: 0 auto !important;
}
.screen2 .flex-box .box {
    width: calc(100% / 2 - 4%);
    margin: auto;
    border-radius: 15px;
}
.screen2 .flex-box .box a {
    display: block;
    text-align: center;
    padding: 70px 0;
    font-size: 36px;
    color: #fff;
    background-color: #0F4F87;
    line-height: 1.3;
    font-weight: 900;
    border-radius: 16px;
    transition: 0.2s all ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.screen2 .flex-box .box a:hover {
    color: #0F4F87;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/* Screen2 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen3 Css Start */
.screen3{
    background-color: #FAC033;
}
.screen3 .caps-wrapper h1{
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    color: black;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.screen3 .caps-wrapper p{
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: black;
    margin-bottom: 30px;
}
.screen3 .btn-wrapper{
    display: flex;
    justify-content: center;
    column-gap: 25px;
}
.playstore-btn{
    padding: 10px 0;
    width: 100%;
    max-width: 238px;
    background-color: black;
    color: white;
    font-family: 'Raleway';
    font-size: 15px;
    font-weight: 600;
    border-radius: 13px;
    display: flex;
    flex-direction: row;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    transition: 0.2s all ease-in-out;
}
.playstore-btn i {
    font-size: 42px;
}
.playstore-btn h4 p {
    margin: 0;
    font-size: 24px;
}
.playstore-btn h4 {
    margin: 0;
    font-size: 16px;
}

.channel-btn{
    padding: 10px 0;
    width: 100%;
    max-width: 432px;
    background-color: rgb(255, 255, 255);
    color: #3c3c3b;
    font-family: 'Raleway';
    font-size: 24px;
    font-weight: 700;
    border-radius: 13px;
    display: flex;
    flex-direction: row;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
    transition: 0.2s all ease-in-out;
}
.channel-btn i{
    font-size: 31px;    
}
.channel-btn:hover,
.playstore-btn:hover{
    color: #FAC033;
    /* box-shadow: rgb(0 0 0 / 35%) 0px 25px 50px -12px; */
}

/* Screen3 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen4 Css Start */
.screen4{
    background-color: #fff;
}
.screen4 h1{
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f4f87;
    margin-bottom: 40px;
}
.screen4 .flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 34px;
    column-gap: 35px;
}
.screen4 .flex-box .box {
    width: calc(100% / 3 - 3%);
    margin: auto;
    border-radius: 5px;
}
.screen4 .flex-box .box a {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-radius: 5px;
    /* box-shadow: 0 0 10px #0F4F87; */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    transition: 0.5s all ease-in-out;
}
.screen4 .flex-box .box a:hover {
    box-shadow: rgb(15 79 135 / 27%) 0px 4px 16px, rgb(15 79 135 / 11%) 0px 8px 32px;
    transform: scale(1.05);
}
.screen4 .box .box-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.screen4 .box-inner .img-wrapper {
    height: 103px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.screen4 .box-inner .img-wrapper img {
    max-width: 86px;
}
.screen4 .flex-box .box:nth-child(4) img {
    max-width: 116px;
}
.screen4 .flex-box .box:nth-child(3) img {
    max-width: 95px;
}
.screen4 .box .box-inner p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}
/* Screen4 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen5 Css Start */
.screen5{
    padding-top: 50px;
}
.screen5 .wrapper,
.screen6 .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.screen5 .wrapper .flex-right {
    background-color: #0F4F87;
    width: 100%;
    max-width: 35%;
    padding: 100px 0 100px 50px;
}
.screen5 .wrapper .flex-left {
    background-color: #F5F4FA;
    position: relative;
    width: 100%;
    max-width: 65%;
    background-image: url('../images/resfriada.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}
.screen5 .wrapper .flex-left img{
    position: absolute;
    width: 100%;
    z-index: 5;
}
.screen5 .wrapper .flex-left img:first-child{
    right: 0;
    bottom: 0;
    max-width: 400px;
}
.screen5 .wrapper .flex-left img:last-child{
    top: 20px;
    right: 30px;
    max-width: 70px;
}

.screen5 .flex-right h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}
.screen5 .flex-right p {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    width: 100%;
    max-width: 60%;
}
.screen5 .check-list{
    font-size: 22px;
    color: #fff;
    margin: 30px 0;
    list-style-type: none;
}
.screen5 .check-list li::before{
    content: "✓";
    font-size: 23px;
    margin-right: 1em;
}
.screen5 .btn-wrapper {
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
    flex-wrap: wrap;
}
.screen5 .btn-wrapper a {
    width: 100%;
    max-width: 200px;
    background-color: transparent;
    padding: 12px 0;
    font-size: 18px;
    display: flex;
    font-weight: 700;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: 0.2s all ease-in-out;
}
.screen5 .btn-wrapper a:hover {
    color: #0F4F87;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.473);
}

/* Screen5 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen6 Css Start */
.zen{
    text-align: center;
    color: #0F4F87;
}
.zen img {
    max-width: 270px;
}
.zen h1 {
    font-size: 68px;
    font-weight: 900;
    margin: 10px 0 15px 0;
}
.zen h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}
.btn-blue {
    width: 100%;
    max-width: 200px;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    font-size: 24px;
    background: linear-gradient(0deg, #1377cefb 0%, #0f4f87 100%);
    border: none;
}
.btn-blue span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;    
    padding: 15px 25px;
}
.btn-blue:before,
.btn-blue:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: #0f4f87;
    box-shadow:
    -7px -7px 20px 0px rgba(255,255,255,.9),
    -4px -4px 5px 0px rgba(255,255,255,.9),
    7px 7px 20px 0px rgba(0,0,0,.2),
    4px 4px 5px 0px rgba(0,0,0,.3);
    transition: all 0.3s ease;
}
.btn-blue:before{
    height: 0%;
    width: 2px;
}
.btn-blue:after {
    width: 0%;
    height: 2px;
}
.btn-blue:hover{
    color: #0f4f87;
    background: transparent;
}
.btn-blue:hover:before {
    height: 100%;
}
.btn-blue:hover:after {
    width: 100%;
}
.btn-blue span:before,
.btn-blue span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #0f4f87;
    box-shadow:
    -7px -7px 20px 0px rgba(255,255,255,.9),
    -4px -4px 5px 0px rgba(255,255,255,.9),
    7px 7px 20px 0px rgba(0,0,0,.2),
    4px 4px 5px 0px rgba(0,0,0,.3);
    transition: all 0.3s ease;
}
.btn-blue span:before {
    width: 3px;
    height: 0%;
}
.btn-blue span:after {
    height: 2px;
    width: 0%;
}
.btn-blue span:hover:before {
    height: 100%;
}
.btn-blue span:hover:after {
    width: 100%;
}
.checklist-zen{
    color: #0F4F87;
}
.checklist-zen h1 {
    font-size: 42px;
    font-weight: 700;
}
.checklist-zen ul {
    list-style: none;
    width: 98%;
    font-size: 40px;
    margin-top: 2%;
    font-weight: 200;
    margin-left: 2%;
    line-height: 1.1;
}
.checklist-zen ul li:before {
    content: '✓';
    font-size: 53px;
    margin-right: 6%;
}

/* Screen6 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen7 Css Start */
.screen7{
    background-color: #39A76A;
    position: relative;
    z-index: -5;
}
.screen7::before{
    content: '';
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 235px;
    top: 0;
    z-index: -4;
}
.logo-market {
    width: 100%;
    text-align: center;
    max-width: 450px;
    margin: auto;
    border-radius: 50px;
    background-color: white;
    border: solid 0.5px #39a76a;
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    z-index: 99999999;
}
.logo-market img{
    z-index: 999;
    width: 100%;
    max-width: 400px;
}
.screen7 .hd-sec{
    color: #fff;
    text-align: center;
}
.screen7 .hd-sec h1{
    font-weight: 700;
    font-size: 56px;
    margin: 15px 0 0 0;
}
.screen7 .hd-sec h2{
    font-weight: 400;
    font-size: 36px;
}
.cat-market {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 40px;
    justify-content: center;
}
.box-market {
    width: calc(100% / 4 - 4%);
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 200;
    font-size: 28px;
    color: #fff;
    gap: 10px;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
    transition: 0.3s all ease-in-out;
}
.box-market:hover {
    transform: scale(1.05);
}
.box-market p {
    margin: 0;
    line-height: 1;
    width: 100%;
    max-width: 190px;
    height: 65px;
}
.box-market .img-wrapper {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-market img {
    width: 100%;
    max-width: 100px;
}
.box-market:nth-child(3) img {
    max-width: 81px;
}
.screen7 a{
    width: 100%;
    max-width: 400px;
    margin: 50px auto 0;
    padding: 10px 0;
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    font-weight: 700;
    background-color: #fff;
    color: #39a76a;
    border-radius: 13px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 27px;
    font-family: 'Raleway';
    transition: 0.3s all ease-in-out;
}
.screen7 a:hover{
    background: linear-gradient(0deg, #1f1f1f8e 0%, #39a76a 100%);
    color: #fff;
}
/* Screen7 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen8 Css Start */
.screen8{
    background-image: url('../images/bene.png');
    background-position: center -30px;
    background-repeat: no-repeat;
    background-size: cover;
}
.screen8 h1{
    font-weight: 900;
    font-size: 3rem;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}
.screen8 a{
    width: 100%;
    display: block;
    max-width: 400px;
    padding: 10px 0;
    box-shadow: 0px 0px 8px 0px #5a5a5a;
    font-weight: 700;
    background-color: #fff;
    color: #981f62;
    text-align: center;
    border-radius: 13px;
    font-size: 27px;
    font-family: 'Raleway';
    margin: 20% 0 0 auto;
    transition: 0.3s all ease-in-out;
}
.screen8 a:hover{
    background: linear-gradient(0deg, #1f1f1f8e 0%, #981f62 100%);
    color: #fff;
}
/* Screen8 Css End */

/* -------------------------------------------------------- */
/* -------------------------------------------------------- */

/* Screen9 Css Start */
.screen9{
  background-color:rgba(6,42,108,1);
}
.screen9 .wrapper{
    max-width: 1600px !important;
    margin: 0 auto !important;
}
.screen9 .sec-hd {
    color: #fff;
    font-weight: 800;
    font-size: 48px;
    text-align: center;
}
.pixi-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.pixi-container .pixi-video {
    position: relative;
    width: 100%;
    max-width: 300px;
}
.pixi-container .pixi-video video {
    position: absolute;
    left: -88px;
    z-index: 5;
    width: 750px;
    height: auto;
    top: -51px;
}
.soypixi {
    display: flex;
    flex-direction: column;
    color: #fff;
    z-index: 999;
    padding: 40px 100px;
}
.soypixi h1 {
    font-weight: 900;
    font-size: 36px;
    color: #61d8c2;
    margin-bottom: 0px;
}
.soypixi h2 {
    font-weight: 900;
    font-size: 52px;
}
.cyan-btn {
    border-radius: 11px;
    background-color: #61d8c2;
    width: 100%;
    max-width: 250px;
    padding: 10px 0;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 900;
    color: #3c3c3b;
    position: relative;
    box-shadow: 0px 0px 8px 0px #f8f9fa;
    border: none;
    z-index: 1;
}
.cyan-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 11px;
    background-color: #ffffff;
    background-image: linear-gradient(315deg, #61d8c2 0%, #61d8c25e 74%);
        box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
        7px 7px 20px 0px rgba(0,0,0,.1),
        4px 4px 5px 0px rgba(0,0,0,.1);
    transition: all 0.3s ease;
}
.cyan-btn:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}
.cyan-btn:active {
    top: 2px;
}
.cyan-btn:hover {
    color: #333;
}
.videollamada {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    z-index: 999;
    width: 100%;
    max-width: 550px;
}
.videollamada > div {
    display: flex;
    flex-direction: row;
    align-items:center;
    flex-wrap: wrap;
    gap: 40px;
}
.videollamada > div img {
    max-width: 125px;
}
.videollamada h1 {
    color: #fff;
    line-height: 1.2;
    font-weight: 900;
    margin: 28px 0 0 0;
}
.videollamada a{
    margin: 20px auto 0;
}
/* Screen9 Css End */


/* ------------------------ HOME PAGE CSS END ------------------- */
/* --------------------------------------------------------------- */

/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* -------------------- RESPONSIVE CSS START --------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */

@media (max-width:1900px) {
    .screen2 .flex-box {
        row-gap: 30px;
        column-gap: 30px;
    }
    .screen2 .flex-box .box a {
        padding: 65px 0;
        font-size: 34px;
    }
}

@media (max-width:1600px) {
    .screen4 .box-inner .img-wrapper img {
        max-width: 65px;
    }
    .screen4 .flex-box .box:nth-child(3) img {
        max-width: 72px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 90px;
    }
    .screen4 .box-inner .img-wrapper {
        height: 75px;
    }

    .screen5 .wrapper .flex-right {
        padding: 50px 0 50px 50px;
    }

    .screen7::before {
        height: 208px;
    }
    .logo-market {
        max-width: 350px;
        border-radius: 35px;
    }
    .logo-market img {
        max-width: 290px;
    }
    .screen7 .hd-sec h1 {
        font-size: 46px;
    }
    .screen7 .hd-sec h2 {
        font-size: 28px;
    }

    .screen8 {
        background-position: center 6px;
    }

    .screen9 .sec-hd {
        font-size: 44px;
        z-index: 9999999;
    }
    .pixi-container .pixi-video video {
        left: -7px;
        width: 668px;
        top: -7px;
    }
    .screen1 .banner-caps {
        padding-left: 50px;
    }
}

@media (max-width:1400px) {
    .screen1 .banner-caps {
        max-height: 350px;
    }
    .screen1 .bannerMenu .images-wrapper{
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding-top: 100px;
    }
    /* .screen1 .bannerMenu .menu-wrapper .first-child {
        max-width: 220px;
    } */
    .screen1 .bannerMenu .menu-wrapper .last-child {
        bottom: 5px;
        max-width: 265px;
    }
    .img-wrapper.mobile-img img {
        max-width: 350px;
        /* float: right; */
    }
    .screen2 .flex-box {
        row-gap: 20px;
        column-gap: 20px;
        justify-content: center;
        /* justify-content: flex-start; */
    }
    .screen2 .flex-box .box {
        width: calc(100% / 2 - 10%);
        margin: 0;
    }
    .screen2 .flex-box .box a {
        padding: 55px 0px;
        font-size: 25px;
    }
    .screen4 .flex-box {
        row-gap: 25px;
        column-gap: 25px;
    }

    .screen3 .caps-wrapper h1 {
        font-size: 46px;
        margin-bottom: 15px;
    }
    .screen3 .caps-wrapper p {
        font-size: 23px;
        margin-bottom: 15px;
    }
    .playstore-btn h4 {
        font-size: 14px;
    }
    .playstore-btn h4 p {
        font-size: 20px;
    }
    .playstore-btn {
        padding: 10px 0;
        width: 191px;
        font-size: 15px;
        column-gap: 10px;
    }
    .playstore-btn i {
        font-size: 35px;
    }
    .screen4 h1 {
        font-size: 45px;
        margin-bottom: 16px;
    }    
    .screen4 .flex-box .box {
        width: calc(100% / 3 - 6%);
        margin: 0;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 54px;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 54px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 71px;
    }
    .screen4 .box .box-inner p {
        font-size: 18px;
    }
    .screen5 .flex-right h1 {
        font-size: 40px;
        margin-bottom: 5px;
    }
    .screen5 .flex-right p {
        font-size: 20px;
        margin-bottom: 0px;
        max-width: 75%;
    }
    .screen5 .check-list {
        font-size: 18px;
        margin: 15px 0;
    }
    .screen5 .btn-wrapper a {
        max-width: 177px;
        padding: 10px 0;
        font-size: 16px;
    }
    .channel-btn {
        padding: 10px 0;
        width: 343px;
        font-size: 18px;
        column-gap: 7px;
    }
    .pixi-web img {
        max-width: 110px;
    }
    .zen h1 {
        font-size: 36px;
        margin-bottom: 0;
    }
    .zen h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .btn-blue {
        max-width: 158px;
    }
    .btn-blue span {
        padding: 10px 15px;
    }
    .checklist-zen h1 {
        font-size: 30px;
    }
    .checklist-zen ul {
        font-size: 20px;
    }
    .checklist-zen ul li{
        margin-bottom: 5px;
    }
    .checklist-zen ul li:before {
        font-size: 22px;
        margin-right: 20px;
    }
    .zen img {
        max-width: 205px;
    }
    .screen8 {
        background-position: center -22px;
    }
    .screen8 a {
        max-width: 301px;
        padding: 10px 0;
        border-radius: 15px;
        font-size: 22px;
        margin: 14% 0 0 69%;
    }
    .logo-market img {
        max-width: 208px;
    }
    .logo-market {
        max-width: 250px;
        border-radius: 21px;
    }
    .screen7::before {
        height: 192px;
    }
    .screen7 .hd-sec h1 {
        font-size: 36px;
        margin: 7px 0 0 0;
    }
    .screen7 .hd-sec h2 {
        font-size: 20px;
    }
    .box-market {
        width: calc(100% / 4 - 6%);
        font-size: 18px;
        gap: 16px;
        padding: 10px 0;
        margin-top: 20px;
    }
    .screen7 a {
        max-width: 320px;
        margin: 30px auto 0;
        padding: 10px 0;
        border-radius: 14px;
        gap: 12px;
        font-size: 21px;
    }
    .box-market img {
        max-width: 72px;
    }
    .box-market:nth-child(3) img {
        max-width: 52px;
    }
    .box-market .img-wrapper {
        height: 75px;
    }
    .box-market p {
        height: 47px;
    }
    .screen8 h1 {
        font-size: 36px;
        margin-top: 0;
    }
    .screen9 .sec-hd {
        font-size: 36px;
    }
    .pixi-container .pixi-video video {
        left: 25px;
        width: 556px;
        height: 256px;
    }
    .soypixi h1 {
        font-size: 28px;
    }
    .soypixi h2 {
        font-size: 36px;
        margin: 0;
    }
    .soypixi h3 {
        font-size: 20px;
    }
    .cyan-btn {
        max-width: 200px;
        padding: 10px 0;
        margin-top: 7px;
        font-size: 18px;
    }
    .soypixi {
        padding: 43px 39px;
    }
    .videollamada > div img {
        max-width: 72px;
    }
    .videollamada > div {
        gap: 14px;
    }
    .videollamada h1 {
        line-height: 1;
        margin: 12px 0 0 0;
        font-size: 26px;
    }
    .videollamada {
        gap: 10px;
        max-width: 40%;
    }    
    .videollamada a {
        margin: 6px 0 0 55px;
    }
    .footer-img img {
        max-width: 400px;
    }
    .footer-title {
        margin-bottom: 23px;
        font-size: 28px;
    }
    .footer-widget1 a, .footer-widget2 a, .footer-widget3 a {
        font-size: 18px;
        gap: 14px;
        margin-bottom: 5px;
    }
    .footer-widget3 p span {
        font-size: 17px;
    }
    .icon-bar a i {
        font-size: 26px;
        line-height: 42px;
    }
    .icon-bar a {
        height: 41px;
        width: 43px;
    }
    .screen1 .wrapper {
        max-width: 1200px !important;
    }
    .screen1 .banner-caps h1 {
        font-size: 44px;
        margin-top: 65px;
        margin-bottom: 0;
    }
    .screen1 .banner-caps p {
        font-size: 28px;
        margin-bottom: 22px;
    }
    .screen1 .banner-caps a {
        font-size: 20px;
    }
    .navbar-nav .nav-link {
        padding: 5px 20px !important;
        font-size: 16px;
        margin: 0 5px;
    }
    .navbar-brand {
        max-width: 142px;
        padding: 0;
    }
    nav.navbar {
        padding: 3px 0;
    }
}
@media (max-width:1200px) {

    .screen2 .flex-box .box a {
        font-size: 28px;
        line-height: 1.1;
    }    

    .screen3 .caps-wrapper h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }
    .screen3 .caps-wrapper p {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .screen3 .btn-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }

    .screen4 h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 55px;
    }
    .screen4 .flex-box .box:nth-child(3) img {
        max-width: 62px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 77px;
    }
    .screen4 .box .box-inner p {
        font-size: 18px;
    }

    .screen5 .flex-right h1 {
        font-size: 32px;
        margin-bottom: 5px;
    }
    .screen5 .flex-right p {
        font-size: 16px;
        max-width: 80%;
    }
    .screen5 .check-list {
        font-size: 16px;
        margin: 10px 0;
    }
    .screen5 .check-list li::before {
        font-size: 16px;
    }
    .screen5 .btn-wrapper {
        row-gap: 10px;
        flex-direction: column;
    }
    .screen5 .btn-wrapper a {
        max-width: 169px;
        padding: 10px 0;
        font-size: 14px;
    }
    .screen5 .wrapper .flex-right {
        padding: 25px 0 25px 30px;
    }
    .screen5 .wrapper .flex-left img:first-child {
        max-width: 318px;
    }
    .screen5 .wrapper .flex-left img:last-child {
        max-width: 55px;
    }
    .screen8 {
        background-position: center 49px;
    }
    .zen img {
        max-width: 200px;
    }
    .zen h1 {
        font-size: 36px;
    }
    .zen h2 {
        font-size: 24px;
    }
    .checklist-zen h1 {
        font-size: 30px;
    }
    .checklist-zen ul {
        font-size: 26px;
    }

    .box-market img {
        max-width: 82px;
    }
    .box-market:nth-child(3) img {
        max-width: 63px;
    }
    .box-market .img-wrapper {
        height: 90px;
    }
    .cat-market {
        column-gap: 30px;
    }
    .box-market {
        width: calc(100% / 4 - 3%);
    }
    .screen7 a {
        margin: 35px auto 0;
    }

    .pixi-container .pixi-video video {
        width: 560px;
        height: 296px;
    }
    .videollamada > div img {
        max-width: 90px;
    }
    .videollamada h1 {
        line-height: 1;
        font-size: 34px;
    }
    .soypixi h1 {
        font-size: 32px;
    }
    .soypixi h2 {
        font-size: 40px;
        margin-bottom: 0;
    }
    .soypixi h3 {
        font-size: 24px;
    }
}

@media (max-width:1080px) {
    .img-wrapper.mobile-img img {
        max-width: 274px;
        margin-top: 38px;
    }
    .screen2 .flex-box .box a {
        font-size: 22px;
        line-height: 1.1;
    }
    .screen3 .caps-wrapper h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .screen3 .caps-wrapper p {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .playstore-btn i {
        font-size: 24px;
    }
    .playstore-btn h4 {
        font-size: 12px;
    }
    .playstore-btn h4 p {
        font-size: 16px;
    }
    .screen3 .btn-wrapper {
        row-gap: 10px;
    }
    .playstore-btn {
        padding: 8px 0;
        max-width: 156px;
        column-gap: 10px;
    }
    .channel-btn {
        padding: 8px 0;
        max-width: 265px;
        font-size: 14px;
    }
    .screen4 h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .screen4 .box-inner .img-wrapper img {
        max-width: 45px;
    }
    .screen4 .flex-box .box:nth-child(3) img {
        max-width: 48px;
    }
    .screen4 .flex-box .box:nth-child(4) img {
        max-width: 65px;
    }
    .screen4 .box-inner .img-wrapper {
        height: 55px;
    }
    .screen4 .box .box-inner {
        gap: 10px;
    }
    .screen4 .box .box-inner p {
        font-size: 16px;
    }
    .screen4 .flex-box {
        row-gap: 20px;
        column-gap: 20px;
    }
}

@media (max-width : 991px) {
    #header{
        position: initial;
    }
    .screen7 .wrapper{
        padding-top: 0 !important;
    }
    .screen7 .wrapper .logo-market{
        margin-top: -30px;
        z-index: 111111111 !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .screen7 .hd-sec{
        padding-top: 50px;
    }
    .screen7::before{
        display: none;
    }
    main > section {
        padding-top: 0 !important;
        position: initial !important;
        height: initial !important;
    }
    main > section .wrapper{
        padding: 50px 0 !important;
        position: unset !important;
        top: unset !important;
        transform: unset !important;
    }
    .screen2 {
        background-image: none;
    }
    .screen4 .flex-box .box {
        width: calc(100% / 2 - 3%);
    }
    .screen2 .flex-box .box a {
        font-size: 18px;
    }
    .screen8 {
        background-position: center;
    }
    .screen8 a {
        margin: 100px 0 100px auto;
    }
    .videollamada {
        /* margin-top: 70px;logo-market */
    }
    .screen10 {
        padding: 0 0 50px 0;
    }
    .footer-img img {
        max-width: 300px;
    }
    #footer {
        position: unset;
        top: unset; 
        transform: translateY(0);
    }
    .screen5 .wrapper .flex-left img:last-child{
        top: 10px;
        right: 20px;
        max-width: 30px;
    }
    .screen1 .banner-caps {
        padding-left: 0;
        text-align: center;
    }
    .screen1 .banner-caps a{
        box-shadow: 0 0 20px  rgba(0, 0, 0, 0.2) !important;
    }
    .screen7 .container{
        max-width: 100%;
    }
    .screen7 .cat-market{
        column-gap: 12px;
    }
}

@media (max-width : 767px) {
    .screen2 .container,
    .screen3 .container,
    .screen4 .container{
        max-width: 98%;
    }
    .screen2 .flex-box {
        justify-content: center;
        row-gap: 10px;
        column-gap: 10px;
        padding: 0 10px;
    }
    .screen2 .flex-box .box{
        width: calc(100%/2 - 2%);
    }
    .screen2 .flex-box .box a {
        padding: 40px 10px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 12px;
    }
    .screen2 .img-column,
    .screen3 .img-column,
    .screen4 .img-column{
        text-align: center;
    }
    .screen2 .img-column img,
    .screen3 .img-column img,
    .screen4 .img-column img{
        width: 100%;
        max-width: 180px;
    }
    .mobile-img img {
        float: none !important;
        margin: auto;
        display: block;
    }
    .playstore-btn,
    .channel-btn {
        margin: auto;
    }
    .screen4 h1 {
        text-align: center;
        margin-bottom: 30px;
    }
    .screen5 .wrapper {
        flex-direction: column;
    }
    .screen5 .wrapper .flex-right,
    .screen5 .wrapper .flex-left{
        max-width: 100%;
    }
    .screen5 .wrapper .flex-left {
        height: 300px;
    }
    .screen5 .wrapper .flex-right {
        padding: 40px 0;
    }
    .screen5 .btn-wrapper {
        flex-direction: initial;
        justify-content: center;
    }
    .screen5 .flex-right h1 {
        text-align: center;
        margin-bottom: 10px;
    }
    .screen5 .flex-right p {
        max-width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .screen5 .check-list {
        width: fit-content;
        margin: 20px auto;
    }
    .checklist-zen h1 {
        text-align: center;
        margin: 45px 0px 15px 0;
    }
    .checklist-zen ul {
        width: fit-content;
        margin: auto;
    }
    .box-market {
        width: calc(100% / 3);
    }
    .screen7 .hd-sec h1 {
        margin: 25px 0 6px 0;
    }
    .videollamada {
        max-width: 50%;
        margin: 40px auto 0;
        gap: 25px;
    }
    .footer-widget2,
    .footer-widget3 {
        margin-top: 44px;
    }
    .mobile-img {
        margin-bottom: 40px;
    }
    .screen3 .caps-wrapper h1 {
        margin-bottom: 14px;
    }
    .screen3 .caps-wrapper p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .screen3 .btn-wrapper {
        row-gap: 15px;
    }
    .screen3 .btn-wrapper a{
        margin: 0 !important;
        width: 100%;
        max-width: 170px;
    }
    .channel-btn{
        padding: 10px;
        column-gap: 0px;
        transition: 0.2s all ease-in-out;
    }
    .zen img {
        max-width: 160px;
    }
    .zen h1 {
        margin: 20px 0 0 0;
    }
    .pixi-container .pixi-video {
        height: 268px;
        max-width: 396px;
        overflow: hidden;
        border-radius: 100%;
        margin: auto;
    }
    .pixi-container .pixi-video video {
        left: 3px;
    }    
    .pixi-container {
        flex-direction: column;
    }
    .soypixi {
        text-align: center;
    }
    .cyan-btn {
        margin: auto;
    }
    .videollamada h1 {
        line-height: 1;
        font-size: 22px;
    }
    .videollamada > div img {
        max-width: 56px;
    }
    .soypixi {
        gap: 5px;
    }
    .videollamada > div {
        gap: 14px;
        justify-content: center;
    }
    .videollamada a {
        margin: auto;
    }
    .screen1 .banner-caps h1 {
        font-size: 36px;
        margin-top: 0px;
        margin-bottom: 0;
    }
    .screen1 .banner-caps p {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .screen1 .banner-caps a {
        font-size: 18px;
        padding: 10px 0;
    }
    .screen8 .wrapper{
        padding: 20px 0 !important;
    }
    .screen8 h1{
        margin-top: 0;
        font-size: 36px !important;
    }
    .screen8 a{
        margin: 0 auto !important;
    }
    .screen8 .col-sm-12{
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (max-width : 600px){
    .screen1 .banner-caps h1 {
        font-size: 30px;
    }
    .screen1 .banner-caps p {
        font-size: 22px;
        margin: 10px auto 20px;
        padding-left: 20px;
    }
    .screen1 .banner-caps a {
        font-size: 18px;
        padding: 8px 0;
        max-width: 182px;
        box-shadow: 0 0 20px  rgba(0, 0, 0, 0.2) !important;
    }
    .footer-title {
        font-size: 24px;
        text-align: center;
    }
    .footer-widget1 a, .footer-widget2 a, .footer-widget3 a {
        justify-content: center;
    }
    .footer-widget3 p {
        margin: auto;
        width: 100%;
        max-width: 270px;
        margin-bottom: 5px;
        text-align: center;
    }
    .icon-bar a {
        height: 29px;
        width: 29px;
    }
    .icon-bar a i {
        font-size: 18px;
        line-height: 31px;
    }
    .icon-bar {
        right: 15px;
    }
    .pixi-web img {
        max-width: 65px;
    }
    .screen4 .custom-row .img-column{
        display: none !important;
    }
    .screen4 .wrapper{
        padding-bottom: 20px !important;
    }
    .screen4 .content-column{
        max-width: 100% !important;
    }
    .screen4 .flex-box {
        row-gap: 10px;
        column-gap: 10px;
    }
    .screen4 .flex-box .box {
        width: calc(100% / 2 - 2%);
    }
    
}   

@media (max-width:500px) {
    .screen2 .flex-box{
        padding-right: 0;
    }
    .screen2 .flex-box .box {
        width: 100%;
        max-width: 320px;
    }
    .screen2 .flex-box .box:nth-child(1){
        display: none;
    }
    .screen2 .flex-box .box a {
        font-size: 16px;
    }
    .screen3 .caps-wrapper h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .screen4 h1 {
        font-size: 24px;
    }
    .screen4 .img-column .img-wrapper{
        display: none;
    }
    .screen4 .flex-box{
        column-gap: 0;
        align-items: stretch;
        justify-content: space-between;
    }
    .screen4 .flex-box .box {
        width: 100%;
        max-width: 48%;
        margin: 0 !important;
        margin: auto;
    }
    .screen4 .flex-box .box a{
        min-height: 100%;
        padding: 10px !important;
    }
    .screen5 .wrapper .flex-left img:first-child {
        max-width: 259px;
    }
    .screen5 .btn-wrapper {
        flex-direction: column;
    }
    .screen5 .btn-wrapper a {
        margin: auto;
    }
    .screen5 .flex-right h1 {
        font-size: 24px;
    }
    .zen img {
        max-width: 140px;
    }
    .zen h1 {
        font-size: 26px;
    }
    .zen h2 {
        font-size: 18px;
    }
    .btn-blue {
        font-size: 20px;
    }
    .checklist-zen h1 {
        font-size: 22px;
    }
    .checklist-zen ul {
        font-size: 18px;
    }
    .logo-market img {
        max-width: 166px;
    }
    .logo-market {
        max-width: 189px;
        border-radius: 21px;
    }
    .screen7 .hd-sec h1 {
        margin: 19px 0 3px 0;
        font-size: 24px;
    }
    .screen7 .hd-sec h2 {
        font-size: 18px;
        max-width: 80%;
        margin: 10px auto;
    }
    .box-market {
        width: 100%;
        max-width: 300px;
    }
    .screen7 a {
        max-width: 274px;
        margin: 30px auto 0;
        font-size: 18px;
    }
    .screen7 .cat-market {
        column-gap: 0;
        justify-content: space-between;
        align-items: stretch;
    }
    .screen7 .box-market {
        width: 48%;
        font-size: 18px;
        margin-top: 15px;
        padding: 30px 10px 0px;
    }
    .screen7 .box-market .img-wrapper{
        margin: 0;
        height: 60px;
    }
    .screen7 .box-market img{
        width: 100%;
        max-width: 50px;
    }
    .screen8 .wrapper{
        padding: 20px 0 10px !important;
    }
    .screen8 .col-sm-12{
        min-height: 330px;
    }
    .screen8 {
        background: url('../images/credit-card-img.PNG') no-repeat;
        background-size: cover;
        background-position: center;
    }
    .screen8 h1 {
        font-size: 28px !important;
        margin-top: 0;
    }
    .screen8 a {
        font-size: 12px;
        max-width: 160px;
        margin: 50px auto 0 !important;
    }

}

@media (max-width: 450px){
    .screen1 .bannerMenu .images-wrapper{
        padding-top: 50px;
        max-width: 170px !important;
    }
    .screen1 .bannerMenu .images-wrapper .last-child{
        max-width: 170px !important;
        bottom: 0;
    }
}

@media (max-width:400px){
    .screen5 .wrapper .flex-left img:first-child {
        max-width: 204px;
    }
    .screen5 .wrapper .flex-left {
        height: 232px;
    }
    .screen2 .custom-row .img-column,
    .screen3 .custom-row .img-column{
        max-width: 45% !important;
    }
    .screen2 .custom-row .content-column,
    .screen3 .custom-row .content-column{
        max-width: 55% !important;
    }
    .screen2 .flex-box .box a {
        padding: 35px 10px;
        font-size: 13px;
        border-radius: 6px;
    }
}

@media (max-width:380px) {
    .pixi-container .pixi-video video {
        left: -29px;
    }
}

@media (max-width: 350px){
    .screen1 .bannerMenu .images-wrapper{
        max-width: 140px !important;
    }
    .screen1 .bannerMenu .images-wrapper .last-child{
        max-width: 140px !important;
        bottom: 37px;
    }
}

.screen2 .img-column img,
.screen3 .img-column img,
.screen4 .img-column img{
    display: none;
}

#sticky-img{
    position: fixed;
    display: none;
    top: 280px;
    left: 300px;
    z-index: 1;
    width: 100%;
    max-width: 430px;
    /* transition: all 0.5s ease-in-out; */
}
#sticky-img2{
    display: none;
}  
@media (max-width: 1800px){
    #sticky-img{
        left: 270px;
        max-width: 400px;
    }    
}
@media (max-width: 1700px){
    #sticky-img{
        left: 240px;
        max-width: 400px;
    }    
}
@media (max-width: 1600px){
    #sticky-img{
        top: 270px;
        left: 184px;
        max-width: 395px;
    }    
}
@media (max-width: 1400px){
    #sticky-img{
        top: 280px !important;
        left: 180px;
        max-width: 360px;
    }    
}
@media (max-width: 1300px){
    #sticky-img{
        top: 180px !important;
        left: 144px;
        max-width: 280px !important;
        z-index: 11111111111111;
    }    
}

@media (max-width: 991px){
    #sticky-img{
        display: none !important;
    }
    .screen2 .img-column img,
    .screen3 .img-column img,
    .screen4 .img-column img{
        display: inline-block;
    }
}

@media (max-width: 450px){
    .icon-bar{
        display: none;
    }
}

/* ------------------ MOBILE MENU -------------------- */

#menu-toggler{
    /* z-index: 11111111; */
    color: #fff;
    font-size: 32px;
    border-radius: 0px !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

aside{
    background-color: #fac033;
    position: fixed;
    right: 0px;
    top: 0;
    height: 100%;
    width: 280px;
    margin-right: -280px;
    z-index: 11111;
    padding: 15px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    /* transition: all 0.5s ease-in-out; */
}

aside.show{
    margin-right: 0px;
}

aside .close-sidebar{
    position: absolute;
    right: 12px;
    top: 0px;
    color: #fff !important;
    font-size: 32px;
    border-radius: 0px !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

aside h1{
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: capitalize;
    border-bottom: 2px solid #fff;
}

aside ul{
    padding-left: 0;
}

aside ul li{
    list-style-type: none;
    margin-bottom: 15px;
}

aside ul li a{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

aside ul li i{
    margin-right: 10px;
}

@media (max-width: 990px){
    .navbar-collapse{
        display: none;
    }
}

@media (max-width: 350px){
    aside{
        width: 220px;
        margin-right: -220px;
        padding: 15px;
    }
    aside h1{
        font-size: 26px;
        margin-bottom: 10px;
    }
    aside ul li{
        list-style-type: none;
        margin-bottom: 10px;
    }
    
    aside ul li a{
        color: #fff;
        font-size: 17px;
        font-weight: 500;
    }
}

@media (max-width: 1400px){
    #sticky-img {
        top: 150px;
        left: 144px;
        max-width: 320px;
    }
}

@media (max-width: 1200px){
    .screen1 .wrapper{
        margin-top: -80px !important;
    }
}

@media (max-width: 990px){
    .screen1 .wrapper{
        margin-top: 0px !important;
    }
}

.screen1 .bannerMenu .carousel-item img{
    animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
    -moz-animation: fadeIn 3s;
    -o-animation: fadeIn 3s;
    -ms-animation: fadeIn 3s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}