/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

/* ===== Scrollbar Style ===== */
::-webkit-scrollbar {
    width:7px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0px 0px 5px #f8f8ff;
}
::-webkit-scrollbar-thumb {
    background:  hsl(var(--hue-color), 100%, 30%);
}

/* ===== Variable CSS ===== */
:root{
    --hue-color: 201;
    --blue-color: hsl(var(--hue-color), 100%, 30%);
    --blue-color-alt: hsl(var(--hue-color), 67%, 53%);
    --blue-color-light: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 0%, 0%);
    --text-color-light: hsl(var(--hue-color), 8%, 65%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    --body-color: hsl(var(--hue-color), 60%, 99%);
    --container-color: #fff;

    --body-font: 'Poppins', sans-serif;

    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: .940rem;
    --small-font-size: .900rem;
    --smaller-font-size: .813rem;


    --font-medium: 500;
    --font-semi-bold: 600;

    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    --box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.135);

}
@media screen and (max-width: 968px) {
    :root{
        --big-font-size: 2rem;
        --h1-font-size: 1.5rem;
        --h2-font-size: 1.25rem;
        --h3-font-size: 1.125rem;
        --normal-font-size: .920rem;
        --small-font-size: .873rem;
        --smaller-font-size: .75rem;
    }
}

/* ===== BASE CSS ===== */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    min-width: 20rem;
}
h1,h2,h3,h4{
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
}

/* ===== ===== REUSABLE CSS CLASSES ===== ===== */

/* ===== Text Style ===== */
.text-small{
    font-size: var(--small-font-size);
}

/* ===== Section Areas ===== */
.section{
    position: relative;
    width: 100%;
    margin:-1rem 0 0 0;
    padding: 5rem .15rem 0 .15rem;
}
.head{
    position: relative;
    width: 100%;
    text-align: center;
    padding: .5rem 0;
}
.head h1{
    letter-spacing: .1rem;
    color: var(--blue-color);
    font-size: var(--h1-font-size);
}
.head h1:before{
    content: attr(data-value);
    position: absolute;
    font-size: var(--big-font-size);
    width: 100%;
    color: transparent;
    letter-spacing: 0;
    text-align: center;
    left: 0;
    top:-.8rem;
    opacity: .1;
    white-space: nowrap;
    -webkit-text-stroke: 2px var(--blue-color);
}


/* ===== BUTTON HOVER ===== */

.btn{
    position: relative;
    width: 100%;
    text-align: center;
    margin: 1rem 0 1.3rem 0;
    color:#fff;
    background-color: transparent;
}
.btn-hover {
    position: relative;
    font-size: var(--normal-font-size);
    color: #fff;
    outline: none;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: .1rem 1.5rem;
    padding: .7rem 1.2rem;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn-hover:hover {
    color:#fff;
    border-radius: 1.5rem .1rem;
    text-decoration: none;
    background-position: 100% 0;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn-hover.color {
    color:#fff;
    background-image: linear-gradient(to right, #667eea, #a459dc, #6B8DD6, #a33aef);
    box-shadow: 0 4px 15px 0 rgba(102, 126, 228, 0.75);
}

/* ===== MAP Style ===== */
.map{
    position: relative;
    width: 100%;
    height: 240px;
}
.map iframe{
    width: 100%;
    height: 100%;
}

.search-text i{
    display: block;
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
}


.header-fixed{
    width: 100%;
    height:0;
    background: transparent;
}
.table-responsive table{
    font-size: var(--small-font-size);
    text-align: left;
}
.table-responsive table thead th{
    color:#000 !important;
}
.table-responsive table tbody tr:hover{
    background: #e9ecef;
    transition: all .2s;
}
.table-responsive table tr td a{
    padding: .3rem .7rem;
    background: #007bff;
    color:#fff;
    border-radius: .5rem;
    font-size: var(--small-font-size);
    width: 100%;
    display: inline-block;
    text-align: center;
}
.table-responsive table tr td a:hover{
    text-decoration: none;
    background: #0073ee;
}
