@font-face {
    font-family: 'Be Vietnam Pro';
    font-weight: 300;
    src: url('/fonts/BeVietnamPro-Light.woff2') format('woff2'),
        url('/fonts/BeVietnamPro-Light.woff') format('woff');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-weight: 400;
    src: url('/fonts/BeVietnamPro-Regular.woff2') format('woff2'),
        url('/fonts/BeVietnamPro-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-weight: 500;
    src: url('/fonts/BeVietnamPro-Medium.woff2') format('woff2'),
        url('/fonts/BeVietnamPro-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-weight: 600;
    src: url('/fonts/BeVietnamPro-SemiBold.woff2') format('woff2'),
        url('/fonts/BeVietnamPro-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-weight: 700;
    src: url('/fonts/BeVietnamPro-Bold.woff2') format('woff2'),
        url('/fonts/BeVietnamPro-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-weight: 800;
    src: url('/fonts/BeVietnamPro-ExtraBold.woff2') format('woff2'),
        url('/fonts/BeVietnamPro-ExtraBold.woff') format('woff');
}

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

/* canvas {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    position: fixed;
} */

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    color: #4B4B4B;
    overflow-x: hidden;
}

#btn-back-to-top {
    position: fixed;
    bottom: 50px;
    right: 60px;
    display: none;
    background: #ff7bab;
    color: #fff;
    border-radius: 50PX;
    z-index: 999;
    animation: btn 1200ms linear infinite;
}

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

    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(18px);
    }

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

#btn-back-to-top:hover {
    background: #FFFFFF;
    border: 2.1px solid #ff7bab;
    color: #ff7bab;
    transition: all .1s ease-in;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ff7bab;
    border-radius: 50px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #f892b7;
}


section {
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

ul>li {
    list-style: none;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    cursor: pointer;
}

a:hover {
    color: #fff;
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    padding: 0.7rem;
}

p {
    padding: 0.7rem;
}

.section-bg {
    /* background: linear-gradient(277.57deg, #6766FF 0%, #5CA1FF 100%); */
    background: linear-gradient(0deg, rgba(255, 123, 171, 0.80) 0%, rgba(255, 123, 171, 0.80) 100%), linear-gradient(90deg, #FF1C89 0%, #FC61AB 100%);
}

.nav-link:focus,
.nav-link:hover {
    color: white;
}

/* header section */
header {
    position: sticky;
    text-align: center;
    /* background: #6245F5; */
    background: linear-gradient(0deg, rgba(255, 123, 171, 0.80) 0%, rgba(255, 123, 171, 0.80) 100%), linear-gradient(90deg, #FF1C89 0%, #FC61AB 100%);
}

.nav-logo img {
    width: 60px;
}

.nav-logo a {
    font-size: 18px;
}

.navigation>a {
    font-size: 18px;
}

.nav-btn {
    display: none;
    /* width: 100px; */
}

.nav-btn a {
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    transition: .1s ease;
    border: 2px solid #fff;
    background: #fff;
    color: #1E3354;
}

.navigation>a:hover {
    /* color: #00FF4D; */
    /* border-bottom: 2px solid #00FF4D; */
    /* padding-bottom: 6px; */
    transform: scale(1.190);
    transition: .1s ease;
}

/* Main Home Section */
.banner-section {
    /* background: #6245F5; */
    background: linear-gradient(0deg, rgba(255, 123, 171, 0.80) 0%, rgba(255, 123, 171, 0.80) 100%), linear-gradient(90deg, #FF1C89 0%, #FC61AB 100%);
    height: 78vh;
}

.home-content {
    color: #fff;
}

.home-content,
.app-logo {
    margin-top: 150px;
}

.home-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: #7D003D;
}

.home-content p:nth-child(3) {
    font-size: 18px;
    font-weight: 400;
}

.home-content p:nth-child(2) {
    font-size: 24px;
    z-index: -10;
    font-weight: 600;
}

.play-img {
    margin-top: 70px;
    display: inline-block;
}

.play-img img {
    width: 210px;
}

.app-thumb {
    z-index: 10;
}


.app-thumb .thumb-2 {
    position: absolute;
    right: 190px;
    top: 35%;
    animation: horse 2s linear infinite;
}


@keyframes horse {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/* Banner section */
.banner-img {
    opacity: 1;
}

.keyboard_img {
    z-index: -1;
}


/* description Section */
.desc-heading h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 49px;
    line-height: 60px;
    text-transform: capitalize;
    color: #7D003D;

}

.desc-heading p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    text-transform: capitalize;
    color: #fff;
}

.box {
    content: "";
    position: absolute;
    width: 430.95px;
    height: 250px;
    right: -70px;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transform: rotate(38.59deg);
}

.box2 {
    content: "";
    position: absolute;
    width: 430.95px;
    height: 250px;
    right: -255px;
    top: 22px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transform: rotate(38.59deg);
}


/* Emoji Section */
.emoji-title h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;
    /* identical to box height, or 100% */
    text-transform: capitalize;
    color: #7D003D;
}

.emoji-title p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    /* or 160% */
    text-align: center;
    text-transform: capitalize;
    color: #7588A7;
    padding: 20px;
}


