:root {
    --primary: #75c5f0;
    --secondary: #dededd;
    --dager: #da251d;
}

body {
    font-family: "Montserrat", sans-serif !important;
    overflow-x: hidden;
}

.cus-bg-primary {
    background-color: var(--primary) !important;
}

.cus-text-primary {
    color: var(--primary) !important;
}

.cus-text-danger {
    color: var(--dager) !important;
}

.cus-bg-secondary {
    background-color: var(--secondary) !important;
}

.cus-text-secondary {
    color: var(--secondary) !important;
}

.cus-btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--secondary) !important;
}

.cus-btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.cus-border-danger {
    border-color: var(--dager) !important;
}

.cus-border-primary {
    border-color: var(--primary) !important;
}

.cus-border-secondary {
    border-color: var(--secondary) !important;
}

.cus-bg-danger {
    background-color: var(--dager) !important;
}

.cus-bg-danger-10 {
    background-color: rgba(218, 37, 29, 0.1) !important;
}

.cus-bg-primary-10 {
    background-color: rgba(117, 197, 240, 0.1) !important;
}

.cus-bg-secondary-50 {
    background-color: rgba(222, 222, 221, 0.5) !important;
}

.position-centered {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-black-transparent {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.about-blob {
    top: -10px;
}

.about-image img {
    margin-left: 5rem;
    margin-top: 10rem;
}

.text-outline-dager {
    -webkit-text-stroke: 1px #ff0000;
    color: #fff;
}

.container-blog-detail {
    max-width: 600px;
}

.pop-up-share {
    z-index: 200;
}

@media (max-width: 575.98px) {
    .about-blob {
        top: -80px;
    }

    .text-sm-sm {
        font-size: 0.875rem; /* 14px */
        line-height: 1.25rem; /* 20px */
    }

    .text-sm-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    
    .about-image img {
        margin-top: 0rem;
    }
}

.whatsapp-floating {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    padding-top: 9px;
}

.back-to-top {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.category-badge {
    border: 1px solid var(--primary);
    text-decoration: none;
    background-color: rgba(117, 197, 240, 0.1);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

.category-badge:hover {
    background-color: rgba(117, 197, 240, 0.3);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

.animate-bounce-top {
    animation: bouncetop 1s infinite;
}

@keyframes bouncetop {
    0%,
    100% {
        transform: translateY(25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%,
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* utility-first */
.vh-100 {
    height: 100vh;
}

.min-vh-100 {
    min-height: 100vh;
}

.ls-1 {
    letter-spacing: 1px;
}

.object-position-center {
    object-position: center;
}

.text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* 16px */
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}

.text-xl {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
}

.text-2xl {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
}

.text-3xl {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}

.text-4xl {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-justify {
    text-align: justify;
}

.mt-7 {
    margin-top: 7rem !important;
}

.pt-7 {
    padding-top: 7rem !important;
}

.transition {
    transition: all 0.3s ease-in-out;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hide-pop-up-share {
    transform: translateY(100%);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms !important;
}

.cursor-pointer {
    cursor: pointer;
}

