html,
body,
#app {
    font-family: "Prompt", "Poppins", "Source Sans Pro", 
    -apple-system, BlinkMacSystemFont, "Segoe UI", 
    Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: .9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    -webkit-tap-highlight-color: transparent;
        user-select: none;
}
html {
    font-size: 90%!important;
}

@media (max-width: 375px) {
    html {
        font-size: 80%!important;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 75%!important;
    }
}
html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #141414; 
}

html::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
    background: #aaa; 
}

html::-webkit-scrollbar-corner {
    background: #141414;
}

:root {
    --primary-bg: #20232c;
    --primary-text-color: #fff;
    --primary-btn-bg: #f7584d;
    --secondary-btn-bg: #ffeb77;
    --primary-gradient-bg: linear-gradient(135deg, #ff8642, #ee2a59);
    --secondary-gradient-bg: linear-gradient(135deg, #ffeb77, #ebc700);
    --sidebar-bg: linear-gradient(180deg,#20232c,#1d2f62);
    --modal-bg: linear-gradient(180deg, #0e152c, #0e152c, #4c2876);
    --secondary-border: #fffc62;
    --backbar-bg: linear-gradient(180deg,#363a45,#212530);
    --backbar-shadow: inset 0 .3rem 0 0 #363a45,0 .2rem 0 0 rgba(0,0,0,.25);
    --tab-bg: linear-gradient(180deg,rgba(9,24,51,.5),rgba(30,60,114,.5) 33.33%,rgba(30,83,151,.5) 66.67%,rgba(150,43,177,.5));
    --bonus-active-bg: rgba(247, 88, 77, .3);
    --bonus-active-border: #f7584d;
    --game-menu-active-bg: linear-gradient(180deg,#1d2f62,#56ceff);
    --primary-border: #f7584d;
}

#app {
    background-color: #20232c;
    max-width: 450px;
    overflow-x: hidden;
    margin: 0 auto;
    height: 100dvh;
}

a {
    cursor: pointer;
}
.app_wrapper {
    width: 100%;
    display: flex;
    flex-flow: column;
    margin: 0 auto;
    background: var(--primary-bg);
    color: var(--primary-text-color);
    -webkit-tap-highlight-color: transparent;
    height: 100%;
    position: relative;
    z-index: 9999;
}
.app_wrapper ::-webkit-scrollbar-track {
    width: 1px;
    background: transparent;
}

.app_wrapper ::-webkit-scrollbar-track-piece {
    width: 1px;
    background: transparent;
}

.app_wrapper ::-webkit-scrollbar-thumb {
    width: 1px;
    background: transparent;
    border-radius: 0;
}

.app_wrapper ::-webkit-scrollbar-corner {
    background: transparent;
    width: 1px;
}
.hidden {
    display: none !important;
}
.app_wrapper ::-webkit-scrollbar {
    z-index: 999;
    width: 1px;
}
.app_header {
    width: 100%;
    position: sticky;
    top: 0;
    background: var(--primary-bg);
    z-index: 12;
}
.btn.btn-register.w-full[data-open-modal="loginModal"] a.btn_text,
.btn.btn-login.w-full[data-open-modal="registerModal"] a.btn_text {
    line-height: 1.5;
}
.app_header>.grid.grid-cols-3 {
    grid-template-columns: 10% 80% 10%;
    line-height: 2;
}
.app_body.section_bodyshare {
    display: flex;
    flex-flow: column;
    flex: 1 1 0%;
}
section#home[data-tab="home"] .section_header.app_header {
    padding-top: .5rem;
    padding-bottom: .35rem;
}
section#share {
    display: flex;
    flex-flow: column;
    z-index: 11;
    padding-bottom: 0;
}
.btn.btn-register {
    background: linear-gradient(135deg, #ff8642, #ee2a59);
    border: .3rem solid #f7584d;
    border-radius: .3rem;
}

.btn.btn-login {
    background: var(--secondary-gradient-bg);
    border: .3rem solid var(--secondary-btn-bg);
    border-radius: .3rem;
}
.header_promotion_title {
    font-weight: 400;
    font-size: 1.1rem;
}

.scrolling-text-container {
    margin-left: .25rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.btn-menu {
    font-size: 2.5rem;
    font-weight: 600;
    margin-left: .5rem;
    text-shadow: 0 0 1px #fff;
}

.header-right {
    grid-template-columns: 40% 40% 20%;
}

.app_footer {
    width: 100%;
    position: fixed;
    max-width: 450px;
    bottom: 0;
    background: rgb(45 49 61 / 53%);
    border-radius: 1.4rem 1.4rem 0 0;
    box-shadow: inset 0 1.06rem 1.09rem -1.03rem #787c86;
    -webkit-backdrop-filter: blur(.36rem);
    backdrop-filter: blur(.36rem);
    z-index: 10;
    max-height: 58px;
}
.app_body {
    position: relative !important;
    width: 100% !important;
    height: 100%;
    z-index: 10;
    overflow-y: auto;
    flex: 1;
}
.btn {
    padding-inline: .3rem;
    padding-top: .112rem;
    padding-bottom: .112rem;
    cursor: pointer;
    border-radius: .25rem;
    text-align: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    transition: transform 0.1s 
ease, filter 0.1s 
ease;
}

.btn:hover {
    filter: brightness(1.05);
}

.btn:active {
    transform: scale(0.95);
}


.btn-primary-bg {
    background: var(--primary-btn-bg);
}

.app_body-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    overflow: auto;
}

img.logo.logo_image {
    height: 50px;
    object-fit: cover;
}
/*.logo.web_logo {
    width: 10rem;
    height: 35px;
    overflow: hidden;
}
img.logo.logo_image {
    position: relative;
    top: -55px;
    left: -20px;
    object-fit: cover;
}*/
.user-balance>.user-wrap>.user-name>.username {
    font-size: .8rem;
}
.modal-overlay.normal_overlay.cashback {
    scale: .85;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ccc;
    opacity: 1;
    width: 1.65rem;
    height: .5rem;
    border-radius: 8px
}

.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: .5;
}


.homepageSwiper {
    width: 100%;
    height: 140px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: auto!important;
    top:  auto!important;
    left: auto!important;
}
.swiper-slide.swiper-slide-active {
    height: 100%;
}

img.banner-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.notice {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 2.36rem;
    background-color: rgb(21 141 127 / 76%);
    justify-content: space-between;
}
.notice_text {
    padding: 0 0 0 1.3rem;
    position: relative;
    display: flex;
    flex: 1 1 0%;
    overflow: hidden;
    font-size: .9rem;
    color: #fff;
    width: 100%;
    line-height: 1.75;
}
img.notice_bell-img {
    width: 1rem;
    margin-left: .75rem;
}
.icon {
    width: 1.35rem;
    height: 1.35rem;
}
.notice_bg {
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
}

svg.icon.notice_icon {
    margin-left: 1rem;
}

.scrolling-text-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.scrolling-text-item {
  display: inline-block;
  padding-left: 150%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.downloadwrapper {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    animation: heartBeat 1.3s linear infinite;

}
img.register_gift {
    position: absolute;
    top: .265rem;
    right: 3.15rem !important;
    width: 1.24rem;
    height: 1.24rem;
    animation: heartBeat 1s linear infinite;
}

svg.icon.download_icon {
    width: .85rem;
    height: .85rem;
}
span.text.download {
    font-size: .75rem;
}
.downloadBG {
    padding: .25rem;
    border-radius: 50%;
    background: var(--secondary-gradient-bg)
}

@keyframes heartBeat {
    0% {
    transform: scale(1);
}
14% {
    transform: scale(1.3);
}
28% {
    transform: scale(1);
}
42% {
    transform: scale(1.3);
}
70% {
    transform: scale(1);
}
}
input:focus,
input:focus-visible,
input:-webkit-focus-ring-color {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

a.gotoTabLink.active {
    color: var(--primary-btn-bg)
}
.loading_img {
    width: 100%;
    height: 100%;
}
img.loading.image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#loader {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#loader.slowlyOut {
    opacity: 0;
}
.tab.active {
    transition: .5s 
ease-in-out;
    animation: slowShow .5s;
    flex: 1;
}

.error-text {
    color: #f7584d;
}
.show-error {
    display: block !important;
}

.footer_shadow {
    box-shadow: 0 0 5px #5e5e5e5b;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

a.btn_text {
    display: flex;
    flex-wrap: nowrap;
    min-width: 4.75rem;
    font-size: .9rem;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    font-weight: 600;
}
.app_header {
    padding-top: 0.2rem;
    padding-bottom: 0.25rem;    
}

section {
    padding-bottom: 70px;
}

.section_title {
    background: var(--backbar-bg);
    font-size: 1.25rem;
    font-weight: 600;
}

.user-info {
    display: flex;
    max-width: 100%;
    height: fit-content;
    gap: .85rem;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-end;
    width: 100%;
}
.icon_user {
    position: relative;
}
span.username {
    font-size: 1rem;
}
.user-balance {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    width: 100%;
    text-align: end;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    text-shadow: 0 0 1px white;
}
span.balance {
    border: none;
    -webkit-text-fill-color: #ff8100b0;
    background: linear-gradient(#FFEE01, #ff0000);
    background-clip: text;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    filter: none;
}
.user-wrap {
    display: flex;
    text-align: center;
    width: auto;
    justify-content: center;
    gap: .25rem;
    align-items: center;
}
.user-icon {
    background: var(--secondary-gradient-bg);
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
}
#copyAlert {
    width: 100%;
    height: 100dvh;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;    
}
.copy-alert.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}
.section_custom_bg_V1.share {
    max-width: 452px;
}
.copyAlert__wrapper {
    background: #000000be;
    border-radius: 10px;
    padding: 1rem;
    padding-inline: 1.7rem;
    color: white;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    max-width: 250px;
    text-align: center;
    transition: .25s ease-in-out;
    animation: fadIn .25s ease;
}

@keyframes fadIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.copiedSuccess {
    display: flex;
    flex-wrap: wrap;
}

.successSVG>svg {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
}
.pagination-btn>i {
    font-size: 1rem !important;
}
.loading_bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    z-index: 0;
    background: #fff;
    display: block;
}

.user-name>.username {
    font-size: .9rem;
}

section .app_header {
    line-height: 2;
}
section#home .section_header.app_header {
    line-height: normal;
}
div#security-body {
    color: #000;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(#f5f5f5, #f5f5f5), linear-gradient(#ccc, #ccc) !important;
}
.security-list-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
i.fa-solid.fa-circle-exclamation {
    color: #ff2627;
}

i.security-icon {
    border: none;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(113deg, #43cbff, #9708cc);
    background-clip: text;
    display: inline-flex;
    font-size: 1.9rem;
    filter: none;
}

p.flex-list-title.flex-list-desc {
    color: #a6a6a6;
}
span.flex-list-icon {
    font-size: 1rem;
}

.security-list {
    width: 100%;
    height: 100%;
}

.security-list-item {
    width: 100%;
    height: 100%;
}
.card-list-item {
    padding: 1rem .75rem;
}
.security-list-item {
    padding: 1rem;
    border-top: 0;
    box-shadow: 0 .26rem .432rem 0 rgba(0, 0, 0, .1);
    border-radius: .25rem;
    margin-top: 1px;
    background: linear-gradient(#f5f5f5, #f5f5f5), linear-gradient(#ccc, #ccc);
}
span.flex-list-text {
    font-size: 1rem;
    font-weight: 600;
    color: #595959;
}
i.fa-solid.fa-circle-check {
    color: #00e354;
}
.security-list-item .flex {
    width: 100%;
    padding-inline: 1rem;
}
.myacc.wrapper {
    color: #000000;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    padding: 1rem .75rem;
    background: #fefefe;
}
.personal-name {
    font-size: 1rem;
    text-align: left;
    overflow-y: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 2rem;
}

input.myaccTabPhone {
    height: 100%;
}

input.myaccTabName {
    height: 100%;
}
.vc-v2-input.account-num-input.myaccTabName div.myaccTabName,
.vc-v2-input.account-num-input.myaccTabName div.myaccTabPhone
 {
    padding-left: 0.25rem;
    background: #efefef;
}
div.vc-v2-input.account-num-input .inputCon.myaccTabPhone {
    padding-left: .25rem;
    background: #efefef;
}

.account-tip .tip-title {
    color: #49a3f6;
    font-size: 1rem;
    margin-top: .5em;
}

.tip-content {
    color: #757575;
    margin-top: .5em;
}

button.submitAble.w-full.rounded-md.myaccSubmitBtn {
    line-height: 2;
    font-size: 1rem !important;
    scale: 1;
    text-align: center;
    align-items: center;
    margin-top: .5rem;
}
.account-form.n-form-content.myaccTabPhone .account-form-group.myaccTabPhone .vc-v2-input.account-num-input.myaccTabPhone .inputCon.myaccTabPhone {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    text-align: center;
    padding-inline: 1rem;
    color: #a5a5a5;
}
.app_body.section_body.cashback {
    background: #ededed;
    color: #595959;
}

.date-time-container {
    text-align: start;
    font-size: .75rem;
}
.rebateHeader, .detailsCashback {
    display: grid;
    grid-template-columns: 15% 15% 30% 25% 15%;
    width: 100%;
    align-items: baseline;
    text-align: center; 
    margin-top: .75rem;
    /*padding: .25rem .75rem .5rem;*/
    padding-top: .5rem;
    border-bottom: 1px solid #ffffff;
    padding-bottom: .5rem;
}
.rebateTime {
    text-align: start;
}

.rebateWrapper {
    padding: 1rem;
}
span.statusCashback {
    font-size: .745rem;
}
.root.rebate {
    box-shadow: 0 .26rem .432rem 0 rgba(0, 0, 0, .1);
    background: linear-gradient(#f5f5f5, #f5f5f5), linear-gradient(#ccc, #ccc);
    border-radius: .25rem;
    padding: 1rem;
}
span.statusCashback {
    color: #00e354;
    font-weight: 600;
}
section#statement .app_body.section_body {
    color: #595959;
}
.statement-wrapper {
    padding: 1rem;
    width: 100%;
    align-items: center;
    text-align: center;
    display: flex;
    flex-flow: column;
}
.rootStatement {
    width: 100%;
    padding-inline: .5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 .26rem .432rem 0 rgba(0, 0, 0, .1);
    border-radius: .25rem;
    margin-top: 1px;
    background: linear-gradient(#f5f5f5, #f5f5f5), linear-gradient(#ffffff, #ffffff);
    font-size: .85rem;
}
.statementHeaderTitle, .statementBody {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    line-height: 2;
    font-weight: 600;
}
.statementBody {
    margin-top: 1rem;
}
span.statementSpanBody.depositTotalAmt {
    color: #1ea97c;
    text-transform: capitalize;
    font-size: 1rem;
}
span.statementSpanBody.withdrawTotalAmt {
    border: none;
    -webkit-text-fill-color: #ff5555b0;
    background: linear-gradient(#ab1c5e, #ff0000);
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
    filter: none;
}
section.tab.messages.active [data-tab="messages"] {
    z-index: 99999;
    min-height: 100dvh;
    padding: 0!important;
}

.app_body.section_body.body_messages.text-\[\#333\] {
    min-height: 95dvh;
    background: #fff;
    z-index: 999;
}

section.tab.messages.active {
    min-height: calc(100dvh - 5rem);
    overflow: hidden;
    height: 100%;
}
.messages_log_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 1rem;
}
div#message {
    width: 100%;
    height: 100%;
}

.message_header {
    width: 100%;
}

.message_header_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.message_body {
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid #5959594f;
}
.message-item {
    margin-top: 1rem;
}
img.mark_read {
    width: 1.75rem;
}
button.selectAllbtn.text-\[\#000\] {
    display: flex;
    gap: .5rem;
    font-size: 1rem;
}
div#message {
    padding: 1rem;
    padding-bottom: 0;
    background: #f6f6f6;
    border-radius: 5px;
    box-shadow: 0 1px 3px #59595954;
    margin-top: 0rem;
    display: flex;
    flex-flow: column;
}
ul.winnerListUl {
    padding: 0.5rem 0;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    height: 350px;
    overflow: hidden;
    position: relative;
}
 
ul.winnerListUl .scrollInner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
img.winnertopimg {
    position: relative;
    height: 5rem;
    display: flex;
    align-items: center;
    margin: 0 auto;
}
div#winnerList {
    position: relative;
    top: 0rem;
}

li.winnerList {
    background: linear-gradient(180deg, #3b82b400, #f9e154);
    padding: 0.5rem;
    display: grid;
    grid-template-columns: 20% 20% 31% 29%;
    align-items: center;
    border-radius: 0.25rem;
    color: white;
    opacity: 0.95;
    transition: opacity 0.3s;
}

li.winnerList:hover {
    opacity: 1;
}

span.winnerUsername {
    display: flex;
    font-size: 0.75rem;
}

.winAmt {
    text-align: end;
    font-weight: bold;
}

.winnerImgWrapper {
    height: 3rem;
    width: auto;
}

.blw {
    border-left: 1px solid white;
}
.styleEff1 {
    position: fixed;
    background: #ff000057;
    width: 30rem;
    height: 30rem;
    top: 0;
    right: 50%;
    border-radius: 50%;
    filter: blur(26px)!important;
    -webkit-filter: blur(26px) !important;
}

.styleEff2 {
    position: fixed;
    background: #0043ff54;
    width: 50rem;
    height: 50rem;
    top: 0;
    left: 60%;
    border-radius: 50%;
    filter: blur(26px)!important;
    -webkit-filter: blur(26px) !important;
}
.styleEff3 {
    position: fixed;
    background: #00ff4f59;
    width: 20rem;
    height: 20rem;
    bottom: 0;
    left: 50%;
    filter: blur(26px)!important;
    -webkit-filter: blur(26px) !important;
    border-radius: 50%;
}
.styleEff4 {
    position: fixed;
    background: #fdff0057;
    width: 10rem;
    height: 10rem;
    bottom: 0;
    right: 50%;
    border-radius: 50%;
    filter: blur(26px)!important;
    -webkit-filter: blur(26px) !important;
}

.styleEff1,
.styleEff2,
.styleEff3,
.styleEff4 {
    filter: blur(80px);
    opacity: 0.8;
    animation: floatLight 18s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}


.styleEff1 {
    animation-duration: 22s;
    animation-delay: 0s;
}

.styleEff2 {
    animation-duration: 26s;
    animation-delay: -6s;
}

.styleEff3 {
    animation-duration: 20s;
    animation-delay: -10s;
}

.styleEff4 {
    animation-duration: 28s;
    animation-delay: -14s;
}
 
@keyframes floatLight {
    0% {
        transform: translate(0, 0) scale(0.8);
        filter: brightness(1.2);
    }
    25% {
        transform: translate(-40px, 30px) scale(1.1);
        
        filter: brightness(1.4);
    }
    50% {
        transform: translate(30px, -40px) scale(1.05);
        
        filter: brightness(1.6);
    }
    75% {
        transform: translate(50px, 20px) scale(1.45);
        filter: brightness(1.8);
    }
    100% {
        transform: translate(0, 0) scale(1);
        filter: brightness(2);
    }
}
li.flex.items-center.gap-2.p-2.cursor-pointer span {
    color: #000;
    font-size: 1rem;
}
.game_menu_item.py-2.game_category_active[data-game-category="Sport"] {
    height: 8rem;
}
/*img.web__logo.modal_logo_image {
    scale: 3;
}*/
.btn_login.cursor-pointer span {
    font-size: 1.1rem;
}
button#nextbtn__step_deposit {
    display: block !important;
}
.bonus_deposit.selected {
    filter: none;
    border: 1px solid red !important;
}
.descriptionAndGet {
    border: 2px solid gray;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 7px 10px;
}
button.ktt10-btn {
    background: url(chat.png) !important;
    background-size: 80% 80% !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    z-index: 9999999999 !important;
    filter: drop-shadow(0 0 5px rgba(255, 94, 98, 0.7)) brightness(1.02) !important;
    animation: 0.5s updown ease-in-out infinite;
}

@keyframes updown {
  0% {
    transform: translateY(4px);  
    scale: 0.95
  }

  50% {
    transform: translateY(0px); 
    scale: 1.05
  }

  100% {
    transform: translateY(4px); 
    scale: 0.98
  }
}
section#home {
    padding-bottom: 0;
}
.ktt10-btn img {
    display: none;
}
div#mc-header {
    max-width: 450px;
}