/* Common css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
select,
input,
option,
textarea,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

a {
    color: #000000;
}

a:hover,
a:focus {
    color: var(--primary);
    text-decoration: none;
}

/* End Clearfix */

*,
a,
button,
.btn {
    outline: none !important;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    text-decoration: none !important;
}

:host {
    display: block;
}

:root {
    --primary: #FFCD40;
    --secondary: #272622;
    --light-primary: #FFF2D4;
    --green-bg: #259823;
}

.bg-yellow {
    background-color: var(--primary);
}

.bg-green {
    background-color: var(--green-bg);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Mulish';
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    background-color: #fff;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

.hyper-buttons {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary) !important;
    border-radius: 10px;
    padding: 10px 15px !important;
    display: block;
    width: max-content;
}


.header-main.sticky-header a.hyper-buttons span {
    display: none;
}

.header-main.sticky-header a.hyper-buttons img {
    margin-right: 0 !important;
}

.hyper-buttons:hover,
.hyper-buttons.active {
    background-color: var(--primary);
}

.plr {
    padding-left: 150px;
    padding-right: 150px;
}

.pt {
    padding-top: 150px;
}

.mtb-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.title-common {
    max-width: 1126px;
    margin: 0 auto;
}

.title-common h2 {
    font-size: 100px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 116px;
    margin: 30px 0;
}

.title-common h2 span {
    color: #1da341;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 5.75rem);
    padding-left: var(--bs-gutter-x, 5.75rem);
    margin-right: auto;
    margin-left: auto;
}


/* ============================ */



/* Navbar Css */

.header-main {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 99999;
    transition: 0.5s;
}

.nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary) !important;
    border-radius: 50px;
    padding: 5px 25px !important;
}

.nav-link.active {
    font-weight: 700;
}

.header-cover .navbar ul.navbar-nav {
    background: #fbd0533d;
    border-radius: 50px;
    padding: 5px 7px;
}

.nav-item .nav-link.active {
    background-color: var(--primary);
}

.nav-item .nav-link:hover {
    background-color: var(--primary);
}

