:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #999999;
    --ll-gray: #f8f8f8;
    --gray: #444444;
    --blue: rgb(0 116 237);
    --l-blue: rgb(0 181 247);
    --red: rgb(227 41 42);
}

@font-face {
    font-family: fontMB;
    src: url(../fonts/BaiJamjuree-Bold.ttf);
}

@font-face {
    font-family: fontMS;
    src: url(../fonts/BaiJamjuree-SemiBold.ttf);
}


@font-face {
    font-family: fontMR;
    src: url(../fonts/BaiJamjuree-Regular.ttf);
}

html{
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: fontMB;
}

body {
    font-family: fontMR;
}

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

/* responsive hide show */
.responsive-mobile {
    display: none;
}

/* =============================================================== */
/* Start Navbar Here */
/* =============================================================== */

.navbar {
    width: 100%;
    padding: 10px 60px;
    background-color: transparent;
}

.navbar img {
    width: 16rem;
}

.navbar .nav-link {
    margin: 10px 12px;
    text-transform: uppercase;
    color: var(--black);
    /* transition: color 300ms cubic-bezier(0.075, 0.82, 0.165, 1); */
    /* position: relative;
    padding: 10px 0;
    z-index: 1; */
}

.navbar .nav-link:hover {
    color: var(--blue);
}

.navbar .nav-link.active {
    color: var(--red);
    font-weight: bold;
}

.dropdown-menu {
    background-color: var(--white);
    color: var(--black);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.navbar-nav .nav-link.show {
    color: var(--blue) !important;
}

.navbar-nav .nav-link.show:hover {
    color: var(--blue) !important;
}

.dropdown-item {
    padding: 8px 16px;
    border-bottom:1px solid var(--white) ;
    transition: all 0.3s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--red);
    border-bottom:1px solid var(--blue) ;
    background-color: var(--white);
}


/* =============================================================== */
/* End Navbar Here */
/* =============================================================== */

.btn-knm{
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 3px;
    padding:5px 15px;
}
.btn-knm:hover{
    border: 1px solid var(--l-blue);
    color: var(--l-blue);
}

/* =============================================================== */
/* Start Slider Here */
/* =============================================================== */

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* =============================================================== */
/* End Slider Here */
/* =============================================================== */

.section-space{
    padding: 4rem 0;;
}

/* =============================================================== */
/* Start About Us Here */
/* =============================================================== */
.title i{
    color: var(--red);
}

.product-container{
    border: 1px solid #ddd;
    text-align: center;
    transition: all 0.4s;
}
.product-container:hover{
    border: 1px solid var(--l-blue);
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1);
}
.product-container label{
    color: var(--gray);
}

/* title */
.title-bar{
    background-color: var(--l-blue);
    color: var(--white);
}
.title-bar h1{
    text-transform: uppercase;
}
.top-line{
    width: 12rem;
    height: 10px;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
    background-color: var(--blue);
}

