@font-face {
    font-family: 'Jost';
    src: url('../font/Jost-VariableFont_wght.woff2') format('truetype');
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: 'Graphik', sans-serif;
} */
body {
    font-family: 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;
}

.flex_justify_center_column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text_center {
    text-align: center;
}

.flex_column {
    flex-direction: column;
}

.line_height_18 {
    line-height: 1.8 !important;
}

.line_height_20 {
    line-height: 2 !important;
}

.logo {
    height: 40px;
}

.nav_logo {
    height: 40px;
}

.error {
    color: red;
}

.text_uppercase {
    text-transform: uppercase;
}


.flex_1 {
    flex: 1;
}

.common_btn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.8rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 500;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #010212;
    color: ghostwhite;
    text-transform: uppercase;
}

.common_btn span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.common_btn:hover span {
    color: ghostwhite;
}

.common_btn::before,
.common_btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.common_btn::before {
    content: "";
    background: #0154F7;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.common_btn:hover::before {
    transform: translate3d(100%, 0, 0);
}

.bg_index_about {
    background-image: url('../images/index_about_bg.jpg');
}

.hero_section {
    background-color: rgba(0, 86, 168, 0.3);
}

.card_shadow {
    box-shadow: 0 2px 10px #ddd;
}

.ellipsis_3_line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_2_line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.space_around {
    justify-content: space-around;
}

.line_height_13 {
    line-height: 1.3 !important;
}

.cursor_pointer {
    cursor: pointer;
}

@media (max-width: 768px) {
    .phone_banner {
        height: 220px !important;
    }

    .index_about_right_bg {
        position: unset !important;
        width: 100% !important;
    }
  #mobileMenu{
        position: sticky;
        top: 88px;
        z-index: 9999;
        border-bottom: 1px solid #ccc;
    }
}