/* why section   */
.why-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 46px;
    line-height: 50px;
    /* or 109% */
    text-transform: capitalize;
    color: #7D003D;
    width: 80%;
}

.why-content h1 span {
    color: #FF1C89;
}

.why-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    /* or 160% */
    text-transform: capitalize;
    color: #7588A7;
}


/* feature Section */
.feature-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 60px;
    text-transform: capitalize;
    color: #7D003D;
    margin-bottom: 4rem;
}


.tab_bar {
    /* min-width: 510px;
    padding: 8px 15px; */
    margin: 0px 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    /* display: inline-block; */
}

.nav-link {
    color: #7D003D;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #7D003D;
    background: rgba(255, 255, 255, 0.30) !important;
}

.tab {
    /* padding: 12px 47px; */
    cursor: pointer;
}

/* 
.panel {
    display: none;
    animation: fadein .6s;
} */

/* .tab_bar .nav-pill {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 10px;
    text-align: center;
} */

.tab_bar ul>li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 0 10px 0 10px; */
    font-size: 20px;
}

.active {
    /* background: rgba(255, 255, 255, 0.3) !important; */
    border-radius: 5px;
    /* padding: 12px 45px 12px 45px; */
}

.feature-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    color: #7D003D;
}

.panel h4 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    color: #7D003D;
}

.panel p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    color: #7D003D;
}



/* Font & symbol section */
.font-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 55px;
    /* identical to box height, or 100% */
    text-transform: capitalize;
    color: #1E3354;
}

.font-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    /* or 160% */
    text-transform: capitalize;
    color: #7588A7;
}

.font-img-section img:nth-child(2) {
    content: "";
    position: absolute;
    right: 18.8%;
    bottom: 35%;
}

.font-img-section img:nth-child(3) {
    content: "";
    position: absolute;
    right: 21%;
    bottom: 8%;
    animation: ball2 2s linear infinite;
}

.font-img-section img:nth-child(4) {
    content: "";
    position: absolute;
    right: 41.5%;
    bottom: 15%;
    animation: font 2s linear infinite;


}

@keyframes ball2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(25px);
        transform: translateX(25px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes font {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.radio {
    display: none;
}

/* community Section */
.community-section {
    background: linear-gradient(113.66deg, #FFA0AB -14.91%, #FFC3A0 159.53%);
}

.community-banner img,
.emoji-banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.community-title h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    /* identical to box height, or 100% */
    text-transform: capitalize;
    color: #92382D;
}

.community-title p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    /* line-height: 29px; */
    text-align: center;
    text-transform: capitalize;
    color: #92382D;
}


/* DIY key Section */
.DIY-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
    /* identical to box height, or 100% */
    text-transform: capitalize;
    color: #1E3354;
}

.DIY-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    /* or 160% */
    color: #7588A7;
}

.DIY-shape img:nth-child(1) {
    position: absolute;
    top: 14%;
    right: 41%;
    animation: DIY-1 2s linear infinite;
}

.DIY-shape img:nth-child(2) {
    position: absolute;
    top: 37%;
    right: 17.9%;
    animation: DIY-2 2s linear infinite;
}

.DIY-shape img:nth-child(3) {
    position: absolute;
    top: 43.2%;
    right: 38.5%;
    animation: DIY-3 2s linear infinite;
}

@keyframes DIY-1 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes DIY-2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes DIY-3 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(25px);
        transform: translateX(25px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Kamoji key Section */
.kamoji-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 75px;
    /* identical to box height, or 100% */
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.kamoji-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    /* or 160% */
    text-transform: capitalize;
    color: #FFFFFF;
}

