@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Myanmar:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Noto Serif Myanmar DM Display", serif;
}

/* home session start */

.navbar {
    z-index: 3;
    background-color: rgb(8, 3, 0);
    padding: 20px 0;
    position: sticky;
    top: 0;
}


.home,
.about {
    padding: 0px 100px;
}


.home .row {
    min-height: 650px;
    display: flex;
    align-items: center;
}


.home .img-container .img {
    width: 100%;
    display: flex;
    justify-content: end;
}

.home .img-container .img img {
    width: 350px;

}

.home .plan-btn,
.card_section .btn {
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgb(246, 109, 11);

    color: white;
    font-weight: bolder;
    font-size: 20px;
    margin-top: 30px;
    border-radius: 10px;

}

.download-btn {
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgb(246, 109, 11);
    color: white;
    font-weight: bolder;
    font-size: 20px;
    border-radius: 10px;

}


.home .plan-btn:hover,
.card_section .btn:hover {
    background-color: rgb(251, 143, 13);
    color: rgb(8, 3, 0);
    box-shadow: rgba(0, 0, 0, 0.054) 0px 19px 38px, rgba(0, 0, 0, 0.046) 0px 15px 12px;
}

.home a,
.card_section a {
    text-decoration: none;
}

/* home session start */

/* about session start */

.about .row {
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 30px 15px;
}

.about .image {
    width: 550px;
}

.about .row {
    position: relative;
}

/* about sessino end */

/* content section start */

.content {
    padding: 40px 100px;
}

.content .bar {
    width: 100%;
    height: 3px;
    background-color: black;
}

.content .row i {
    font-size: 13px;
}

/* content section end */


/* card section start */

.card_section {
    padding: 40px 100px;
}

.card_section .inner {
    border-radius: 15px;
    background-color: rgb(233, 233, 243);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.card_section .inner .div:nth-child(3) {
    border-top: 2px solid rgba(157, 155, 152, 0.309);
    border-radius: 0px;
}

.card_section .inner div {
    border-radius: 15px 15px 0 0;
}

.card_section .inner .div {
    margin: 0 100px;
    border-bottom: 2px solid rgba(157, 155, 152, 0.309);
}

.card_section .inner .div img {
    width: 30px;
    height: 19px;
}

#flip-image {
    transform: scaleX(-1);
}

/* card section end */

/* download section start */
.download {
    padding: 20px 100px;
    margin: auto;
    width: 50%;
    border-radius: 15px;
    background-color: rgb(233, 233, 243);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

#download .btn {
    background-color: rgba(0, 0, 0, 0.706);
    border: none;
    outline: none;
    padding: 10px 12px;
    border-radius: 5px;
    color: white;
    font-weight: bolder;
}


#download .activeColor {
    background-color: black;
}

#download .ios div:hover,
#download .android div:hover {
    background-color: rgba(251, 144, 13, 0.163);
}

/* download section end */


.footer {
    background-color: rgb(8, 3, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer h6 {
    color: rgb(251, 143, 13);
}

@media only screen and (max-width: 1300px) {

    .about .row .content1,
    .about .row .content2 {
        width: 100%;
    }

    .about .img-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 1200px) {

    .home,
    .about {
        padding: 0px 50px;
    }
}

@media only screen and (max-width: 992px) {

    .home {
        padding: 50px;
    }

    .home .row {
        display: flex;
        flex-direction: column-reverse;
        padding: 50px 0;
    }

    .home .row h2 {
        text-align: center;
    }

    .home .content-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0;
    }

    .home .img-container .img {
        display: flex;
        justify-content: center;
    }

    .about .row {
        padding: 30px 20px;
    }

    .about .img-container {
        display: flex;
        justify-content: center;
    }

    .about .image {
        width: 400px;
    }

    .content {
        padding: 40px 20px;
    }

    .download {
        width: 80%;
    }

    .download-btn {
        padding: 8px 10px;
    }

}

@media only screen and (max-width:768px) {
    .card_section .inner .div {
        margin: 0 50px;
    }

    .card_section {
        padding: 40px 30px;
    }

    .download {
        width: 90%;
        padding: 20px 30px;

    }

    .download-btn {
        padding: 5px 8px;
    }


}