* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #0056d2;
    /* --blue: #0C73B8; */
    --lblue: lightblue;
    --red: red;
}
text{
    display: none;
}

/* ::-webkit-scrollbar {
    width: 12px;
    background: transparent;
} */
/* ::-webkit-scrollbar-thumb {
    background: var(--blue);
    box-sizing: 20px;
} */
/* ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
} */
/* Reset scrollbar to default */
::-webkit-scrollbar {
    width: 14px;  
}

::-webkit-scrollbar-thumb {
    background-color: #6C757D;
    border-radius: initial;
}

::-webkit-scrollbar-track {
    background-color: #eeeeee;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
}

.blue {
    color: var(--blue);
}

.red {
    color: var(--red);
}

.green {
    color: green;
}

.bg-blue {
    color: #fff !important;
    background: var(--blue);
}
.bg-red{
    color: #fff !important;
    background: var(--red);
}

a {
    text-decoration: none;
}

/* flex */
.flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.between {
    display: flex;
    justify-content: space-between;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.rflex,
.cflex {
    display: flex;
}

.rflex {
    flex-direction: row;
}

.cflex {
    flex-direction: column;
}

.wrap {
    flex-wrap: wrap;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-item-center {
    margin: auto;
}

.flex-item-centerx {
    margin-inline: auto;
}

.flex-item-centery {
    margin-block: auto;
}

.ais {
    align-items: start;
}

.aie {
    align-items: end;
}

.aic {
    align-items: center;
}

.ass {
    align-self: start;
}

.ase {
    align-self: end;
}

.asc {
    align-self: center;
}

.asst {
    align-self: stretch;
}

.jcs {
    justify-content: start;
}

.jce {
    justify-content: end;
}

.jcc {
    justify-content: center;
}

.jcsb {
    justify-content: space-between;
}

.jcsa {
    justify-content: space-around;
}

.jcse {
    justify-content: space-evenly;
}

.pos-abs {
    position: absolute;
}

.pos-fix {
    position: fixed;
}

.pos-rel {
    position: relative;
}

.pos-sti {
    position: sticky;
}

.pos-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pos-centerx {
    left: 50%;
    transform: translateX(-50%);
}

.pos-centery {
    top: 50%;
    transform: translateY(-50%);
}

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

.fw_100 {
    font-weight: 100;
}

.fw_200 {
    font-weight: 200;
}

.fw_300 {
    font-weight: 300;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

.fw_800 {
    font-weight: 800;
}

.fw_900 {
    font-weight: 900;
}

p {
    margin: 0;
}

@media only screen and (max-width:600px) {
    * {
        font-size: small;
    }
}@keyframes zoom {
    to {
        font-size: 700rem;
    }
}
@keyframes click {
    0%,
    100% {
        transform: unset;
        box-shadow: 2px 2px 0 0 #00000022;
    }
    50% {
        transform: translate(2px, 2px);
        box-shadow: 0px 0px 0 0 #00000022;
    }
}
@keyframes blink {
    0%,
    40% {
        opacity: 0.15;
    }
    20% {
        opacity: 1;
    }
}
/* footer {
    text-transform: capitalize;
}

footer .between {
    flex-wrap: wrap;
}

footer a {
    display: block;
    color: #fff;
}

footer li:hover a {
    color: red;
}

footer .tnc a {
    color: blue;
}


footer .tnc {
    text-align: center;
    color: black;
}

.tnc a {
    display: inline;
}

footer article {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

footer p {
    text-align: center;
    padding: 4px;
}

@media only screen and (max-width:600px) {
    footer article {
        display: block;
    }


    footer p,
    footer ul {
        text-align: left;
        padding: 0;
    }
} */



/* Smooth transition for all links and icons */
footer a {
    transition: all 0.3s ease-in-out;
}

/* Text links hover effect */
footer a.text-decoration-none:hover {
    color: #FF0000 !important;
    /* Bootstrap's warning color */
    text-decoration: underline;
}

/* Social icon hover effect */
footer .list-inline-item a:hover {
    color: #FF0000 !important;
    transform: scale(1.2);
}

/* Underline animation */
footer a.underline-hover::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #FF0000;
    transition: width 0.3s;
}

footer a.underline-hover:hover::after {
    width: 100%;
}

@media screen and (max-width:767px) {
    footer .contact_us {
        display: flex;
        justify-content: space-between;
        /* gap: 2px; */
    }
    footer .contact_details {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    footer .contact_details ul {
        text-align: left !important; 
    }
    footer .company_links ul {
        width: auto !important;
        margin: auto !important;
    }
    footer .company_links h6 {
        text-align: left !important; 
    }
}/* background image */
.hero {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    height: 15vh;
    display: flex;
    align-items: center;
    background-position: 0px -81px;

}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.37);
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

/* .breadcrumb-item a {
    color: #fff !important;
} */

/* background img end */