.kamoji-bg {
    position: absolute;
    right: 100px;
    bottom: 0;
}

.kamoji-text {
    position: absolute;
    top: 0;
    right: 0;
}


/* Video section */
.video-title img {
    width: 130px;
}

.video-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    /* identical to box height */
    color: #FFFFFF;
}

.video-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    color: #FFFFFF;
}

.video_section::before {
    content: "";
    position: absolute;
    background-image: url(/images/Ellipse.png);
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    top: -80px;
    z-index: -10;
}

.video_btn {
    width: 100%;
    height: 150px;
    /* background: #6D51FF; */
    border: 8px solid white;
    border-radius: 20px;
    box-shadow: 0px 8px 19px rgba(44, 31, 112, 0.16);
}

.video_btn iframe {
    border-radius: 15px;
}

.plant-img img {
    width: 60px;
}

.plant-img2 img {
    width: 100px;
}

.shapes img:nth-child(1) {
    position: absolute;
    top: 110px;
    left: 100px;
}

.shapes img:nth-child(2) {
    position: absolute;
    top: 45%;
    left: 22%;
}

.shapes img:nth-child(3) {
    position: absolute;
    top: 3%;
    left: 22%;
}

.shapes img:nth-child(4) {
    position: absolute;
    top: 11%;
    right: 21%;
    width: 300px;
    z-index: -1;
    /* animation: spinoffPulse 6s linear infinite; */
}

/* @keyframes spinoffPulse {
    0% {
        transform: rotate(0deg);
    }

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

.shapes img:nth-child(5) {
    position: absolute;
    top: 33%;
    right: 3%;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 0;
}

.dots img:nth-child(2) {
    position: absolute;
    bottom: 120px;
    right: 0;
}


/* Technology Section */
.tech-bg {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
}

.tech-title h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
    text-transform: capitalize;
    color: #1E3354;
    padding-top: 40px;
}

.tech-title p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    /* identical to box height, or 160% */
    text-transform: capitalize;
    color: #7588A7;
}

.card img {
    width: 90px;
}

.card {
    width: 200px;
    min-height: 150px;
    /* margin-left: auto;
    margin-right: auto; */
    box-shadow: 0px 3.89669px 10.3912px rgba(0, 0, 0, 0.15);
    border-radius: 22.7307px;
    border: 2px solid transparent;
}

.card:hover {
    border: 2px solid #ff7bab;
    /* transform: scale(1.5); */
}

.card .content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.card p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 19.4835px;
    /* line-height: 36px; */
    text-transform: capitalize;
    color: #1E3354;
    transition: 0.10s ease;

    /* margin-top: 15px; */
}

.cards>* {
    margin: 1.4rem 1.4rem;
}

.cards {
    /* width: 100%; */
    /* max-width: 800px; */
    /* margin: 1rem 1rem; */
    /* display: grid; */
    /* grid-gap: 1rem; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
}

/* Screen larger than 600px? 2 column */
@media (min-width: 426px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 778px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Screen larger than 900px? 3 columns */
@media (min-width: 1024px) {
    .cards {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Footer section */

.footer-logo img {
    width: 120px;
}

.footer-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: #1E3354;
}

.contact-us {
    margin: 100px 0;
}

.contact-us h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 64px;
    color: #1E3354;
    margin-top: -80px;
    text-align: start;
}

.contact-us p {
    text-align: start;
    margin-top: -35px;
}

.contact-us a {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #1E3354;

}


.social-img img {
    width: 200px;
}

.social p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    color: #000000;
    margin-bottom: 0;
}



/* Social Icons */
.effect .buttons {
    /* margin-top: 50px; */
    display: flex;
    justify-content: center;
}

.effect {
    display: flex;
    align-items: center;
    justify-content: center;
}


.effect a {
    text-decoration: none !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 25px;
    overflow: hidden;
    position: relative;
    /* color: #212121; */
    background-color: #1E3354;
    border: 2px solid #212121;
    transition: all 0.2s linear 0s;
}

.effect a i {
    position: relative;
    z-index: 3;
}

.effect a:last-child {
    margin-right: 0px;
}

.effect a:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.effect a i {
    display: inline-block;
    vertical-align: middle;
}

/* solanio effect */
.effect.solanio a {
    /* border: none; */
    overflow: visible;
    color: #FFFFFF;
}

/* .effect.solanio a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 2px solid #1E3354;
    border-radius: 50%;
    transition: all 0.2s linear 0s;
} */

.effect.solanio a:hover {
    /* height: 0px;
    top: 100%; */
    background-color: transparent;
    color: #1E3354;
}

/* copyright section */
.copyright {
    background: #FFFFFF;
}

.copyright span {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: #7588A7;
}



/* App counter section  */
.user-img img {
    width: 75px;
}

.user-content span {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
    /* identical to box height */
    text-transform: capitalize;
    color: #7D003D;
}

.user-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    color: #FE3294;
    padding: 0;
}

