/* ===================================
    Osmolab
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

/* variable */
:root {     
    --base-color: #12A7F3;
    --alt-font: 'Manrope', sans-serif;
    --primary-font: 'Rubik', sans-serif;
    --medium-gray: #868d98;
    --dark-gray: #2D2D2D;
    --very-light-gray: #F5F5F5;
} 
/* reset */

body {
    font-size: 18px;
    line-height: 28px;
    color: var(--dark-gray);
}


.main-background {
    z-index: -9999;
    background-image: url('../images/bg-main-shape.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


.text-blue {
    color: var(--base-color);
}
a {
    color: #868d98;
} 
b, strong {
    font-weight: 600;
}
::-webkit-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
}
::-moz-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
:-ms-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
/* bg color */

.bg-gradient-emerald-blue-emerald {
    background-image:linear-gradient(50deg,#09afea 0,#12A7F3 100%);
}

.bg-gradient-rainbow {
    background-image: linear-gradient(50deg, 
        #662D91 0%,  
        #0A65A3 20%,
        #159942 40%,
        #FCEE21 60%,
        #F37B23 80%,
        #EE3124 100% 
    );
}

.bg-gradient-black-green {
    background-image: linear-gradient(to right top, #1f2021, #1b1d1c, #1b1d1c, #222523, #333c37);
}
/* text color */
.text-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(to right top, #09afea, #19e089);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* button gradient blue */
.btn-gradient-emerald-blue-emerald {
    background-image: linear-gradient(to right, #0074AE, #12A7F3, #12A7F3);
    background-size: 200% auto;
    color: var(--white);
}


/* btn */
.btn{
    font-weight: 500;
    text-transform: inherit;
    border-radius: 5px;
    font-family: var(--primary-font);
    font-weight: 400;
}

.btn.btn-max-height {
    max-height: 60px;
}

.btn.btn-extra-large {
    font-size: 22px;
}
.btn.btn-large {
    font-size:17px;
}
.btn.btn-medium {
    font-size: 16px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 15px;
}
.btn.btn-large .btn-icon i {
    top: 1px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn.btn-link-gradient {
    padding: 0 0 3px;
}
/* header */
.navbar .navbar-nav .nav-link {
    font-size: 17px;
    letter-spacing: .5px;
    padding: 10px 22px;
    font-weight: 400;
}
.push-menu .close-menu {
    right: 30px;
    top: 30px;
}
/* newsletter style  */
.newsletter-style-02 input {
    font-size: 14px;
}
/* footer */
footer .nav-link {
    color: #ffffff;
    font-weight: 400;
}

.footer-dark p {
    color: #ffffff;
}
footer ul li {
    margin-bottom: 2px;
}

.fw-800 {
    font-weight: 600 !important;
}



/* utils */
.py-9 {
    padding-top: 15% !important;
    padding-bottom: 15%!important;
}

.fs-14 {
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* media query responsive */
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 17px;
    }
    
}


@media (max-width: 1024px) {

    body {
        font-size: 16px;
    }

    .osmolab-logo-c {
        max-width: 150px;
    }


}

