@font-face {
    font-family: 'PlayfairDisplay';
    src: url('../font/PlayfairDisplay-Regular.ttf') 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: 48px;
}

.nav_logo {
    height: 40px;
}

.error {
    color: red;
}
.text_uppercase {
    text-transform: uppercase;
}
.footer_bg {
    background-image: url(../images/footer-bg3.jpg);
    background-size: cover;
    background-position: center;
}

.common_btn {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: hsla(194 100% 69% / 1);
    --btn-bg-2: hsla(217 100% 56% / 1);
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 0.5em;
    cursor: pointer;
    padding: 0.8em 1.5em;
    min-width: 120px;
    min-height: 40px;
    font-size: var(--size, 1rem);
    font-weight: 500;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg,
            var(--btn-bg-2) 0%,
            var(--btn-bg-1) 55%,
            var(--btn-bg-2) 90%);
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow:
        0px 0px 20px rgba(71, 184, 255, 0.5),
        0px 5px 5px -1px rgba(58, 125, 233, 0.25),
        inset 4px 4px 8px rgba(175, 230, 255, 0.5),
        inset -4px -4px 8px rgba(19, 95, 216, 0.35);
    letter-spacing: 1px;
}

.common_btn:hover {
    background-position: right top;
}

.common_btn:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow:
        0 0 0 3px var(--btn-bg-color),
        0 0 0 6px var(--btn-bg-2);
}

@media (prefers-reduced-motion: reduce) {
    .common_btn {
        transition: linear;
    }
}


.letter {
    display: inline-block;
    opacity: 0;
    transform: scale(0.6);
    animation: fadeInScale 0.5s ease-in-out forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.meun_container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.meun_container::-webkit-scrollbar-track {
    background-color: transparent;
}

.meun_container::-webkit-scrollbar-thumb {
    background-color: #319ef1;
    border-radius: 3px;
}

.meun_container {
    scrollbar-width: thin;
    scrollbar-color: #319ef1 transparent;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100vh;
    background: white;
    z-index: 100;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
}

.menu-overlay.active {
    right: 0;
}

.menu-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.menu-contact {
    padding: 1rem 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 10;
    background: #fff;
}

.meun_container {
    height: calc(100vh - 208px);
    overflow-y: auto;
}

.menu-section:last-child {
    border-bottom: none;
}

.article_preview{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.display_block{
    display: block;
}

.meun_icon{
    font-size: 2.3rem;
}

.menu_close_icon{
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .menu-overlay {
        width: 100%;
    }
    .phone_flex{
        flex-direction: column;
    }
}