:root {
    --theme-color: #4bd37e;
    --theme-secondary-color: #0fab93;
    --white: #fff;
    --black: #000;
    --border-color: #e2e2e2;
    --gray333: #333;
    --gray555: #555;
    --gray777: #777;
    --gray999: #999;
    --grayBg: #f4f6f5;
    --transition: all 0.5s ease-in-out;
    --main-font: "Inter", sans-serif;
    --secondary-font: "Poppins", sans-serif;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --fs-xl: 40px;
    --fs-l: 30px;
    --fs-m: 27px;
    --fs-sm: 20px;
    --fs-usm: 13px;
    --fs-normal: 16px;
}

html {
    scroll-behavior: smooth;
}
body {
    font-size: 13px;
    font-family: var(--main-font);
    font-weight: var(--fw-regular);
}
* {
    box-shadow: none;
    outline: none;
}
._keyfocus :focus,
input:not([disabled]):focus,
textarea:not([disabled]):focus,
select:not([disabled]):focus,
button:focus {
    box-shadow: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
    margin: 0;
}
p {
    margin: 0;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
*{
    scrollbar-width: thin;
    scrollbar-color: var(--gray999) #c2c2c2;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 9px;
}

*::-webkit-scrollbar-track {    
    background-color: #c2c2c2;
}

*::-webkit-scrollbar-thumb {
    background: var(--gray999);
}

::-moz-selection {
    color: var(--white);
    background: var(--theme-color);
}
::selection {
    color: var(--white);
    background: var(--theme-color);
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ul > li,
ol > li {
    margin: 0;
    padding: 0;
}
a {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
a:hover {
    text-decoration: none;
    color: #000;
}
img {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
/* Common */
.img-box {
    width: 100%;
    position: relative;
}

.th-container-fluid {
    max-width: 1920px;
    padding: 0 30px;
    margin: 0 auto;
}
.th-container {
    max-width: 1600px;
    padding: 0 80px;
    display: flex;
    margin: 0 auto;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
.input-text:focus,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
.input-text,
a:focus,
input:focus,
textarea:focus,
button:focus {
    background-color: transparent;
    box-shadow: none;
    outline: none;
}
form {
    margin: 0;
}

.th-main-title {
    font-size: 30px;
    color: var(--black);
    font-family: var(--secondary-font);
}
.th-sub-title {
    font-size: 13px;
    color: var(--gray555);
    letter-spacing: 2px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}
.th-xl-fs {
    font-size: 40px;
}
.th-l-fs {
    font-size: 30px;
}
.th-m-fs {
    font-size: 27px;
}
.th-sm-fs {
    font-size: 20px;
}
.th-usm-fs {
    font-size: 13px;
}
.th-normal-fs {
    font-size: 16px;
}
/* Common Ends */

/* Header */
.th-header {
    position: relative;
}

.th-top-head {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}
.th-top-head .th-container {
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
}
.th-top-head .th-lt ul {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
}
.th-top-head .th-lt ul li:first-child {
    margin-right: 20px;
}
.th-top-head .th-lt ul li,
.th-top-head .th-lt ul li a {
    font-size: 15px;
    color: var(--gray777);
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
}
.th-top-head .th-rt p i,
.th-top-head .th-lt ul li i,
.th-top-head .th-lt ul li a i {
    font-size: 22px;
    color: var(--gray555);
    margin-right: 7px;
}

.th-top-head .th-rt p {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
}
.th-top-head .th-rt p i {
    margin-left: 7px;
}
.th-top-head .th-rt p {
    font-size: 15px;
    color: var(--gray777);
}
.th-top-head .th-rt p span {
    font-size: 14px;
}

.th-mdl-nav {
    padding: 20px 0;
}

.th-site-logo {
    margin-right: 50px;
}
.site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
}
.site-navbar .site-navigation .site-menu .active {
    color: var(--gray555);
    display: inline-block;
    padding: 20px 20px;
}
.site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block;
}
.site-navbar .site-navigation .site-menu > li {
    display: inline-block;
}
.site-navbar .site-navigation .site-menu > li > a {
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none !important;
    color: var(--gray333);
    font-weight: var(--fw-bold);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.site-navbar .site-navigation .site-menu > li:hover > a {
    color: var(--theme-color) !important;
}
.site-navbar .site-navigation .site-menu > li.social > a {
    padding-left: 5px;
    padding-right: 5px;
}
.site-navbar .site-navigation .site-menu .has-children {
    position: relative;
}
.site-navbar .site-navigation .site-menu .has-children > a {
    position: relative;
    padding-right: 35px;
    padding-left: 0;
}
.site-navbar .site-navigation .site-menu li:not(.has-children) a {
    padding-left: 0;
}

.site-navbar .site-navigation .site-menu .has-children > a::after {
    content: "";
    position: absolute;
    background-image: url(../images/arrow-down-s-line.svg);
    background-position: center center;
    background-size: 17px;
    background-repeat: no-repeat;
    width: 45px;
    height: 22px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    opacity: 0.5;
}
.site-navbar .site-navigation .site-menu .has-children.site-more .dropdown li > a::after {
    right: 15px;
    transform: translateY(-50%) rotate(-90deg);
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    left: 0;
    top: 50px;
    position: absolute;
    text-align: left;
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
    z-index: 10;
}
.site-navbar .site-navigation .site-menu .has-children.site-more .dropdown {
    left: auto;
    right: 0;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a {
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #000;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown .active {
    color: var(--gary333) !important;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 220px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
    padding: 10px 15px;
    display: block;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
    background: #eff1f3;
    color: #000;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
    right: 20px;
    top: 8px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
    right: 100%;
    top: -2px;
}
.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
    color: var(--gary333);
}
.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
}
.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

.site-mobile-menu {
    width: 90%;
    position: fixed;
    left: 0;
    z-index: 2000;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    top: 0;
    -moz-transform: translateX(-110%);
    -o-transform: translateX(-110%);
    box-shadow: 10px 0px 60px -40px gray;
    -webkit-box-shadow: 10px 0px 60px -40px gray;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    width: 100%;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 20px;
    padding-bottom: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:first-child {
    padding: 0;
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    color: var(--gray-2);
    font-size: 20px;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    cursor: auto;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 25px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    color: var(--gray777);
    opacity: 0.5;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
    opacity: 1;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
}
.site-mobile-menu .site-mobile-menu-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    float: left;
    height: 100vh;
    padding-bottom: 150px;
    position: relative;
    background-color: #fff;
}
.site-mobile-menu .site-mobile-menu-body::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    bottom: 0;
    left: 0;
    background-color: var(--theme-color);
    z-index: 1;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    opacity: 0.2;
}
.site-mobile-menu .site-nav-wrap:last-child {
    display: none;
}
.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
.site-mobile-menu .site-nav-wrap a {
    padding: 15px 20px;
    display: block;
    position: relative;
    color: #212529;
}
.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}
.site-mobile-menu .site-nav-wrap .social {
    display: inline-block;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 10px;
    top: 15px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse i {
    font-size: 20px;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse::before {
    z-index: 20;
    width: 20px;
    height: 20px;
    position: absolute;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap > li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}
.site-mobile-menu .site-nav-wrap > li.social {
    float: none !important;
    width: auto !important;
}
.site-mobile-menu .site-nav-wrap > li > a {
    padding-left: 20px;
    font-size: 17px;
    border-bottom: 1px solid var(--border-color);
}
.site-mobile-menu .site-nav-wrap > li > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
    display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
    padding-left: 20px;
    font-size: 14px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
    padding: 0;
    margin: 0;
    background: #cfdde6;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
    display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
    font-size: 16px;
    padding-left: 60px;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] {
    float: left;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 5em;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
    width: auto;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
    padding-left: 15px !important;
}

.site-more {
    width: 100px;
}
.site-navbar .site-navigation .site-more a.nav-link {
    color: var(--white) !important;
    text-transform: capitalize;
    font-size: 14px;
    padding-left: 18px;
    width: 95px;
}
.site-navbar .site-navigation .site-more a.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background-color: var(--black);
    width: 100%;
    height: 28px;
    z-index: -1;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.site-navbar .site-navigation .site-more a.nav-link::after {
    opacity: 1;
    filter: invert(1);
    -webkit-filter: invert(1);
    right: 10px;
    background-size: 20px;
}

.site-menu-toggle {
    font-size: 15px;
    color: var(--gray555);
    font-weight: var(--fw-medium);
    position: relative;
    padding-right: 25px;
}
.site-menu-toggle::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    background-color: var(--border-color2);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    opacity: 0.35;
}
.site-menu-toggle .ch-nav-lines {
    margin-right: 18px;
}
.site-menu-toggle .icon-bar {
    width: 25px;
    height: 2px;
    background-color: var(--theme-color);
    display: block;
    margin: 5px 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.site-menu-toggle .icon-bar:first-child {
    margin-top: 0;
}
.site-menu-toggle .icon-bar:nth-child(2) {
    width: 15px;
}
.site-menu-toggle .icon-bar:last-child {
    margin-bottom: 0;
}
.site-mobile-menu .site-nav-wrap > li > ul {
    background-color: var(--border-color);
}

.th-mdl-nav .th-rt img {
    width: 43px;
    filter: invert(73%) sepia(10%) saturate(2131%) hue-rotate(90deg) brightness(94%) contrast(94%);
    -webkit-filter: invert(73%) sepia(10%) saturate(2131%) hue-rotate(90deg) brightness(94%) contrast(94%);
}
.th-mdl-nav .th-rt form img {
    width: 50px;
    margin-right: 5px;
}
.th-mdl-nav .th-rt .th-user-phone img {
    margin-right: 5px;
}

.nav-link {
    padding: 0.5rem 1.5rem;
}
.th-user-phone .th-cnt {
    font-size: 15px;
    font-weight: var(--fw-bold);
}
.th-user-phone .th-cnt a {
    color: var(--black);
}
.th-user-phone .th-cnt span {
    font-weight: var(--fw-regular);
    color: var(--gray777);
}
/* Header Ends */

/* Footer */
.th-footer {
    position: relative;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    display: flex;
    width: 100%;
}
.th-footer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 250px;
    background-color: var(--theme-color);
    top: 0;
    right: 100%;
    margin-right: -30%;
}
.th-footer .th-in {
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    align-items: flex-end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    -o-align-items: flex-end;
}
.th-footer .th-in > .th-lt {
    width: 35%;
}
.th-footer .th-in > .th-rt {
    width: 60%;
    padding-left: 60px;
}
.th-footer .th-in > .th-lt .th-ft-logoSec {
    width: calc(100% - 60px);
    height: 250px;
    background-color: var(--theme-color);
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    position: relative;
    margin-bottom: 55px;
}
.th-footer .th-in > .th-lt .th-ft-logoSec::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #ffe400;
    bottom: -60px;
    right: -60px;
}
.th-footer .th-in > .th-lt .th-ft-logoSec img {
    display: flex;
    position: relative;
    z-index: 1;
}
.th-foot-form {
    position: relative;
    width: 100%;
    margin-top: 30px;
}
input[type="text"].th-form-control {
    background-color: #f4f6f5;
    width: 100%;
    padding: 20px 25px;
    height: auto;
    font-size: 15px;
}
.th-foot-form .th-form-btn {
    position: absolute;
    height: 100%;
    width: 70px;
    background-color: var(--theme-color);
    padding: 0;
    display: inline-flex;
    -moz-display: inline-flex;
    -webkit-display: inline-flex;
    -o-display: inline-flex;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.th-foot-form .th-form-btn:hover {
    background-color: var(--theme-secondary-color);
}
.th-foot-form .th-form-btn img {
    width: 25px;
    filter: invert(1);
    -webkit-filter: invert(1);
}

.th-footer .th-in > .th-rt > .th-block:first-child {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}
.th-footer .th-in > .th-rt > .th-block:first-child > .th-lt {
    width: 30%;
}
.th-footer .th-in > .th-rt > .th-block:first-child > .th-rt {
    width: 70%;
}
.th-footer .th-in > .th-rt > .th-block:first-child > .th-rt > .th-block:first-child {
    margin-bottom: 40px;
}
.th-footer .th-in > .th-rt > .th-block:first-child > .th-rt > .th-block:first-child p {
    font-size: 16px;
    color: var(--gray555);
    letter-spacing: 0.5px;
}

.th-footer .th-in > .th-rt > .th-block:first-child > .th-rt > .th-block:last-child .th-lt {
    padding-right: 50px;
    border-right: 1px solid var(--border-color);
}
.th-footer .th-in > .th-rt > .th-block:first-child > .th-rt > .th-block:last-child .th-rt {
    padding-left: 50px;
}
.th-footer .th-in > .th-rt > .th-block:first-child > .th-rt > .th-block:last-child p a {
    font-size: 18px;
    color: var(--gray555);
}
.th-footer .th-in > .th-rt > .th-block:first-child > .th-rt > .th-block:last-child p a:hover {
    color: var(--theme-color);
}

.th-footer .th-in > .th-rt > .th-block:last-child > .th-lt {
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}
.th-footer .th-in > .th-rt > .th-block:last-child > .th-rt {
    padding-left: 40px;
}

.th-ft-links li {
    margin-bottom: 15px;
}
.th-ft-links li:last-child {
    margin-bottom: 0;
}
.th-ft-links li a {
    color: var(--gray555);
    font-size: 16px;
}

.th-foot-socials li a {
    width: 40px;
    height: 40px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    margin: 0 10px;
}
.th-foot-socials li a:first-child {
    margin-left: 0;
}
.th-foot-socials li a:nth-child(5) {
    margin-right: 0;
}
.th-foot-socials li a i {
    color: #989898;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-size: 18px;
}
.th-foot-socials li a:hover {
    background-color: var(--theme-color);
}
.th-foot-socials li a:hover i {
    color: var(--white);
}

.th-footer .th-foot {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 50px;
}
.th-footer .th-foot p,
.th-footer .th-foot p a {
    color: var(--gray555);
    font-size: 15px;
}

.th-footer p a:hover,
.th-footer a:hover {
    color: var(--theme-color);
}
#spnTop {
    right: 20px;
    bottom: 20px;
    background-color: var(--theme-color);
    position: fixed;
    line-height: 1;
    width: 50px;
    height: 50px;
    transform: rotate(180deg) scale(0);
    -webkit-transform: rotate(180deg) scale(0);
    -moz-transform: rotate(180deg) scale(0);
    -ms-transform: rotate(180deg) scale(0);
    -o-transform: rotate(180deg) scale(0);
    color: var(--white);
    font-size: 12px;
    z-index: 4;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.44, -1.39, 0, 1.78);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 1s cubic-bezier(0.44, -1.39, 0, 1.78);
    -moz-transition: all 1s cubic-bezier(0.44, -1.39, 0, 1.78);
    -ms-transition: all 1s cubic-bezier(0.44, -1.39, 0, 1.78);
    -o-transition: all 1s cubic-bezier(0.44, -1.39, 0, 1.78);
}
#spnTop i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    font-size: 18px;
    color: var(--white);
}
#spnTop.showTop {
    transition: all 0.5s cubic-bezier(0.44, -1.39, 0, 1.78);
    opacity: 1;
    visibility: visible;
    transform: rotate(180deg) scale(1);
    -webkit-transform: rotate(180deg) scale(1);
    -moz-transform: rotate(180deg) scale(1);
    -ms-transform: rotate(180deg) scale(1);
    -o-transform: rotate(180deg) scale(1);
}
#spnTop:hover {
    background-color: var(--theme-secondary-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
/* Footer Ends */

/* Banner Section */
.th-bannerSec {
    position: relative;
}
.th-bannerSecIn .owl-theme .owl-dots {
    position: absolute;
    right: 140px;
    display: flex;
    bottom: 27px;
}
.th-bannerSecIn .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    margin-right: 25px;
    width: 7px;
    height: 7px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    background-color: white;
}
.th-bannerSecIn .owl-theme .owl-dots .owl-dot.active span,
.th-bannerSecIn .owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--theme-color);
}

