@import url("root-variables.css");

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--roboto-font);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    color: #777777;
    line-height: 26px;
    vertical-align: baseline;
}

/* Common CSS */
/* ==============================Text Selection Color===================================== */
::selection {
    background: var(--selection-color);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--selection-color);
    /* Firefox */
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--selection-color);
    /* Safari */
    color: #fff;
    text-shadow: none;
}

/*------------- #Styles for Text Selection --------------*/

/* ===============================Container Spacing  Classes=========================================*/
.containspacing {
    padding: 15px 0px;
}

.containspacing1 {
    padding: 30px 0px;
}

.containspacing2 {
    padding: 50px 0px;
}

.containspacing3 {
    padding: 100px 0px;
}

.containspacing-t-b {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* ===============================Container Spacing  Classes End=========================================*/

.img-responsive {
    width: 100%;
    height: auto;
}

.website-title {
    margin: 0;
    margin-bottom: 20px;
    font-family: var(--monsterrat-font);
    font-size: 32px;
    letter-spacing: 0.5px;
    color: var(--theme-color-1);
    font-weight: 500;
    position: relative;
}
.website-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    background: var(--theme-color-1);
    height: 4px;
    width: 5%;
}

.website-btn {
    color: #fff;
    border: 1.5px solid var(--theme-color-1);
    display: inline-block;
    padding: 6px 16px;
    background: var(--theme-color-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: all .4s;
    font-size: 14px;
}
.website-btn:hover {
    background: transparent;
    transition: all .4s;
    color: var(--theme-color-1);
    text-decoration: none;
}

.m-t-30 {
    margin-top: 30px;
}

.p-t-0 {
    padding-top: 0;
}

.flip-image {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

/* Common CSS */

/* Top Header */
.topheader {
    background: var(--theme-color-1);
    padding: 5px 0;
}
.topheader p {
    margin: 0;
}
.topheader p a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}
.topheader p a:hover {
    text-decoration: none;
}

/* Header */
.header .logo-sec p {
    font-family: var(--monsterrat-font);
    color: var(--theme-color-1);
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    padding-top: 20px;
}

/* Navigation */
.navbar-default {
    background-color: transparent;
    border-color: transparent;
    margin-top: 22px;
}

.navbar-default .navbar-toggle {
    border-color: var(--theme-color-1);
}
.navbar-toggle {
    background-color: var(--theme-color-1);
    border: 1px solid var(--theme-color-1);
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: var(--theme-color-1);
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a {
    transition: all 0.4s;
    border-bottom: 2px solid transparent;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--theme-color-1);
    font-family: 'Montserrat';
    font-weight: 500;
    padding: 10px 20px;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: var(--theme-color-1);
    background-color: transparent;
    border-bottom: 2px solid var(--theme-color-1);
    transition: all 0.4s;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: var(--theme-color-1);
    background-color: transparent;
    border-bottom: 2px solid var(--theme-color-1);
    transition: all 0.4s;
}

/* Banner Section */
.banner-sec .banner-img {
    position: relative;
}
.banner-sec .banner-img .banner-text {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translate(0%, -50%);
}
.banner-sec .banner-img .banner-text {
    font-family: var(--monsterrat-font);
    font-size: 30px;
    /* width: 55%; */
    /* line-height: 40px; */
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}
.banner-sec .banner-img .banner-text .span1 {
    font-size: 40px;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}
.banner-sec .banner-img .banner-text .span2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Counters */
.counters {
    background: var(--theme-color-1);
    color: #fff;
}
.counters p {
    margin: 0;
    text-align: center;
    font-size: 35px;
    line-height: 35px;
}
.counters p span {
    display: block;
    font-size: 18px;
    font-family: var(--monsterrat-font);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Our Products */
.product-link {
    transition: all 0.4s;
    text-decoration: none;
}
.product-link .product-img img {
    transition: all 0.4s;
    width: 100%;
    height: 300px;
    object-fit: contain;
}
.product-link:hover .product-img img {
    transform: scale(1.1);
    transition: all 0.4s;
}
.product-box {
    position: relative;
    overflow: hidden;
}

.product-box .product-title {
    position: absolute;
    bottom: 0;
    left: 0;
}

.product-box .product-title p {
    text-align: left;
    margin: 0;
}

.product-box .product-title p span {
    z-index: 2;
    display: inline-block;
    position: relative;
    padding: 5px 70px 5px 20px;
    color: #fff;
    font-size: 20px;
}

.product-box .product-title p::after {
    content: '';
    background: var(--theme-color-1);
    position: absolute;
    width: 100%;
    height: 100%;
    left: -20px;
    bottom: 0;
    transform: skew(-30deg);
}

/* Why Us Sec */
.whyus .fa-check, .product-inner .fa-check {
    color: var(--theme-color-1);
}

/* enquiry-sec */
.enquiry-sec.getquote h3 {
    font-size: 27px;
    margin: 0;
    margin-top: 5px;
}
.enquiry-sec.getquote p a {
    margin-top: 0;
    font-size: 20px;
    padding: 5px 40px;
}

/* About Us Page */
.page-banner-img {
    position: relative;
}
.page-banner-img div::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffc300cc;
}
.page-banner-img img {
    height: 140px;
    object-fit: cover;
}
.page-banner-img p {
    position: absolute;
    top: 37%;
    left: 5%;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--monsterrat-font);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Product Page CSS */
.product-inner .product-name {
    font-family: var(--monsterrat-font);
    font-size: 30px;
    color: var(--theme-color-1);
    font-weight: 500;
}
.product-inner .get-price a {
    color: #000;
    text-decoration: underline;
    /* text-transform: uppercase; */
}
.product-inner .interested-btn {
    background: var(--theme-color-1);
    color: #fff;
    display: block;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    font-size: 18px;
    box-shadow: 0px 0px 5px 3px #eee;
    transition: all 0.4s;
    border: 1.5px solid var(--theme-color-1);
}
.product-inner .interested-btn:hover {
    transition: all 0.4s;
    text-decoration: none;
    background-color: transparent;
    color: var(--theme-color-1);
}
.product-inner .otherproducts {
    margin-top: 30px;
    font-size: 20px;
}
.product-inner .otherproducts::after {
    width: 20%;
}
.product-inner .other-product-list {
    list-style: none;
    padding: 0;
}
.product-inner .other-product-list li {
    border-bottom: 1px solid #ddd;
    padding: 5px;
}
.product-inner .other-product-list li a {
    color: #777777;
    text-decoration: none;
    transition: all 0.4s;
}
.product-inner .other-product-list li a:hover {
    transition: all 0.4s;
    color: var(--theme-color-1);
}
.product-inner img.img-responsive {
    width: 100%;
    height: 350px;
}

.productsv1 .product-name {
    font-family: var(--monsterrat-font);
    font-size: 30px;
    color: var(--theme-color-1);
    font-weight: 500;
}

/* Get Quote CSS */
.getquote {
    background: var(--theme-color-1);
    color: #fff;
}
.getquote h3 {
    font-family: var(--monsterrat-font);
    font-size: 35px;
    /* font-weight: 600; */
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 10px;
}
.getquote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 0;
}
.getquote p a {
    color: var(--theme-color-1);
    font-style: normal;
    letter-spacing: 1.8px;
    font-size: 20px;
    border: 2px solid #fff;
    display: inline-block;
    padding: 10px 25px;
    background: #fff;
    text-transform: uppercase;
    /* font-weight: 500; */
    margin-top: 12px;
    transition: all .4s;
}
.getquote p a:hover {
    text-decoration: none;
    transition: all .4s;
    background: transparent;
    color: #fff;
}

