@font-face {
    font-family: 'Jost';
    src: url('../font/Jost-VariableFont_wght.woff2') format('truetype');
}

@font-face {
    font-family: 'Cormorant';
    src: url('../font/cormorant.regular.otf') format('truetype');
}

p,
a,
ul,
li,
span,
button {
    font-family: 'Jost', sans-serif !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant', sans-serif !important;
}

body {
    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: 45px;
}

.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: #421f0c;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 1px solid #421f0c;
    box-shadow: inset 0 0 0 0 #421f0c;
}

.insights_item {
    background: linear-gradient(to top, #421f0c 0%, rgba(62, 27, 11, 0) 100%);
}

.insights_card {
    background-size: cover;
    background-position: center;
}

.detail-hero-section {
    background-image: radial-gradient(ellipse at bottom, rgba(52, 152, 219, 0.2) 0%, rgba(39, 174, 96, 0.15) 100%) !important;
}

.banner_title_color {
    background-image: linear-gradient(to right, #023E8A, #0284C7, #48CAE4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact_bg {
    background-image: url(../images/contact_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer_bg {
    background-image: linear-gradient(90deg,
            rgba(220, 230, 255, 0.3) 0%,
            rgba(173, 216, 230, 0.4) 15%,
            rgba(100, 149, 237, 0.35) 40%,
            rgba(70, 130, 180, 0.3) 65%,
            rgba(25, 25, 112, 0.2) 90%);
}

.contact_content_bg {
    background-color: rgba(255, 255, 255, 0.75);
}

.article-card {
    border: 1px solid #e5e5e5;
}

.common_btn:active {
    transform: scale(0.97);
}

.data_bg {
    opacity: .6;
    background-color: #030821;
}

.index_about_bg {
    background-color: rgb(243, 244, 246);
}

.bg_third {
    background-image: radial-gradient(ellipse at top, rgba(65, 105, 225, 0.15) 0%, rgba(135, 206, 250, 0.15) 100%) !important;
    background-color: #000034 !important;
}

.text_third {
    color: #48CAE4;
    line-height: 1.3 !important;
}

.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: 96px;
}

.value_color {
    color: #f7f6fb;
}

.text_icon {
    font-size: 1.1rem;

}

.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: 88px;
    }

    .phone_banner {
        height: 220px !important;
    }

    .detail_img_box_reverse {
        position: unset;
    }

    .detail_img_box {
        position: unset;
    }

    .contact_img {
        display: none;
    }
}