.header-main.sticky-header {
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    border-radius: 50px;
    box-shadow: 0px 5px 0px #fbd053;
    background-image: linear-gradient(270deg, #ffebb2, #FFFFFF);
    transition: 0.5s;
}

.header-main.sticky-header a.nav-link {
    font-size: 22px;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
    padding: 0;
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background: #fff;
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 4px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.navbar-toggler span:nth-child(1) {
    width: 16px;
}

.navbar-toggler:hover span:nth-child(1) {
    width: 25px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    -ms-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler span {
    background: #00a649;
    background-image: none;
}

.header-cover .offcanvas {
    background-color: var(--secondary);
}

.header-cover .offcanvas a.nav-link {
    font-size: 18px;
    border-bottom: 1px solid #fbd053;
    color: #fbd053 !important;
    padding: 10px 10px !important;
    text-align: center;
    margin-bottom: 15px;
}

.header-cover .offcanvas .menu-btn {
    justify-content: center;
}

/* ====================================== */


/* Banner Section */

.banner-cover {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-cover::before {
    content: "";
    position: absolute;
    top: -320px;
    left: -150px;
    height: 270px;
    width: 500px;
    border-radius: 50%;
    box-shadow: 0px 200px 200px 200px rgb(255 255 255 / 90%);
    z-index: 999;
}

/* .banner-main {
    padding-top: 150px;
} */

.banner-content {
    position: relative;
    border-radius: 12px;
    z-index: 999;
    margin-top: 70px;
}

.live-price {
    color: #FF0000;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.live-price span {
    color: var(--secondary);
    margin-right: 2px;
}

.banner-content h2 {
    font-size: 65px;
    font-weight: 900;
    margin: 0 0 15px;
    line-height: 1.4;
}

.banner-content h2 span {
    color: #1da341;
}

.banner-content p {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 60px;
    line-height: 29px;
}

.banner-image img {
    border-radius: 40px;
    width: 555px;
    height: 531px;
    object-fit: contain;
}

.banner-cover .banner-curv-image {
    position: absolute;
    /* top: 0; */
    top: -225px;
    left: 0;
    z-index: -1;
}

.banner-cover .banner-rotate-img {
    position: absolute;
    top: -100px;
    left: -300px;
    transform: translate(-50%, -50%);
    animation: animName 10s linear infinite;
}

.swiper.mySwiper1 {
    position: relative;
}

.swiper.mySwiper1 .swiper-pagination {
    position: static;
}

@keyframes animName {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner-star-vactor {
    position: absolute;
    left: 40%;
    top: 75%;
    transform: translate(-50%, -50%);
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.banner-star-vactor2 {
    position: absolute;
    left: 90px;
    bottom: 70px;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.user-animate {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.swiper-pagination-bullet-active {
    background: #ffcd40 !important;
    width: 25px;
    border-radius: 6px;
}

.swiper-wrapper {
    text-align: right;
}

.swiper.mySwiper2 {
    position: relative;
}

.swiper.mySwiper2 .swiper-pagination {
    position: static;
}

.swiper.mySwiper3 {
    position: relative;
}

.swiper.mySwiper3 .swiper-pagination {
    position: static;
}

/* ================================================ */


/* Growth Mony */

.growmony-cover .growmony-contents {
    border: 1px solid #FFCD40;
    border-radius: 20px;
    height: 100%;
    padding: 20px;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.growmony-contents::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #259823;
    border-radius: 20px;
    transition: 0.5s;
    z-index: -1;
}

.growmony-cover .growmony-contents h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    color: var(--secondary);
}

.growmony-cover .growmony-contents p {
    font-size: 16px;
    font-weight: 500;
    margin: 15px auto;
    max-width: 255px;
    color: var(--secondary) #272622;
    height: 50PX;
}

.growmony-cover .growmony-contents:hover.growmony-contents::before {
    width: 100%;
}

.growmony-cover .growmony-contents:hover {
    z-index: 1;
}

.growmony-cover .growmony-contents:hover.growmony-contents h2 {
    color: #fff;
}

.growmony-cover .growmony-contents:hover.growmony-contents p {
    color: #fff;
}

.growmony-cover .growmony-contents:hover img {
    filter: brightness(4.5);
}

.growmony-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grow-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    white-space: nowrap;
    padding: 0;
    text-decoration: none;
    margin-top: 10px;
}

.grow-link span {
    opacity: 0;
    margin-left: 0;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.grow-link i {
    opacity: 1;
    transition: all 0.4s ease;
    color: #000;
    margin-left: -55px;
    font-size: 18px;
}

.growmony-contents:hover .grow-link i {
    color: #fff;
}

.growmony-contents:hover .grow-link {
    width: 140px;
    border-radius: 25px;
    justify-content: center;
    padding: 0 20px;
}

.growmony-contents:hover .grow-link span {
    opacity: 1;
    margin-left: 10px;
}

.growmony-contents:hover .grow-link i {
    margin-left: 10px;
}


/* ============================================== */

/* Growth Form */

.investment-growth-main {
    background-image: url(../images/bg-style3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 45px 0;
}

.growth-content-cover h2 {
    font-size: 70px;
    font-weight: 900;
    color: var(--secondary);
}

.growth-content-cover h2 span {
    display: block;
    color: #8B690B;
}

a.qr-code {
    position: absolute;
    right: 170px;
    bottom: -110px;
}

#scroll-image {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 170px;
    height: 140px;
    object-fit: contain;
    display: none;
    z-index: 1000;
}

.mobile-cover {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phones-section-main {
    margin-top: 80px;
}

/* =============================================== */


/* Mobile Contents */

.contents-box {
    border-radius: 20px;
    padding: 45px;
    width: 239px;
    height: 264px;
}

.contents-box span {
    font-size: 20px;
    font-weight: 700;
}

.contents-box h3 {
    font-size: 44px;
    font-weight: 900;
}

.top-left {
    transform: translateX(350px);
    transition: transform 0.8s ease, opacity 0.8s ease;

}

.top-right {
    transform: translateX(-395px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.left-bottom {
    transform: translateX(350px);
    transition: transform 0.8s ease, opacity 0.8s ease;

}

.right-bottom {
    transform: translateX(-395px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.content-show.show {
    opacity: 1;
    transform: translateX(0);
}

/* ======================================== */


/* Save More Future */

.save-more-plan-cover {
    border-radius: 20px;
    overflow: hidden;
}

.save-more-plan-cover span {
    font-size: 27px;
    font-weight: 800;
    background-color: var(--primary);
    display: block;
    padding: 20px;
}

/* ============================================== */


/* Partner Section */

.partner-title {
    max-width: 855px;
    margin: 0 auto;
    text-align: center;
}

.partner-title h2 {
    font-size: 50px;
    font-weight: 800;
    color: #7F7F7F;
}

.partner-title h2 span {
    color: #000;
}

.partner-cover {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}

.partner-cover ul {
    --transition-timing: 20s;
    display: flex;
    animation: ticker-left var(--transition-timing) linear infinite;
    width: max-content;
}

.partner-cover li {
    padding: 0 2rem;
    /* spacing between items */
    white-space: nowrap;
}

.partner-cover li h2 {
    color: #000;
}

@keyframes ticker-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ====================================== */



/* Mobile Image */

.mobile-cover .left {
    transform: translateX(400px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.mobile-cover .right {
    transform: translateX(-395px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.mobile-cover .image.show {
    opacity: 1;
    transform: translateX(0);
}

.mobile-cover img.image.middle {
    position: relative;
    z-index: 999;
}

/* ======================================= */


/* Animation delay for variety */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

.delay-6 {
    animation-delay: 1.2s;
}

.delay-7 {
    animation-delay: 1.4s;
}

/* ======================================= */


/* Footer */

.footerlink-cover p {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
}

.footerlink-cover h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-bg);
}

.footerlink-cover a {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
}

.footerlink-cover a:hover {
    color: var(--green-bg);
}

.footerlink-cover ul.social-icons li a {
    border: 1px solid #27262233;
    margin-right: 15px;
    border-radius: 4px;
    padding: 2px;
    display: block;
    height: 35px;
    width: 35px;
    text-align: center;
}

.footerlink-cover ul.social-icons li a:hover {
    background-color: var(--green-bg);
}

.copyright {
    border-top: 1px solid #251911;
    padding: 10px 0;
    margin-top: 35px;
}

.copyright p {
    font-size: 12px;
    font-weight: 400;
}

.follow-user-main {
    background-image: url(../images/bg-style2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 45px 0;
}

.footer-main {
    padding: 50px 0 30px;
}

.user-title h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 10px;
}

.user-title p {
    font-size: 24px;
    font-weight: 500;
}

.footerlink-cover a.appstore-btn img {
    width: 230px;
    height: auto;
    object-fit: contain;
}

/* ====================================== */



/* Sub Banner */

.subpages-banner-cover {
    background-image: url(../images/bg-style4.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 165px 0;
    background-position: center;
    width: 100%;
}

.subpages-banner-cover h2 {
    font-size: 50px;
    font-weight: 900;
}

.subpages-banner-cover h2 span {
    color: var(--green-bg);
}

.subpages-banner-cover p {
    font-size: 20px;
    font-weight: 500;
    max-width: 445px;
    margin: 0 auto;
}

/* ======================================= */

/* Vision-mission */

.vision-mission-cover h4 {
    font-size: 30px;
    font-weight: 800;
}

.vision-mission-cover p {
    font-size: 20px;
    font-weight: 500;
}

/* ========================================== */

/* Team */

.our-team-main {
    background-image: url(../images/bg-style3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 15px 0;
}

.team-cover img {
    width: 343px;
    height: 383px;
    object-fit: contain;
}

.team-cover h5 {
    font-size: 28px;
    font-weight: 800;
    color: var(--green-bg);
    margin: 10px 0;
}

.team-cover span {
    font-size: 20px;
    font-weight: 700;
    color: #8B690B;
}

.team-cover span {
    font-size: 20px;
    font-weight: 500;
}

/* =========================================== */

/* Privacy */

.privacy-contents h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-contents p {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
}

/* =========================================== */

/* Contact */
.contact-main {
    padding: 130px 0 60px;
}

.contact-details-cover .contact-title h3 {
    font-size: 50px;
    font-weight: 900;
}

.contact-details-cover .contact-title p {
    font-size: 16px;
    font-weight: 500;
}

.border-line {
    border: 1px solid #d4d4d3;
    margin: 20px 0;
}

.contact-info ul li span {
    font-size: 16px;
    font-weight: 700;
}

.contact-info ul li p {
    font-size: 16px;
    font-weight: 400;
}

.contact-form h2 {
    font-size: 30px;
    font-weight: 800;
    color: #8B690B;
}

.contact-form label {
    font-size: 16px;
    font-weight: 600;
}

.contact-form {
    background-color: #fffaed;
    border-radius: 40px;
    padding: 40px;
}

.form-control:focus {
    border-color: #fbd053;
    box-shadow: none;
}

.form-control {
    border-radius: 10px;
}

.contact-form button {
    background-color: #fbd053;
    color: #000;
    border-color: #fbd053;
    border-radius: 10px;
    padding: 5px 30px;
}

.contact-form button:hover {
    background-color: #fbd053;
    color: #000;
    border-color: #fbd053;
}

.btn-primary:focus {
    box-shadow: none;
}

.btn-primary:active:focus {
    box-shadow: none;
}

/* ============================================= */


/* Faq */

.accordion-button::after {
    content: '+';
    font-size: 1.25rem;
    color: #000;
    transform: none;
    background-image: none;
    font-size: 30px;
    line-height: 15px;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    background-image: none;
    transform: none;
}

.accordion-button:focus {
    border-color: #fbd053;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    padding: 0 20px 15px;
    color: var(--secondary);
}

.faq-cover .accordion-item {
    margin-bottom: 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .125);
    overflow: hidden;
    padding: 15px 0;
    background-image: linear-gradient(360deg, #ffe6a17a, #FFFFFF);
}

.accordion-body {
    padding: 0 20px;
}

.accordion-button {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    padding: 10px 20px;
    background-color: transparent;
}

.accordion-body p {
    font-size: 16px;
    font-weight: 500;
}

/* Faq End */




/* Media */

@media (max-width: 1440px) {
    .banner-cover .banner-curv-image {
        top: -80px;
    }

    .banner-main {
        padding-top: 100px;
    }
}

@media (max-width: 1366px) {
    .banner-main {
        padding-top: 100px;
    }

    .banner-cover .banner-curv-image {
        top: -143px;
    }

    .banner-content h2 {
        font-size: 45px;
    }

    .title-common h2 {
        font-size: 60px;
        line-height: 75px;
    }

    #scroll-image {
        bottom: 80px;
        width: 140px;
        height: 140px;
    }

    .header-main.sticky-header a.nav-link {
        font-size: 18px;
    }

    .nav-item .nav-link {
        padding: 5px 15px !important;
    }

}

@media (max-width: 1200px) {
    .hyper-buttons span {
        display: none;
    }

    .hyper-buttons img {
        margin-right: 0 !important;
    }

    .nav-item .nav-link {
        padding: 5px 20px !important;
    }
}

@media (max-width: 1199px) {
    .nav-item .nav-link {
        font-size: 14px;
        padding: 5px 10px !important;
    }

    .left {
        width: 200px;
    }

    .right {
        width: 200px;
    }

    .banner-cover .banner-curv-image {
        top: 60px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }

    #scroll-image {
        bottom: 20px;
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 991px) {
    .banner-cover .banner-curv-image {
        display: none;
    }

    .banner-cover {
        height: auto;
    }

    .title-common h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .growmony-cover .growmony-contents {
        height: auto;
        margin-bottom: 15px;
        padding: 15px;
    }

    .contents-box {
        border-radius: 20px;
        padding: 15px;
        width: 150px;
        height: auto;
    }

    .contents-box h3 {
        font-size: 22px;
    }

    .contents-box span {
        font-size: 16px;
        font-weight: 400;
    }

    .mobile-cover img.image.middle {
        width: 345px;
    }

    .partner-title h2 {
        font-size: 30px;
    }

    .growth-content-cover h2 {
        font-size: 35px;
    }

    .save-more-plan-cover span {
        font-size: 20px;
    }

    .footerlink-cover {
        margin-bottom: 30px;
    }

    .mtb-100 {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .growth-content-cover {
        margin-top: 30px;
        text-align: center;
    }

    .banner-content {
        margin-bottom: 30px;
        margin-top: 0;
    }

    a.qr-code {
        display: none;
    }

    .banner-image img {
        height: 100%;
    }

    .user-contents ul li {
        margin: 10px 5px;
    }

    .header-main::before {
        display: none;
    }

    .banner-cover .banner-rotate-img {
        display: none;
    }

    .footer-main {
        padding: 30px 0 0px;
    }

    .copyright {
        margin-top: 0px;
    }

    .team-cover {
        margin-bottom: 30px;
    }

    .company-value-main .growmony-contents {
        height: 100%;
        margin-bottom: 15px;
        padding: 15px;
    }

    .header-main.sticky-header {
        transform: none !important;
        backdrop-filter: none !important;
        border-radius: 0 0 50px 50px;
    }

    .header-cover .offcanvas .menu-btn a.appstore-btn {
        display: none !important;
    }

    .hyper-buttons span {
        display: block;
    }

    .hyper-buttons img {
        margin-right: 10px !important;
    }
}

@media (max-width: 767px) {
    .title-common h2 {
        font-size: 37px;
        line-height: 50px;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 100%;
        padding-right: var(--bs-gutter-x, 1.75rem);
        padding-left: var(--bs-gutter-x, 1.75rem);
        margin-right: auto;
        margin-left: auto;
    }

    .banner-content {
        text-align: center;
    }

    .live-price {
        justify-content: center;
    }

    .hyper-buttons {
        margin: 0 auto;
    }

    .mobile-cover {
        justify-content: space-around;
    }

    .phones-section-main {
        margin-top: 80px;
        display: block !important;
    }

    .mobile-cover .top-right {
        transform: none;
    }

    .mobile-cover .right-bottom {
        transform: none;
    }

    .mobile-cover .top-left {
        transform: none;
    }

    .mobile-cover .left-bottom {
        transform: none;
    }

    .mobile-cover .right {
        transform: none;
    }

    .mobile-cover .left {
        transform: none;
    }

    .contents-box {
        width: 230px;
        height: auto;
    }

    .vision-mission-cover p {
        font-size: 14px;
        font-weight: 500;
    }

    .accordion-button {
        font-size: 18px;
    }

    .subpages-banner-cover {
        padding: 130px 0;
    }

    .left {
        width: 120px;
    }

    .mobile-cover img.image.middle {
        width: 200px;
    }

    .mobile-gold {
        display: none;
    }

    .mobile-cover img.image.middle {
        width: 180px;
    }

    .mobile-cover .right {
        width: 140px;
    }

    .left {
        width: 140px;
    }

    .display-app1 {
        display: none !important;
    }

    .display-app2 {
        display: block !important;
    }

    .display-app2 img {
        width: 330px;
        height: 600px;
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .mobile-cover .right {
        width: 120px;
    }

    .mobile-cover {
        flex-direction: row;
    }

    .growth-content-cover h2 {
        font-size: 26px;
    }

    .banner-content h2 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .user-title h2 {
        font-size: 28px;
    }

    .user-title p {
        font-size: 18px;
    }

    .contents-box {
        width: 130px;
    }

    .phones-section-main {
        margin-top: 0px;
    }

    .company-value-main .growmony-contents {
        height: auto;
    }

    .subpages-banner-cover h2 {
        font-size: 35px;
    }

    .subpages-banner-cover p {
        font-size: 16px;
    }

    .privacy-contents h3 {
        font-size: 24px;
    }



}

@media (max-width: 360px) {}