@font-face {
    font-family: 'Jost';
    src: url('../font/Jost-VariableFont_wght.woff2') format('truetype');
}

@font-face {
    font-family: 'Cardo';
    src: url('../font/Cardo99s.ttf') format('truetype');
}

p,
a,
ul,
li,
span,
button {
    font-family: 'Jost', sans-serif !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cardo', sans-serif !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}



.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;
}

.line_height_16 {
    line-height: 1.6 !important;
}

.line_height_12 {
    line-height: 1.2 !important;
}

.logo {
    height: 55px;
}

.common_btn {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    background: #e81a3b;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 1px solid #e81a3b;
    box-shadow: inset 0 0 0 0 #e81a3b;
}

.insights_item {
    background: linear-gradient(to top, #e81a3b 0%, rgba(62, 27, 11, 0) 100%);
}

.insights_card {
    background-size: cover;
    background-position: center;
}

@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;
}

.ellipsis_2_line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_3_line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.min_w_300 {
    min-width: 300px;
}

.hero-section {
    margin-top: 88px;
}

.value_color {
    color: #f7f6fb;
}

.text_icon {
    font-size: 1.3rem;

}

.social_icon {
    transition: 400ms;
}

.social_icon:hover {
    transform: translateY(-5px);
}

.text_medium {
    font-size: 2.5rem;
}

.text_uppercase {
    text-transform: uppercase;
}

.max_width {
    width: max-content;
}

@media (max-width: 768px) {
    .logo {
        height: 40px;
    }

    .hero-section {
        margin-top: 72px!important;
    }

    .phone_banner {
        height: 220px !important;
    }

    .detail_img_box_reverse {
        position: unset;
    }

    .detail_img_box {
        position: unset;
    }

    .contact_img {
        display: none;
    }
}