:root {
    --primary-color: #005082; 
    --primary-color-low: rgba(0, 80, 130, 0.5);
    --primary-color-dark: #003c66;

    --secondary-color: #adb5bd; 
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef; 
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #f8f9fa; 
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e9ecef;

    --text-dark: #343a40; 
    --text-dark-low: #495057;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa; 
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #005082; 
    --button-color-low: rgba(0, 80, 130, 0.5);
    --button-color-dark: #003c66;
}

.btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.9rem 1.4rem;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease;
    width: max-content;
}

.btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.btn.primary {
    position: relative;
    padding-right: calc(1.4rem + 40px);
}

.btn.primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.btn.primary::after {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url('../../assets/icon/right-white.html');
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.btn.basic {
    background-color: unset;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.btn.basic:hover {
    transform: translateY(-6px);
    box-shadow: none;
}



.btn.basic:hover::after {
    left: 15px;
}

.btn.basic::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.btn.basic:hover::before {
    width: 80%;
    left: 13%;
    transition: all 0.3s ease;
}


.curve-btn i {
    font-size: 2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    animation: updown 1s infinite;
}

.curve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.8rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.curve-btn::before {
    content: '';
    position: absolute;
    width: 105%;
    height: 105%;
    background-color: var(--bg-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.curve-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.curve-btn:hover::before {
    width: 0%;
    height: 0;
    transition: all 0.3s ease;
}

.curve-btn:hover i {
    font-size: 2rem;
    color: var(--text-light);
    animation: updown2 2s infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes updown2 {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(10px) rotate(5deg);
    }

    50% {
        transform: translateY(8px) rotate(0deg);
    }
    

    80% {
        transform: translateY(10px) rotate(-5deg);
    }

    100% {
        transform: translateY(0);
    }
}



.h-title {
    position: relative;
    text-align: center;
}

.h-title h2 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.h-title h2 .h-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-wrap: nowrap;
}



@media screen and (max-width: 992px) {
    .h-title h2 {
        font-size: 2.8rem;
    }

    .h-title h2 .h-tag {
        font-size: 1.3rem;
    }
}


@media screen and (max-width: 768px) {
    .h-title h2 {
        font-size: 2.2rem;
    }

    .h-title h2 .h-tag {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .h-title h2 {
        font-size: 2rem;
    }

    .h-title h2 .h-tag {
        font-size: 1rem;
    }
}






.Smoothline {
    transition: all 0.3s ease;
}


.d-none {
    display: none!important;
}
