* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #eaeaea;
}

.btn-whatsapp {
    width: 50px;
    height: 50px;
    border-radius: calc(50%);
    border: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    background: #FFF;
    transition: all ease .4s;
    z-index: 10;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 4px rgba(0,0,0,.23);
}

.btn-whatsapp img {
    width: 30px;
    display: block;
}

.main-header {
    background: #313179;
    padding: 100px 0;
}

.landing-home-image {
    width: 100%;
    border-radius: 75px;
    border: 1px solid rgb(134 73 255 / 10%);
    box-shadow: 71px 45px 51px rgba(0,0,0,0.23);
}

.cardInfo h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #FFF;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.cardInfo p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: rgba(255,255,255,.57);
    line-height: 24px;
    font-size: 18px;
}


.nav-main {
    text-align: right;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #313179;
    padding: 15px;
}
  
.sticky + .content {
    padding-top: 60px;
}

.nav-main a {
    text-decoration: none;
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 12px;
    color: #FFF;
    transition: all ease .4s;
}

.nav-main a.active {
    background-color: #FFF;
    color: #313179;
    border-radius: 25px;
    padding: 12px 25px;
    transition: all ease .1s;
    font-weight: bolder;
}

.nav-main a.active:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.23);
}

.nav-main a.active:hover span {
    transform: scale(1.5);
    transition: all ease .4s;
}

.nav-main a:hover {
    background-color: #FFF;
    color: #313179;
    border-radius: 25px;
    padding: 12px 25px;
}

.nav-main a > span {
    margin-right: 8px;
    font-size: 22px;
}

.features {
    background-color: #FFF;
    padding: 150px 80px;
}

.feature-container {
    background-color: #FFF;
    margin-top: -200px;
    padding: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.myCard {
    background-color: #222222;
    color: #FFF;
    padding: 50px;
}

.myCard .bolichesCard {
    width: 350px;
}

.myCard-card h3 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bolder;
}

.myCard-card p {
    font-size: 13px;
    line-height: 22px;
    color: rgba(255,255,255,.57);
    margin-bottom: 25px;
}

.btn-buy {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 25px;
    border-radius: 5px;
    border: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f1e767+0,feb645+100;Yellow+3D */
    background: #f1e767; /* Old browsers */
    background: -moz-linear-gradient(top,  #f1e767 0%, #feb645 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #f1e767 0%,#feb645 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #f1e767 0%,#feb645 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=0 ); /* IE6-9 */
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all ease .4s;
}

.btn-buy:hover {
    box-shadow: 0px 5px 10px #4e4b1a;
    border-radius: 25px;
    padding: 8px 35px;
}

.join {
    background-color: #FFF;
    padding: 80px;
}

.join .btnSend {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 5px;
    border: 1px solid #313179;
    background: transparent;
    color: #313179;
    padding: 8px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 100%;
    font-weight: bolder;

    transition: all ease .4s;
}

.join .btnSend:hover {
    background: #313179;
    color: #FFF;
}

@media screen and (max-width: 990px) {
    .nav-main {
        display: none;
        text-align: center;
    }

    .main-nav .logo {
        text-align: center;
    }

    .sticky {
        position: relative !important;
    }

    .main-info {
        text-align: center !important;
        display: block;
        margin-bottom: 25px;
    }

    .infoImage {
        margin: 25px auto;
        width: 300px;
    }
}