.th-bannerSecIn .owl-theme .owl-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
}
.th-bannerSecIn .owl-carousel .owl-nav button {
    width: 60px;
    height: 60px;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: white;
    margin: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.th-bannerSecIn .owl-carousel .owl-nav button.owl-prev {
    margin-right: 1px;
}
.th-bannerSecIn .owl-carousel .owl-nav button:hover {
    background-color: var(--theme-color);
}
.th-bannerSecIn .owl-carousel .owl-nav button img {
    width: 25px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.th-bannerSecIn .owl-carousel .owl-nav button:hover img {
    filter: invert(1);
    -webkit-filter: invert(1);
}
.scrollDown {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    left: -20px;
    bottom: 90px;
    z-index: 1;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.scrollDown::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--theme-color);
    right: 100%;
    top: 50%;
    margin-right: 10px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
/* Banner Section Ends */

/* Info Section */
.th-infoSec {
    border-bottom: 1px solid var(--border-color);
    padding: 55px 0;
}
.th-infoSec .th-in .th-block {
    width: 25%;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    position: relative;
}
.th-infoSec .th-in .th-block::after {
    content: "";
    position: absolute;
    background-color: var(--border-color);
    width: 1px;
    height: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.th-infoSec .th-in .th-block:last-child::after {
    display: none;
}
.th-infoSec .th-in .th-block .img-box {
    width: 60px;
    margin-right: 20px;
}
.th-infoSec .th-in .th-block .img-box img {
    width: 100%;
    filter: invert(73%) sepia(10%) saturate(2131%) hue-rotate(90deg) brightness(94%) contrast(94%);
    -webkit-filter: invert(73%) sepia(10%) saturate(2131%) hue-rotate(90deg) brightness(94%) contrast(94%);
}
.th-infoSec .th-in .th-block .th-cnt {
    font-size: 17px;
    font-family: var(--secondary-font);
    color: #000;
    line-height: 24px;
}
/* Info Section Ends */

/* Product Section */
.th-productSec {
    padding: 65px 0;
}
.th-productSec .th-productSecTitle {
    width: 100%;
    margin-bottom: 20px;
}
.th-productSec .th-in {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
.th-productSec .th-in .th-productCard {
    width: 33.33%;
    padding: 20px;
}
.th-productCard .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.th-productCard .img-box img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.th-productCard .img-box .th-pdt-btn {
    position: absolute;
    bottom: -200px;
    left: 20px;
    text-transform: uppercase;
    background-color: var(--theme-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-weight: var(--fw-regular);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.th-productCard:hover .img-box .th-pdt-btn {
    bottom: 20px;
}
.th-productCard .img-box .th-pdt-btn:hover {
    background-color: var(--theme-secondary-color);
}
.th-productCard .th-cnt {
    width: 100%;
    border: 1px solid var(--border-color);
    border-top: 0;
    padding: 30px;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
}
.th-productCard .th-cnt > span {
    width: 100%;
    text-transform: uppercase;
    color: var(--theme-color);
    font-weight: var(--fw-medium);
    font-size: 12px;
    margin-bottom: 5px;
}
.th-productCard .th-cnt > a {
    font-family: var(--secondary-font);
    font-size: 18px;
    color: var(--black);
}
.th-productCard .th-cnt > p {
    font-size: 15px;
    color: var(--gray555);
}
.th-productCard .th-cnt .price {
    width: 100%;
    font-family: var(--secondary-font);
    font-size: 22px;
    color: var(--black);
    margin-top: 12px;
    font-weight: var(--fw-medium);
}
.th-pdtExtra {
    width: 100%;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    border-top: 1px solid var(--border-color);
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    margin-top: 15px;
}
.th-pdtExtra .th-block {
    padding-top: 20px;
    width: auto;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    position: relative;
}
.th-pdtExtra .th-block::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    bottom: 0;
    right: -35px;
    background-color: var(--border-color);
}
.th-pdtExtra .th-block:last-child::after {
    display: none;
}
.th-pdtExtra .th-block i {
    color: #c3c5c3;
    font-size: 22px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.th-pdtExtra .th-block:hover i {
    color: var(--theme-color);
}
.th-pdtExtra .th-block span {
    font-size: 13px;
    color: var(--gray555);
}
/* Product Section Ends */

/* Offer Section */
.th-offerSection .th-in .th-block {
    width: 33.33%;
    padding: 20px;
}
.th-offerSection .th-in .th-block .img-box {
    display: block;
}
.th-offerSection .th-in .th-block .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.th-offerSection .th-in .th-block:first-child .img-box,
.th-offerSectiona .th-in .th-block:nth-child(2) .img-box,
.th-offerSection .th-in .th-block:last-child .img-box {
    position: relative;
    overflow: hidden;
}
.th-offerSectiona .th-in .th-block:nth-child(2) .img-box {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.th-offerSection .th-in .th-block:first-child .img-box {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.th-offerSection .th-in .th-block:last-child .img-box {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.th-offerSection .th-in .th-block:first-child .img-box img {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.th-offerSection .th-in .th-block:last-child .img-box img {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.th-offerSection .th-in .th-block:first-child .img-box::before,
.th-offerSection.th-offerSectiona .th-in .th-block:nth-child(2) .img-box::before,
.th-offerSection .th-in .th-block:last-child .img-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 212, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 212, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 212, 255, 0) 100%);
    opacity: 0.5;
}
.th-offerSection .th-in .th-block:first-child .img-box .th-cnt,
.th-offerSectiona .th-in .th-block:nth-child(2) .img-box .th-cnt,
.th-offerSection .th-in .th-block:last-child .img-box .th-cnt {
    position: absolute;
    bottom: 60px;
    left: 45px;
    padding-right: 60px;
}
.th-offerSection .th-in .th-block .img-box img {
    width: 100%;
}
.th-offerSection .th-in .th-block:first-child {
    padding-left: 0;
}
.th-offerSection .th-in .th-block:last-child {
    padding-right: 0;
}
.th-offerSection .th-in .th-block:first-child .img-box .th-cnt .th-main-title,
.th-offerSectiona .th-in .th-block:nth-child(2) .img-box .th-cnt .th-main-title,
.th-offerSection .th-in .th-block:last-child .img-box .th-cnt .th-main-title {
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: var(--fw-medium);
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.th-offerSection .th-in .th-block:first-child .img-box .th-cnt p,
.th-offerSectiona .th-in .th-block:nth-child(2) .img-box .th-cnt p,
.th-offerSection .th-in .th-block:last-child .img-box .th-cnt p {
    font-size: 15px;
    line-height: 25px;
    color: var(--white);
    margin-bottom: 30px;
}
.th-offerSection .th-in .th-block:first-child .img-box .th-cnt .th-offer-btn,
.th-offerSectiona .th-in .th-block:nth-child(2) .img-box .th-cnt .th-offer-btn,
.th-offerSection .th-in .th-block:last-child .img-box .th-cnt .th-offer-btn {
    background-color: transparent;
    padding: 0;
    padding-bottom: 10px;
    padding-right: 30px;
    border: none;
    border-bottom: 1px solid var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--fw-regular);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    color: var(--white);
}
.th-offerSection .th-in .th-block:first-child .img-box .th-cnt .th-offer-btn:hover,
.th-offerSectiona .th-in .th-block:nth-child(2) .img-box .th-cnt .th-offer-btn:hover,
.th-offerSection .th-in .th-block:last-child .img-box .th-cnt .th-offer-btn:hover {
    letter-spacing: 3px;
    background-color: transparent;
}
.th-offerSection .th-in .th-block:nth-child(2) {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
}
.th-offerSection.th-offerSectiona .th-in .th-block:nth-child(2) {
    flex-direction: row;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -o-flex-direction: row;
}
.th-offerSection .th-in .th-block:nth-child(2) img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.th-offerSection .th-in .th-block:nth-child(2) .th-cnt {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    text-align: center;
    margin-top: 50px;
}
.th-offerSection.th-offerSectiona .th-in .th-block:nth-child(2) .th-cnt {
    display: block;
    margin: 0;
}
.th-offerSection.th-offerSectiona .th-in .th-block:nth-child(2) .th-cnt {
    text-align: left;
}

.th-offerSection .th-in .th-block:nth-child(2) .th-cnt .th-main-title {
    font-family: var(--secondary-font);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: var(--fw-medium);
}
.th-offerSection .th-in .th-block:nth-child(2) .th-cnt span {
    display: block;
    margin-bottom: 30px;
    font-family: var(--secondary-font);
    font-size: 22px;
    line-height: 30px;
    color: var(--gray555);
    font-weight: var(--fw-medium);
}
.th-offerSection .th-in .th-block:nth-child(2) .th-cnt .th-offer-btn {
    background-color: var(--theme-color);
    padding: 16px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    color: var(--white);
    border: none;
}
.th-offerSection .th-in .th-block:nth-child(2) .th-cnt .th-offer-btn:hover {
    background-color: var(--theme-secondary-color);
}
/* Offer Section Ends */

/* Popular Product Section */
.th-productSec.th-productSec-popular .th-container {
    flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
}
.th-productSec.th-productSec-popular .th-productSecTitle {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    width: 100%;
}
.th-com-btn {
    background-color: var(--theme-color);
    padding: 16px 30px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    font-weight: var(--fw-medium);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    border: none;
}
.th-com-btn:hover,
.th-com-btn:active,
.th-com-btn:focus {
    background-color: var(--theme-secondary-color);
    color: var(--white) !important;
}
/* Popular Product Section Ends */

/* Popular Brands */
.th-popular-brands .th-title-wrap {
    width: 100%;
    margin-bottom: 30px;
}
.brands-carousel .img-box {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    margin-bottom: 15px;
}
.brands-carousel .img-box img {
    width: 100px;
}
.brands-carousel.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 50px;
    margin-bottom: 30px;
}
.brands-carousel.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 0 15px;
}
.brands-carousel.owl-theme .owl-dots .owl-dot.active span,
.brands-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--theme-color);
}
.brands-carousel.owl-theme .item {
    text-align: center;
    text-transform: uppercase;
    color: var(--gray555);
    font-size: 13px;
}
/* Popular Brands Ends */

/* Middle Image Section */
.th-middle-img {
    width: 100%;
    margin-top: 20px;
}
/* Middle Image Section Ends */

/*Styled by subheesh*/

.breadCrembs {
    width: 100%;
    clear: both;
    background: var(--grayBg);
    height: 40px;
}
.detailsIn {
    width: 100%;
    clear: both;
    position: relative;
    padding: 30px 0;
}

.dtlsLeft {
    width: 65%;
}
.dtlsRight {
    width: 35%;
    padding-left: 30px;
}
.th-title-large,
.th-title-medium,
.th-title-small {
    display: block;
    margin: 0 0 20px 0;
    font-weight: 500;
}
.th-title-large {
    font-size: 25px;
}
.th-title-medium {
    font-size: 22px;
}
.th-title-small {
    font-size: 20px;
}
.enquireForm {
    width: 100%;
    clear: both;
    position: relative;
    border-radius: 5px;
    background: var(--grayBg);
    padding: 30px 35px;
    padding-bottom: 5px;
}
.formField {
    width: 100%;
    clear: both;
    position: relative;
}
.inputStyle {
    width: 100%;
    padding: 10px 20px !important;
    background: var(--white) !important;
    font-size: 16px;
    color: var(--gray555) !important;
    border: none;
    outline: none;
    min-height: 55px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
}
.selectStyle {
    width: 100%;
    padding: 15px 20px !important;
    background-color: var(--white) !important;
    font-size: 16px;
    color: var(--gray555) !important;
    border: none;
    outline: none;
    min-height: 55px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.enquireForm .th-main-title {
    margin: 0 0 20px 0;
}
.inputStyle::-webkit-input-placeholder,
.textareaStyle::-webkit-input-placeholder {
    color: var(--gray555) !important;
    opacity: 1;
}
.inputStyle:-ms-input-placeholder,
.textareaStyle:-ms-input-placeholder {
    color: var(--gray555) !important;
    opacity: 1;
}
.inputStyle::placeholder,
.textareaStyle::placeholder {
    color: var(--gray555) !important;
    opacity: 1;
}
.textareaStyle {
    width: 100%;
    padding: 15px 20px !important;
    background: var(--white) !important;
    font-size: 16px;
    color: var(--gray555) !important;
    border: none;
    outline: none;
    min-height: 150px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    margin: 0 0 20px 0;
}
.enquireForm .th-com-btn {
    width: 100%;
    text-align: center;
    padding: 20px 30px;
}
.shareSocial span {
    display: block;
    font-size: 15px;
    color: var(--gray555);
}
.shareSocial .socialWrap {
    padding: 20px 0;
}
.shareSocial .socialWrap li {
    padding: 0 8px;
}
.shareSocial .socialWrap li a {
    display: block;
    font-size: 17px;
    color: var(--gray555);
}
.shareSocial .socialWrap li a:hover {
    color: var(--theme-color);
}
.icoWrap {
    background: var(--grayBg);
    position: relative;
    width: 100%;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 0 30px 0;
}
.icoWrap .icoCol {
    width: 50%;
    padding: 30px;
    border-right: 1px solid var(--white);
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    text-align: center;
}
.dtlsIcoBlock {
    margin: 0 0 38px 0;
}
.icoWrap .icoCol i {
    display: block;
    width: 50px;
    height: auto;
    margin: 0 auto 5px auto;
}
.icoWrap .icoCol:nth-child(2),
.icoWrap .icoCol:nth-child(4) {
    border-right: none;
}
.icoWrap .icoCol:nth-child(3),
.icoWrap .icoCol:nth-child(4) {
    border-bottom: none;
}
.icoWrap .icoCol i img {
    filter: invert(73%) sepia(10%) saturate(2131%) hue-rotate(90deg) brightness(94%) contrast(94%);
    -webkit-filter: invert(73%) sepia(10%) saturate(2131%) hue-rotate(90deg) brightness(94%) contrast(94%);
}
.icoWrap .icoCol span {
    display: block;
    font-size: 15px;
    color: var(--gray555);
    line-height: 1.5;
}
.dtlsIcoBlock .icoBlock {
    max-width: 16.666%;
    padding: 0 10px;
}
.dtlsIcoBlock .icoBlock i {
    display: block;
    margin: 0 0 3px 0;
    color: #c3c5c3;
    font-size: 22px;
    text-align: center;
    line-height: 1;
    -moz-transition: 0.5;
    -webkit-transition: 0.5;
    transition: 0.5;
}
.dtlsIcoBlock .icoBlock span {
    display: block;
    font-size: 13px;
    color: var(--gray777);
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
}
.dtlsIcoBlock .icoBlock:hover i {
    color: var(--theme-color);
}
.dialog-search-content .search-form .search-field,
.dialog-search-content .woocommerce-product-search .search-field {
    font-style: normal;
    font-weight: normal;
}
.th-bannerTitle {
    margin-bottom: 15px;
}
#layout-p-list .products.columns-4.list .product .th-pdtExtra .th-block::after {
    bottom: 10px;
}
.th-breadcrumbs .th-in .th-lt {
    width: 100%;
}
.th-breadcrumbs .th-in .th-lt .img-box img {
    display: block;
    width: 100%;
    max-width: 100%;
}
.th-footer .th-main-title {
    font-weight: 400;
}
.th-footer .th-Hrs {
    font-size: 18px;
    color: var(--gray555);
    display: flex;
}
.th-footer .th-Hrs i {
    display: block;
    color: var(--theme-color);
    margin: 0 8px 0 0;
    font-size: 24px;
}
.th-foot-socials {
    margin-left: -13px;
}