:root {
    --footer-min-height: 100px;
    --font-size-primary: 16px;
    --font-size-input: 15px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: var(--font-size-primary);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
}

footer {
    min-height: var(--footer-min-height);
    padding-top: 20px;
    padding-bottom: 20px;
}
input,
select,
textarea {
    font-size: var(--font-size-input) !important;
}

table tr td,
table tr th {
    padding: 5px;
}
/*--------------- BOF Scroll bar-----------------*/
/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--cl-green);
    border-radius: 2px;
    cursor: pointer !important;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--cl-green);
    cursor: pointer !important;
}

/*--------------- EOF Scroll bar-----------------*/
section.section{
    min-height: 100vh;
}
div.full-height{
    min-height: 100vh;
}
section.section-footer{
    min-height: 40vh;
    background-color: #01080f;
}
img.section-image{
    width: 100%;
    max-height: 100vh;
}
div.div-hero-image{
    background-image: url("../images/stock/dev.png");
    background-repeat: none;
    background-size: cover;
    height:100vh;
}
.text-justify{
    text-align: justify;
}

section#services{
    background-image: url("../images/stock/working.png");
    background-repeat: none;
    background-size: cover;
    
    /* height:100vh; */
}
section#contact{
    background-image: url("../images/stock/drop.jpg");
    background-repeat: none;
    background-size: cover;
    
    /* height:100vh; */
}
img.client-avatar{
    height: 100px;
}
img.logo-medium{
    height: 100px;
}
.min-ht-50{
    min-height: 50vh !important;
}

/* Header */
nav.navbar{
    /* background: linear-gradient(to bottom, #000 60%, transparent) */
    background-color: rgba(0,0,0,.8);
}
a.cb-link{
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

a.nav-link {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
button.disabled{
    cursor: not-allowed !important;
    pointer-events: all !important;
}
.fs-small{
    font-size: small;
}
@media only screen and (min-width: 768px) {
    .fs-lg-5{
        font-size: 1.25rem !important;
    }
    .fs-lg-6{
        font-size: 1rem !important;
    }
  }