.community-banner img {
    width: 800px;
}


@media (max-width:428px) {
    .home-content h1 {
        font-size: 35px;
    }

    .home-content p:nth-child(2) {
        font-size: 16px;
        font-weight: 400;
    }

    .home-content p:nth-child(3) {
        padding: 1rem;
        font-size: 12px;
        font-weight: 300;
    }

    .font-img-section img:nth-child(2) {
        left: 0;
        top: 65%;
    }

    .font-img-section img:nth-child(3) {
        top: 75%;
        left: 65%;
    }

    .font-img-section img:nth-child(4) {
        top: 86%;
        left: 0;
    }

    .nav-logo img {
        width: 45px;
    }

    .nav-logo a {
        font-size: medium;
    }

    .tab_bar {
        /* min-width: 340px; */
        /* padding: 8px 5px; */
    }

    .tab {
        /* padding: 8px 22px; */
    }

    .feature-content h1 {
        margin-bottom: 3rem;
    }
}

@media (max-width:778px) {
    .navigation {
        display: none !important;
    }

    .nav-btn {
        display: block;
    }

    .home-content,
    .app-logo {
        margin-top: 10px !important;
    }

    .home-content h1,
    .home-content p,
    .play-img,
    .app-logo {
        text-align: center;
    }

    .app-logo {
        width: 100px;
    }

    .kamoji-content::after {
        display: none;
    }

    .app-thumb .thumb-2 {
        display: none;
    }

    .play-img {
        margin-top: 5px;
    }

    .play-img img {
        width: 150px;
    }

    #btn-back-to-top {
        bottom: 20px;
        right: 20px;
    }

    .video_btn {
        height: 400px;
    }
}


@media (max-width:1024px) {

    .box,
    .box2 {
        display: none;
    }

    .plant-img,
    .plant-img2 {
        display: none;
    }

    .banner-section {
        height: auto;
    }

    .contact-us {
        margin: 0 0;
    }

    .contact-us h1 {
        font-size: 30px;
        margin-bottom: -25px;
    }

    .contact-us p {
        font-size: 16px;
    }

    .contact-us h1,
    .contact-us p {
        text-align: center;
        margin-top: 0;
    }

    .home-content,
    .app-logo {
        margin-top: 0;
    }

    .copyright span {
        font-size: 14px;
    }

    .emoji-banner img {
        width: 700px;
    }

    /* .community-banner img{
        width: 700px;
    } */
    .thumb img {
        width: 400px;
    }
}


@media (max-width:1200px) {

    .kamoji-text,
    .kamoji-bg,
    .tech-bg,
    .shapes {
        display: none;
    }

}

@media (min-width: 1024px) {
    .video_btn {
        height: 488px;
    }
}

@media (min-width: 2200px) {
    .banner-section {
        height: 83vh;
    }
}

@media (min-width: 1800px) and (max-width: 2200px) {
    .banner-section {
        height: 83vh;
    }
}

/* @media (min-width:2000px) {
    .banner-section {
        height: 83vh;
    }
} */

@media (max-width:1600px) {
    .dots {
        display: none;
    }
}

@media (max-width:1800px) {
    .app-thumb .thumb-2 {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1600px) {
    .home-content {
        margin-top: 100px;
    }
}


/* About us page  */

.about-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 60px;
    line-height: 55px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.about-content h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    color: #FFFFFF;
    padding-bottom: 0;
}

.about-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #E2E1E1;
}

.explore-sec h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    text-transform: capitalize;
    color: #1E3354;
}

.explore-sec p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    color: #7588A7;
}

.connect-content h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    text-transform: capitalize;
    color: #1E3354;
}

.connect-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: #7588A7;
    margin-bottom: 0;
}