/* counter */
.counter-title h1{
    font-size: 4rem;
}
.counter{
    background-color: var(--red);
    background-image: url(../images/line-.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.counter-container{
    background-color: var(--white);
    color: var(--gray);
    text-align: center;
    padding: 1rem;
    border-radius: 1.2rem;
}
.counter-container h1{
    font-size: 3rem;
    color: var(--l-blue);
}

/* contact-box */
.contact-box{
    /* border: 1px solid #ddd; */
    border-radius: 0.8rem;
    padding: 1rem;
    border-left: 4px solid var(--l-blue);
    border-right: 4px solid var(--light-gray);
}
.contact-box a{
    color: var(--gray);
    text-decoration: none;
}
.contact-box a:hover{
    color: var(--l-blue);
}

/* =============================================================== */
/* Start Second Footer Here */
/* =============================================================== */

.second-footer {
    padding: 15rem 0;
    background-image: url(../images/background/b1.webp);
    /* background-size: cover; */
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* =============================================================== */
/* Start Second Footer Here */
/* =============================================================== */

/* =============================================================== */
/* Start Back To Top Here */
/* =============================================================== */

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-back-to-top i {
    font-size: 18px;
    color: white;
}

/* =============================================================== */
/* End Back To Top Here */
/* =============================================================== */

/* =============================================================== */
/* Start Floating Icon Here */
/* =============================================================== */

.wp-button {
    margin-top: 14px;
}

.float {
    position: fixed;
    /* width: 60px; */
    /* height: 60px; */
    padding: 9px 16px;
    bottom: 85px;
    right: 20px;
    background-color: #25d366;
    color: var(--white) !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

/* =============================================================== */
/* Start Floating Icon Here */
/* =============================================================== */

/* =============================================================== */
/* Start Contact Us Here */
/* =============================================================== */

.contact-section {
    margin: 20px 0 80px;
}

.contact-details p {
    line-height: 1.6;
}

.contact-details a {
    text-decoration: none;
    color: var(--black);
}

.icon {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 8px;
}

.contact-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* =============================================================== */
/* End Contact Us Here */
/* =============================================================== */

.forge-valve-menu .nav-pills .nav-item{
    margin-bottom: 10px;
    width: 100% !important;
}

.nav-pills .nav-item{
    margin-bottom: 10px;
}

.nav-pills .nav-link{
    color: var(--gray);
    width: 100% !important;
    text-align: left;
    display: flex;
    align-items: center;
}
.nav-pills .nav-link:hover{
    background-color: var(--blue);
    color: var(--white);
}

/*  */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    width: 70vw;
    margin-top: 1rem;
    margin: 0 auto;
    /* height: 30rem; */
    /* overflow-y: scroll; */
    right: -20rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: 1.5rem;
    color: var(--white);
    border-radius: 14px;
}

/* .dropdown-content .header a {
    color: var(--white);
    text-decoration: none;
}
.dropdown-content .header a:hover {
    color: var(--orange);
} */

.dropdown:hover .dropdown-content {
    display: block;
}


.column a {
    /* float: none; */
    color: var(--black);
    padding: 3px 0px;
    /* border-radius: 20px; */
    text-decoration: none;
    display: block;
    text-align: left;
    transition: all 0.3s;
}

.column a:hover {
    color: var(--l-blue);
    padding-left: 7px;
}

/*  */
.column h6 a,
.column h4 a {
    /* float: none; */
    color: var(--white);
    padding: 6px 0px;
    /* border-radius: 20px; */
    text-decoration: none;
    /* display: block;
    text-align: left; */
    transition: all 0.3s;
}

.column h6 a:hover,
.column h4 a:hover {
    color: var(--orange);
    padding-left: 0px;
}

/* menu mobile drawer */
.dropdown-menu-mob{
    height: 400px;
    overflow-y: scroll;
    padding: 20px;
}
/* Side drawer styles */
.side-drawer {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 20px;
    z-index: 10000;
}

.side-drawer a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    color: var(--white);
    display: block;
    transition: 0.3s;
}

.side-drawer a:hover {
    background-color:var(--light-gray);
    color: var(--orange);
}

/* =============================================================== */
/* Start Footer Here */
/* =============================================================== */

.social a{
    border-bottom: 3px solid var(--white);
    padding:0.2rem 0.7rem;
    /* border-radius: 50px; */
    transition: all 0.3s;
}
.social a:hover{
    border-bottom: 3px solid var(--l-blue);
}
.social a img{
    width:1.5rem;
}

/*  */
.footer-section {
    position: relative;
    background-color: var(--white);
    padding: 50px 0;
    color: var(--gray);
    /* background-image: url(../images/background/b2.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right 50px top 20px; */
}

.footer-section .contact-info li {
    align-items: center;
}

.footer-section .contact-info .icon-bg {
    background-color: var(--l-blue);
    width: 50px;
    height: 50px;
    margin-right: 10px;
    /* padding:1.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid var(--light-gray); */
    border-radius: 2rem;
    color: var(--white);
    font-size: 1.5rem;
}

.footer-section h5 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--red);
    text-transform: uppercase;
}

/* .footer-section a {
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
} */

.footer-section .nav-link {
    color: var(--gray);
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.footer-section .nav-link:hover {
    color: var(--l-blue);
}

.footer-section .contact-info .foot-title {
    font-size: 16px;
    /* font-weight: bold; */
    color: var(--light-gray);
}

.credit-line {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0px;
    font-size: 14px;
    color: var(--black);
}

.credit-line a {
    text-decoration: none;
    color: var(--gray);
    /* font-size: 16px; */
    transition: color 0.3s, transform 0.3s;
}

.credit-line a:hover {
    color: var(--blue);
    transform: scale(1.1);
}

/* .footer-section .footer-logo {
    margin-bottom: 30px;
    max-width: 170px;
    height: auto;
} */

/* .footer-section .row .col-6 {
    text-align: center;
}

.footer-section .row .col-6 img {
    max-width: 100%;
    height: auto;
} */


/* =============================================================== */
/* End Footer Here */
/* =============================================================== */