/* Modal Popup */
#enquiryformmodal .modal-header {
    background: var(--theme-color-1);
    color: #fff;
}
#enquiryformmodal .modal-header .close {
    color: #fff;
    opacity: 1;
}
#enquiryformmodal .modal-header .modal-title {
    font-family: var(--monsterrat-font);
    font-weight: 600;
    color: #fff;
}
#enquiryformmodal .modal-body .product-name {
    margin-top: 10px;
    color: var(--theme-color-1);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
#enquiryformmodal .modal-body h3 {
    margin-top: 10px;
    font-size: 20px;
    font-family: var(--monsterrat-font);
}

/* Footer CSS */
.footer p.aboutus {
    margin-top: 10px;
    text-align: justify;
}
.footer h2 {
    position: relative;
    font-size: 21px;
    font-family: var(--monsterrat-font);
    font-weight: 600;
    color: var(--theme-color-1);
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.footer h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    background: var(--theme-color-1);
    height: 4px;
    width: 20%;
}
.footer ul.foot-menu {
    list-style: none;
    padding: 0;
}
.footer ul.foot-menu li a {
    display: inline-block;
    color: #777777;
    font-size: 17px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all 0.4s;
}
.footer ul.foot-menu li a:hover {
    transition: all .4s;
    color: var(--theme-color-1);
    text-decoration: none;
}
.footer ul.foot-menu li a i {
    height: 20px;
    width: 20px;
    font-size: 20px;
    text-align: center;
}

/* Contact Us */
.contactus-sec .contact-details p a {
    font-size: 18px;
    color: #777;
    transition: all 0.4s;
}
.contactus-sec .contact-details p a:hover {
    transition: all 0.4s;
    color: var(--theme-color-1);
    text-decoration: none;
}
.contactus-sec .contact-details p a i {
    color: var(--theme-color-1);
    font-size: 22px;
    width: 25px;
    height: 25px;
    text-align: center;
}
.form-control {
    height: 40px;
    border-radius: 0;
    border-color: var(--theme-color-1);
    font-size: 15px;
}