@font-face {
    font-family: 'Graphik';
    src: url('../font/Graphik-Regular.woff2') format('truetype');
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Graphik', sans-serif;
}
.flex_center_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_center_column_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.space_between_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex_align_center {
    display: flex;
    align-items: center;
}

.text_center {
    text-align: center;
}

.flex_column {
    flex-direction: column;
}

.line_height_18 {
    line-height: 1.8 !important;
}

.logo {
    height: 40px;
}

.common_btn {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    background-image: linear-gradient(to right, #0ac6d4, #3326b1);
    letter-spacing: 0.7px;
}

.common_btn:hover .arrow {
    animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.common_btn:active {
    transform: scale(0.97);
}

.data_bg {
    opacity: .6;
    background-color: #030821;
}

.index_about_bg {
    background-color: rgb(243, 244, 246);
}

.index_about_card {
    filter: drop-shadow(0 0 9px rgba(91, 50, 245, 0.1));
    height: min-content;
}

.detail_img_box{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.detail_content_box{
    position: relative;
}
.detail_img_box_reverse{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.error{
    color: red;
}

@media (max-width: 768px) {
    .phone_banner{
        height: 220px!important;
    }
}