@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Roboto", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* font-family: "Lato", sans-serif; */

:root {
    scroll-behavior: smooth;
    --roboto-font: "Roboto", sans-serif;
    --lato-font: "Lato", sans-serif;
    --bg-color: #fff;
    --light-bg-color: #EAEAEA;
    --primary-color-1: #4264D1;
    --heading-text-color: #1A1D26;
    --text-color: #767676;
    --primary-color-2: #19264C;
    --alt-text-color: #888888;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--roboto-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.5;
    background-color: var(--bg-color);
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: var(--heading-text-color);
    font-weight: 800;
    font-family: var(--lato-font);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    font-size: 130px;
    line-height: 1.3;
    color: var(--bg-color);
}

h2,
.h2-title {
    font-size: 55px;
    line-height: 1.3;
}

h3,
.h3-title {
    font-size: 50px;
    line-height: 1.3;
}

h4,
.h4-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 15px;

}

h5,
.h5-title {
    font-size: 18px;
    line-height: 1.2;

}




a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--primary-color-1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--primary-color-2);
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
.form-control,
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0 16px;
    appearance: none;
    border: 1px solid #bfbfbf;
    border-radius: 0;
    height: 48px;
    background-color: transparent;
    font-size: 16px;
    line-height: 46px;
    color: #000;
    font-family: var(--roboto-font);
    font-weight: 300;
    width: 100%;
    background-clip: padding-box;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
.form-control:focus {
    border-color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    color: #000;
}

textarea,
textarea.form-control {
    background-color: transparent;
    font-size: 16px;
    color: #000;
    font-family: var(--roboto-font);
    font-weight: 300;
    background-clip: padding-box;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 1px solid #bfbfbf;
    padding: 0 16px;
    width: 100%;
    color: #000;
    height: 158px;
    line-height: 1.2;
    outline: none !important;
    resize: none;
    padding-top: 18px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

textarea:focus,
textarea.form-control:focus {
    border-color: #000;
}

select {
    border: 1px solid #bfbfbf;
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select:focus {
    border-color: #000;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background-color: rgba(66, 99, 209, 0.6);
    border-radius: 100%;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

#scroll:hover {
    background: var(--text-color);
}

#scroll em {
    font-style: normal;
    color: #fff;
    font-size: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover em {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

/* Custom CSS */
.basic_bttn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-height: 55px;
    border-radius: 50px;
    background: var(--primary-color-1);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 25px;
    color: var(--bg-color);
    min-width: 175px;
    letter-spacing: 0.04em;
}

.basic_bttn:hover {
    background: var(--primary-color-2);
    color: var(--bg-color);
}

.call_crcle {
    width: 41px;
    height: 41px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--bg-color);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 14px;
}

.hddr_bnnr_hldr .basic_bttn {
    padding: 6px 25px 6px 10px;
    min-width: 193px;
}

.basic_bttn:hover .call_crcle img {
    -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(6117%) hue-rotate(192deg) brightness(100%) contrast(97%);
    filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(6117%) hue-rotate(192deg) brightness(100%) contrast(97%);
}

.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

/* Header Section */
/* navbar*/
.main-head {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 101;
    padding: 9px 0;
}

.main-head::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 170px;
    min-width: 170px;
    display: inline-block;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    border-radius: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 23px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: var(--bg-color);
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    text-transform: uppercase;
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--bg-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    opacity: 1;
}

.hddr_bnnr_hldr {
    margin-left: 45px;
}

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    -webkit-box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    width: 267px;
    padding: 20px;
    overflow: hidden;
    text-transform: uppercase;
}

.sub-menu>li>a {
    color: var(--text-color);
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.navbar-nav>li.menu-item-has-children>.sub-menu>li>a {
    width: calc(100% - 20px);
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.navbar-nav>li.menu-item-has-children>.sub-menu>li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.navbar-nav>li.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu {
    background: transparent;
    padding-top: 8px;
}

.navbar-nav>li.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu>li {
    margin-bottom: 8px;
}

.navbar-nav>li.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu>li:last-child {
    margin-bottom: 0;
}

.navbar-nav>li.menu-item-has-children>.sub-menu>li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    color: var(--primary-color-1);
}

.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    width: 160px;
}




/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0 !important;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* Banner Section */
.sldr_hldr_box {
    min-height: 850px;
    position: relative;
    padding: 220px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.sldr_img_box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.sldr_img_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sldr_img_box::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.29);
}

.sldr_contnt_box {
    width: 100%;
}

.bnnr_cntnt_box {
    max-width: 772px;
    color: var(--bg-color);
    position: relative;
}

.bnnr_cntnt_box::before {
    position: absolute;
    content: "";
    height: 384px;
    z-index: -1;
    width: 120%;
    background: #666666;
    border-radius: 100%;
    left: -15%;
    pointer-events: none;
    -webkit-filter: blur(250px);
    filter: blur(250px);
}

h1 span,
.h1-title span {
    font-size: 55px;
    display: block;
    letter-spacing: 0.10em;
}

h1,
.h1-title {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.get_in_tuch_bttn {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bg-color);
    min-height: 181px;
    width: 55px;
    background: var(--primary-color-1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    right: 0;
    z-index: 100;
    bottom: 30%;
    border-radius: 0px 8px 8px 0px;
    letter-spacing: 0.04em;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    font-size: 16px;
}

.get_in_tuch_bttn:hover {
    background: var(--primary-color-2);
    color: var(--bg-color);
}

.bnnr_sldr .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bnnr_sldr .sldr_item {
    height: auto;
}

.bnnr_section {
    position: relative;
}

.bnnr_sldr_dots_hlder {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    bottom: 170px;
}

.custom_dots {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin: 0 -2px;
}

.custom_dots>* {
    padding: 0 2px;
    line-height: 0;
}

.custom_dots button {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: transparent;
    border: 1.5px solid var(--primary-color-1);
    font-size: 0;
    padding: 0;
    border-color: transparent;
    position: relative;
    pointer-events: none !important;
    cursor: none;
    outline: none !important;
}

.custom_dots button::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: var(--bg-color);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: all;
}

.custom_dots li.slick-active button {
    border-color: var(--primary-color-1);
}

.custom_dots li.slick-active button::before {
    background: var(--primary-color-1);
}

.cmn_gap {
    padding: 100px 0;
}

.dsgn_lft_box {
    height: 100%;
}

.dsgn_img_box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.dsgn_img_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.dsgn_vdeo_box {
    padding-top: 30.22%;
    position: relative;
    border: 15px solid #FBFBFB;
    border-radius: 40px;
    overflow: hidden;
    max-width: 60.5%;
    margin-left: auto;
    margin-top: -24%;
    margin-right: -4%;
}

.dsgn_vdeo_box::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    background: rgba(25, 38, 76, 0.70);
    z-index: 1;
}

.dsgn_vdeo_box>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.yutube_bttn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 63px;
    height: 63px;
    border-radius: 100%;
    background: #F20000;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.yutube_bttn img {
    max-width: 32px;
}

.pge_hdng:not(:last-child) {
    margin-bottom: 35px;
}

.pge_hdng h2 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dsgn_rght_cntnt {
    padding-left: 30px;
}

.dsgn_rght_col {
    -ms-flex-item-align: center;
    align-self: center;
}

.dsgn_bttn_hlder {
    padding-top: 15px;
}

.dsgn_bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.05;
}

.dsgn_section {
    position: relative;
    padding-bottom: 170px;
}

.pge_hdng.text-center {
    max-width: 1188px;
    margin-left: auto;
    margin-right: auto;
}

.unprlld_box {
    height: 100%;
    min-height: 430px;
    background: var(--light-bg-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.unprlld_bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

.unprlld_bg::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(26, 29, 38, 0.75);
}

.unprlld_bg>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.unprlld_box>*:not(.unprlld_bg) {
    position: relative;
    z-index: 2;
}

.unprlld_box>*:not(.unprlld_icon_box) {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.rde_mre_lnk {
    color: var(--heading-text-color);
    text-decoration: underline !important;
    font-size: 16px;
}

.unprlld_icon_box {
    margin-bottom: 28px;
}

.unprlld_box h3 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}


.unprlld_box * {
    color: var(--bg-color);
}

.unprlld_box .unprlld_icon_box {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.section_dvder {
    border-top: 1px solid rgba(224, 224, 224, 0.5);
}

.section_dvder {
    margin-top: 100px;
    position: relative;
    padding: 0 16px;
}

.section_dvder::before,
.section_dvder::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: var(--bg-color);
    border: 4px solid #19264C;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.section_dvder::before {
    left: 0;
}

.section_dvder::after {
    right: 0;
}

.hdng_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wrk_box {
    position: relative;
    overflow: hidden;
    height: 543px;
}

.wrk_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
}

.wrk_col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: -webkit-box-flex 0.1s ease;
    transition: -webkit-box-flex 0.1s ease;
    -o-transition: flex 0.1s ease;
    transition: flex 0.1s ease;
    transition: flex 0.1s ease, -webkit-box-flex 0.1s ease, -ms-flex 0.1s ease;
}

.wrk_img_box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.wrk_img_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.wrk_cntnt_box {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 45px 34px;
    background: rgba(0, 0, 0, 0.70);
    color: var(--bg-color);
    font-size: 20px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.explre_bttm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.wrk_cntnt_box h3 {
    color: var(--bg-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.explre_bttn {
    width: 156px;
    height: 156px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    background: -o-linear-gradient(339.65deg, rgba(217, 217, 217, 0.31) -0.15%, rgba(217, 217, 217, 0.18) -0.14%, rgba(217, 217, 217, 0.09) 73.53%);
    background: linear-gradient(110.35deg, rgba(217, 217, 217, 0.31) -0.15%, rgba(217, 217, 217, 0.18) -0.14%, rgba(217, 217, 217, 0.09) 73.53%);
    -webkit-box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bg-color);
    text-align: center;
    line-height: 1.3;
    opacity: 0;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    pointer-events: none;
}

.explre_bttn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--bg-color);
}

.explre_bttm p {
    margin-bottom: 0;
}

.wrk_col.active .wrk_cntnt_box {
    background: rgba(0, 0, 0, 0.1);
}

.wrk_col.active .explre_bttn {
    pointer-events: all;
}

.hdng_row {
    margin-bottom: 50px;
}

.prdct_img_box {
    padding-top: 67%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: block;
}

.prdct_img_box>img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.prdct_icon_box {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: var(--primary-color-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -30px auto;
    z-index: 1;
    position: relative;
}

.prdct_icon_box img {
    max-width: 30px;
    max-height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}

.prdct_img_box_outr {
    position: relative;
}

.prdct_box {
    padding: 16px;
    background: var(--bg-color);
    border-radius: 15px;
    border: 1px solid #F0F0F0;
    height: 100%;
    -webkit-box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0);
    box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.prdct_cntnt_box {
    padding-top: 46px;
    text-align: center;
    max-width: 307px;
    margin: 0 auto;
}

.prdct_box h3 {
    text-transform: uppercase;
    color: var(--heading-text-color);
    letter-spacing: 0.04em;
}

.prdct_box h3 a {
    color: var(--heading-text-color);
}

.prdct_box h3 a:hover {
    color: var(--primary-color-1);
}

.prdct_box:hover {
    border-color: transparent;
    -webkit-box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
}


.chse_img_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.chse_img_box>* {
    padding: 0 15px;
    width: 50%;
}

.chse_img_indvdl_box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.chse_indvl_col:first-child .chse_img_indvdl_box {
    padding-top: 176%;
}

.chse_indvl_col:last-child .chse_img_indvdl_box {
    padding-top: 140%;
}

.chse_img_indvdl_box img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.chse_txt_box {
    padding-left: 15px;
}

.chse_txt_box li {
    padding-left: 30px;
    position: relative;
    margin-top: 20px;
}

.chse_txt_box li:last-child {
    margin-bottom: 0;
}

.chse_txt_box li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url(images/grn_tck.svg) no-repeat center center;
    background-size: 20px;
}

.chse_txt_box ul {
    margin-top: -20px;
    margin-bottom: 20px;
}

.chse_txt_box li strong {
    text-transform: uppercase;
    color: var(--heading-text-color);
    font-family: var(--lato-font);
}

.chse_txt_box h2 {
    margin-left: -47%;
}

.footr_top_box {
    max-width: 1030px;
    margin: 0 auto;
    background: var(--primary-color-1);
    color: var(--bg-color);
    font-size: 16px;
    font-weight: 800;
    font-family: var(--lato-font);
    border-radius: 20px;
    padding: 37px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: -87px;
    position: relative;
    z-index: 2;
}

.top_col {
    width: calc(100% / 3);
}


.footr_cntnt_icon_box {
    height: 35px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footr_cntnt_icon_box img {
    max-width: 48px;
    max-height: 35px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footr_top_box p {
    max-width: 256px;
    margin-left: auto;
    margin-right: auto;
    text-transform: capitalize;
}

.footr_contnt_top_box {
    position: relative;
    height: 100%;
    padding: 0 10px;
}

.top_col:not(:last-child) .footr_contnt_top_box::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, #FFFFFF 51.44%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(51.44%, #FFFFFF), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 51.44%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
}

.footr_outr {
    padding-top: 160px;
    background: var(--primary-color-2);
    color: #BFBFBF;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footr_logo {
    margin-bottom: 24px;
}

.footr_logo img {
    max-width: 189px;
}

.footr_abut_box {
    max-width: 470px;
}

.footr_top {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footr_logo_lstng {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -9px;
}

.footr_logo_lstng>li {
    width: 33.3333%;
    padding: 0 9px;
}

.footr_logo_lstng>li img {
    max-height: 55px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footr_bottom {
    padding: 40px 0;
}

.footr_bttm_row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footr_ttle {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bg-color);
    font-family: var(--lato-font);
}

.footer_heading {
    padding-bottom: 25px;
}

.footr_links ul {
    margin-top: -15px;
}

.footr_links ul>li {
    margin-top: 15px;
    line-height: 1;
}

.footr_links ul>li a {
    color: #BFBFBF;
}

.footr_links ul>li a:hover {
    color: var(--primary-color-1);
}

.footr_bttm_lstng {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    line-height: 1;
}

.footr_bttm_lstng li a {
    color: #BFBFBF;
}

.footr_bttm_lstng li a:hover {
    color: var(--primary-color-1);
}

.footr_bttm_lstng li:not(:last-child) {
    margin-right: 4px;
    padding-right: 4px;
    border-right: 1px solid #BFBFBF;
}

.cpyrght_txt {
    color: #BFBFBF;
}

.cpyrght_txt a {
    color: #BFBFBF;
}

.cpyrght_txt a:hover {
    color: var(--primary-color-1);
}

.footr_scl_links li a {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.17);
}

.footr_scl_links li a img {
    max-width: 20px;
    width: 100%;
}

.footr_scl_links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -8px;
    margin-right: -8px;
}

.footr_scl_links ul>* {
    padding: 0 8px;
}

.footr_scl_links li a:hover {
    background: var(--primary-color-1);
}

.footr_map_box {
    position: relative;
    padding-top: 43%;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 20px;
}

.footr_map_box iframe,
.footr_map_box img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.footr_map_box img {
    z-index: 2;
    border-radius: 7px;
}

.lrge_txt {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 9.844vw;
    font-family: var(--lato-font);
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    width: 100%;
    text-align: center;
    z-index: -1;
}

.pddng_lft_110 {
    padding-left: 110px;
}

.pddng_lft_30 {
    padding-left: 30px;
}

.pddng_lft_65 {
    padding-left: 65px;
}

.chse_txt_box .pge_hdng {
    margin-bottom: 0;
    padding-bottom: 25px;
}

/* Design & Install */
.innr_bnnr_section {
    min-height: 460px;
}

.innr_bnnr_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 100px 0 40px;
    position: relative;
    z-index: 1;
}

.innr_bnnr_section::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.3);
}

.innr_bnnr_section h1,
.innr_bnnr_section .h1-title {
    font-size: 80px;
}

.cmprhnsve_lft_col {
    width: 70%;
}

.cmprhnsve_rght_col {
    width: 30%;
}

.cmprhnsve_row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.prjct_bttn_lstng li a {
    min-height: 93px;
    padding: 12px;
    border-radius: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--primary-color-1);
    color: var(--bg-color);
    width: 100%;
    padding-right: 45px;
}

.prjct_bttn_lstng li a i {
    width: 69px;
    height: 69px;
    background: var(--bg-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 18px;
    flex-shrink: 0;
}

.prjct_bttn_lstng li a i img {
    max-width: 36px;
    max-height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
}

.prjct_bttn_lstng li a strong {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.prjct_bttn_lstng {
    margin-top: -20px;
}

.prjct_bttn_lstng>li {
    margin-top: 20px;
}

.prjct_bttn_lstng li a:hover {
    background: var(--primary-color-2);
    color: var(--bg-color);
}

.prjct_bttn_lstng li a:hover i img {
    -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(6117%) hue-rotate(192deg) brightness(100%) contrast(97%);
    filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(6117%) hue-rotate(192deg) brightness(100%) contrast(97%);
}

.cmprhnsve_video_box {
    position: relative;
    padding-top: 56.25%;
    margin-top: 50px;
}

.cmprhnsve_video_box>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-container,
.cmprhnsve_tab.resp-vtabs .resp-tabs-list {
    width: 100%;
    float: none;
    background: transparent;
    border: 0;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-container {
    height: 100%;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list {
    margin-top: -30px;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list li {
    padding: 0 !important;
    margin-top: 30px;
    background: transparent;
    border: 0;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list li a {
    padding: 9px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 30px;
    color: var(--bg-color);
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.cmprhnsve_tab_section {
    position: relative;
    z-index: 1;
    background: var(--primary-color-2);
    overflow: hidden;
}

.txtre_bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list li.resp-tab-active a {
    background: var(--primary-color-1);
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list li a span {
    width: 61px;
    height: 61px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--primary-color-1);
    margin-right: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list li.resp-tab-active a span {
    background: var(--bg-color);
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list li a span img {
    max-width: 31px;
    max-height: 31px;
    -o-object-fit: contain;
    object-fit: contain;
}

.cmprhnsve_tab.resp-vtabs .resp-tabs-list li.resp-tab-active a span img {
    -webkit-filter: brightness(0) saturate(100%) invert(30%) sepia(66%) saturate(1494%) hue-rotate(206deg) brightness(98%) contrast(85%);
    filter: brightness(0) saturate(100%) invert(30%) sepia(66%) saturate(1494%) hue-rotate(206deg) brightness(98%) contrast(85%);
}

.tab_img_box {
    position: relative;
    padding-top: 49%;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}

.tab_img_box img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.advntge_tab_inner {
    position: relative;
    height: 100%;
}

.tab_cntnt_box {
    padding: 30px 36px;
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 30px;
    z-index: 1;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

.tab_cntnt_box h3 {
    font-size: 30px;
    letter-spacing: 0.04em;
}

.smll_tab_hdng {
    display: block;
    color: var(--heading-text-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.04em;
    font-size: 16px;
}

.cmprhnsve_tab.resp-vtabs .resp-tab-content {
    padding: 0;
    border: 0;
    height: 100%;
}

.accrd_bttn {
    position: relative;
    font-family: var(--lato-font);
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    letter-spacing: 0.04em;
    color: var(--heading-text-color);
    padding: 20px 0;
}

.accrd_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.accrd_item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.acc_inner_panel {
    padding-bottom: 25px;
}

.accrd_icon_box {
    width: 18px;
    height: 11px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 0;
    margin-left: 10px;
    margin-top: 7px;
}

.drp_up_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.acc_panel {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease;
    -o-transition: max-height 0.35s ease;
    transition: max-height 0.35s ease;
}

.accrd_item.active .accrd_bttn {
    color: var(--primary-color-1);
}

.accrd_item.active .drp_dwn_icon {
    opacity: 0;
}

.accrd_item.active .drp_up_icon {
    opacity: 1;
}

/* CSS Added On 14.01.26 */
.aboutus-img-wrp {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.aboutus-img-wrp img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.aboutus-textpart {
    padding-left: 28px;
}

.aboutus-para-wrp>*:not(:last-child) {
    margin-bottom: 2px;
}

.aboutus-para-wrp {
    margin-bottom: 25px;
}

.about-usbtn-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-usbtn-wrp>*:not(:last-child) {
    margin-right: 10px;
}

.about-us-innr>*:not(:last-child) {
    margin-bottom: 70px;
}

.row-aboutus-two .aboutus-img-wrp {
    border-radius: 15px;
    max-width: 715px;
    margin-left: auto;
}

.row-about-us,
.row-aboutus-two {
    --bs-gutter-y: 24px;
}

.chse_txt_box.aboutus-two-texts>*:not(:last-child) {
    margin-bottom: 13px;
}

.chse_txt_box .boxxed-lists {
    margin-top: 0;
}

.boxxed-lists {
    padding: 17px 18px 20px 20px;
    border: 1px solid #EFE5E5;
    border-radius: 15px;
}

.boxxed-lists>*:first-child {
    margin-top: 0;
}

.boxxed-lists li strong {
    text-transform: capitalize;
    color: var(--text-color);
    font-weight: 600;
    font-family: var(--roboto-font);
}

.chse_txt_box.aboutus-two-texts {
    padding: 0;
    margin-right: -41px;
}

.chse_txt_box.aboutus-two-texts p {
    max-width: 677px;
}

.contacttoday-inr {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 95px 0;
    background-color: rgba(25, 38, 76, 0.4);
}

.contacttoday-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.8;
    z-index: -1;
}

.contacttoday-btn-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contacttoday-btn-wrp>*:not(:last-child) {
    margin-right: 10px;
}

.contacttoday-inr-wrp {
    max-width: 1246px;
    margin: 0 auto;
}

.contacttoday-inr-wrp h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--bg-color);
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.chse_txt_box.aboutus-two-texts>p:last-child {
    font-size: 16px;
}

.ourteam-sec .pge_hdng {
    margin-bottom: 28px;
}

.each-teammember {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.teammember-image {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding-top: 79%;
}

.teammember-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.team-member-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 22px 10px 12px 10px;
    width: 100%;
    height: 100%;
}

.heam-member-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-right: 22px;
}

.heam-member-name h3 {
    margin-bottom: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.heam-member-name .linkdin-icon {
    margin: 0 0 0 22px;
}

.linkdin-icon {
    width: 25px;
    height: 25px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.linkdin-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.team-member-text>span {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
}

.member-description-wrp>*:not(:last-child) {
    margin-bottom: 10px;
}

.member-description-wrp {
    margin-bottom: 7px;
}

.read-more-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--heading-text-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.read-more-btn span {
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    max-width: 8px;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.read-more-btn img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.read-more-btn:hover {
    color: var(--primary-color-1);
}

.read-more-btn:hover span img {
    -webkit-filter: brightness(0) saturate(100%) invert(45%) sepia(22%) saturate(2149%) hue-rotate(192deg) brightness(82%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(45%) sepia(22%) saturate(2149%) hue-rotate(192deg) brightness(82%) contrast(100%);
}

.team-btnwrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: auto;
}

.team-btnwrp>*:not(:last-child) {
    margin-right: 10px;
}

.heam-member-name a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.team-popup-wrp {
    border-radius: 20px;
    padding: 27px 50px 36px 25px;
    background-color: var(--bg-color);
    -webkit-box-shadow: 0px 4px 114px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 114px rgba(0, 0, 0, 0.25);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 775px;
}

.teampopup-outer .team-pop-face {
    max-width: 163px;
    border-radius: 15px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 20px;
}

.teampopup-outer .team-pop-face img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.popup-closebtn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #F44336;
    padding: 13px;
    position: absolute;
    right: -23px;
    top: -23px;
}

.popup-closebtn:hover {
    background-color: var(--primary-color-2);
}

.popup-closebtn img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.heammember-para-wrp h3 {
    margin-bottom: 7px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.heammember-para-wrp span {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--text-color);
}

.teampopup-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px;
    display: none;
}

.team-member-textwrp {
    color: var(--text-color);
    margin-bottom: 27px;
}


.aboutus-textpart .pge_hdng:not(:last-child) {
    margin-bottom: 15px;
}

.team-popup-wrp .is-close-button {
    display: none;
}

.team-pop-face {
    width: 163px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 28px;
    height: 169px;
}

.team-pop-face img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team-member-icon-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.team-member-icon-wrp>*:not(:last-child) {
    margin-right: 10px;
}

.team-member-icon-wrp .linkdin-icon {
    margin-left: 0;
    width: 32px;
    height: 32px;
}

/* CSS Added On 14.01.26 */
.navbar-nav li.menu-item-has-children>.sub-menu .clickD {
    display: block;
    width: 20px;
    height: 20px;
    background: url(images/menu_drop.svg) center center no-repeat;
    display: block;
    background-size: 13px;
    cursor: pointer;
    position: static;
}

.navbar-nav li.menu-item-has-children>.sub-menu>.sub-menu {
    width: 100%;
}

.navbar-nav li.menu-item-has-children {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-nav>li>.sub-menu .sub-menu.show {
    display: block;
}

.sub-menu li.current-menu-item .clickD.toggled {
    -webkit-filter: brightness(0) saturate(100%) invert(45%) sepia(22%) saturate(2149%) hue-rotate(192deg) brightness(82%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(45%) sepia(22%) saturate(2149%) hue-rotate(192deg) brightness(82%) contrast(100%);
}

.sub-menu .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sub-menu li:hover>a {
    color: var(--primary-color-1);
}

.sub-menu li:hover .clickD.toggled {
    -webkit-filter: brightness(0) saturate(100%) invert(45%) sepia(22%) saturate(2149%) hue-rotate(192deg) brightness(82%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(45%) sepia(22%) saturate(2149%) hue-rotate(192deg) brightness(82%) contrast(100%);
}

/* Our Work */
.prjct_tab .resp-tabs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.prjct_tab .resp-tabs-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0 !important;
    padding: 0 !important;
}

.prjct_tab .resp-tabs-list li a {
    font-size: 30px;
    font-family: var(--lato-font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 800;
    line-height: 1;
    padding: 0 0 8px;
    color: var(--heading-text-color);
    border-bottom: 1px solid transparent
}

.prjct_tab .resp-tabs-list li:not(:last-child) {
    margin-right: 40px;
    padding-right: 40px !important;
    border-right: 1px solid #D6C2C2 !important;
}

.resp-tabs-container {
    background: transparent;
    border: 0 !important;
}

.prjct_tab .resp-tab-content {
    border: 0 !important;
}

.prjct_tab .resp-tabs-list .resp-tab-item.resp-tab-active a {
    border-color: currentColor;
    color: var(--primary-color-1);
}

.prjct_box {
    display: block;
    border-radius: 14px;
    padding: 7px 12px;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    -webkit-box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0);
    box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0);
    position: relative;
}

.prjct_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.prjct_box figure {
    position: relative;
    padding-top: 75%;
    margin-bottom: 0;
    border-radius: 14px;
    overflow: hidden;
}

.prjct_tab_inner {
    padding-top: 62px;
}

.prjct_box:hover {
    -webkit-box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
}

.resp-tab-content {
    padding: 0;
}

/* Single Project Page */
.sngle_prjct_img {
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.sngle_prjct_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.thmbnl_gllry_box {
    margin-top: 23px;
}

.thbmnl_img_box {
    padding-top: 90%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    -webkit-box-shadow: 0px 4px 25px 8px rgba(0, 0, 0, 0);
    box-shadow: 0px 4px 25px 8px rgba(0, 0, 0, 0);
    height: 100%;
}

.thbmnl_img_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.gllry_thmbnl_item.slick-active.slick-current .thbmnl_img_box {
    border-color: var(--bg-color);
    -webkit-box-shadow: 0px 4px 25px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 25px 8px rgba(0, 0, 0, 0.05);
}

.gllry_thmbnl_sldr .thmbnl_img_outr {
    padding: 6px 4px;
    height: 100%;
}

.sldr_custm_arrw .slick-arrow {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--bg-color);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
}

.sldr_custm_arrw .slick-arrow img {
    max-width: 8px;
}

.thmbnl_gllry_box .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gllry_thmbnl_item {
    height: auto;
}

.thmbnl_gllry_box {
    position: relative;
}

.sldr_custm_arrw {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    visibility: hidden;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sldr_custm_arrw>* {
    visibility: visible;
}

.sldr_custm_arrw .slick-arrow.slick-hidden {
    display: none;
}

.sngle_logo_shre_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sngle_prjct_logo_box {
    width: 246px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.sngle_prjct_logo_box img {
    width: 100%;
}

.sngle_logo_shre_box .footr_scl_links {
    width: calc(100% - 246px);
    padding-left: 15px;
}

.bttn_wrppr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 45px;
}

.bttn_wrppr>*:not(:last-child) {
    margin-right: 22px;
}

.brdr_bttn {
    border: 1px solid var(--primary-color-1);
    background: transparent;
    color: var(--primary-color-1);
}

.brdr_bttn:hover {
    color: var(--primary-color-2);
    border-color: var(--primary-color-2);
    background: var(--bg-color);
}

.sngle_cntnt_box .footr_scl_links li a {
    background: var(--primary-color-1);
    width: 44px;
    height: 44px;
}

.sngle_cntnt_box .footr_scl_links li a:hover {
    background: var(--primary-color-2);
}

.sngle_cntnt_box .footr_scl_links {
    padding-left: 25px;
}

.sngle_cntnt_box .footr_scl_links li a img {
    max-width: 22px;
}

.sngle_cntnt_box h2,
.sngle_cntnt_box .h2-title,
.sngle_prdct_cntnt h2,
.sngle_prdct_cntnt .h2-title {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 50px;
}

.sngle_cntnt_box {
    padding-left: 20px;
}

/* Product & Equipment */
.inclsve_box {
    padding: 25px 29px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(174, 171, 171, 0.20);
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.0);
    box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.inclsve_img_box {
    display: block;
    position: relative;
    padding-top: 67%;
}

.inclsve_img_box img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.inclsve_box .brdr_bttn {
    min-width: 266px;
}

.inclsve_bttn_box {
    margin-top: 25px;
    text-align: center;
}

.inclsve_box:hover {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 35px 8px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.inclsve_box:hover .brdr_bttn,
.inclsve_box .brdr_bttn:hover {
    background: var(--primary-color-1);
    border-color: var(--primary-color-1);
    color: var(--bg-color);
}

.bg_whte .pge_hdng,
.bg_whte .pge_hdng h2 {
    color: var(--bg-color);
}

.rlble_img_box a {
    display: block;
    padding-top: 44%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.rlble_img_box a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.rlble_img_box {
    margin-bottom: 20px;
}

.rlble_box {
    padding: 15px 15px 38px;
    background: #3D5D8E;
    border: 1px solid #F2E5E5;
    border-radius: 20px;
    color: var(--bg-color);
    text-align: center;
}

.rlble_box h3 a {
    color: var(--bg-color);
    text-transform: uppercase;
}

.rlble_box h3 a:hover {
    color: var(--primary-color-2);
}

.why_chse_lstng li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.chse_icon_box {
    width: 33px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.chse_icon_box img {
    max-width: 33px;
    max-height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

.chse_rght_prt {
    width: calc(100% - 33px);
    padding-left: 13px;
}

.why_chse_lstng h3 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.why_chse_lft_box {
    max-width: 705px;
}

.why_chse_lstng {
    margin-top: -30px;
}

.why_chse_lstng>* {
    padding-top: 30px;
}

.why_chse_lstng p:not(:last-child) {
    margin-bottom: 10px;
}

/* CSS Added On 15.01.26 */

.contactuas-sec .pge_hdng.text-center {
    max-width: 1084px;
}

.contactuas-sec .pge_hdng h2 {
    margin-bottom: 10px;
}

.contact-option-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.eachcontact-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border: 1px solid #E3DDDD;
    border-radius: 15px;
    padding: 40px 30px 11px 30px;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.contact-icon {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 20px;
    position: relative;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.contact-icon::before {
    content: "";
    position: absolute;
    right: -13px;
    top: -13px;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background-color: #DDE5FF;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    position: relative;
    z-index: 2;
}

.eachcontact-options h3 {
    margin-bottom: 12px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eachcontact-options p {
    margin-bottom: 4px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.eachcontact-options a {
    color: var(--text-color);
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.eachcontact-options:hover {
    background-color: var(--primary-color-1);
    border: 1px solid var(--bg-color);
}

.eachcontact-options:hover .contact-icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.eachcontact-options:hover .contact-icon::before {
    background-color: #5A77D5;
}

.eachcontact-options:hover h3,
.eachcontact-options:hover p,
.eachcontact-options:hover a {
    color: var(--bg-color);
}

.contact-options-outer>*:not(:last-child) {
    margin-bottom: 50px;
}

.contactfoerm-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.left-contact-map-wrp {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.left-contact-map-wrp iframe {
    width: 100%;
    height: 100%;
}

.contactform-wrp {
    width: 100%;
    height: 100%;
}

.contact-form-outer {
    width: 100%;
    height: 100%;
    padding: 30px 30px 40px 30px;
    border-radius: 20px;
    background-color: #F8F8F7;
}

.contact-form-outer .each-feild-wrp {
    width: 100%;
    height: 100%;
}

.contact-form-outer input {
    width: 100%;
    border-radius: 5px;
    height: 60px;
    background-color: var(--bg-color);
    font-size: 18px;
    font-weight: 400;
    border: 1px solid #E7E7DA;
    padding: 10px 20px;
    color: var(--text-color);
}

.contact-form-outer textarea {
    width: 100%;
    height: 146px;
    border-radius: 5px;
    background-color: var(--bg-color);
    font-size: 18px;
    font-weight: 400;
    border: 1px solid #E7E7DA;
    padding: 20px;
    color: var(--text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form-outer input::-webkit-input-placeholder,
.contact-form-outer textarea::-webkit-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input::-moz-placeholder,
.contact-form-outer textarea::-moz-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input:-ms-input-placeholder,
.contact-form-outer textarea:-ms-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input::-ms-input-placeholder,
.contact-form-outer textarea::-ms-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input::-webkit-input-placeholder,
.contact-form-outer textarea::-webkit-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input::-moz-placeholder,
.contact-form-outer textarea::-moz-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input:-ms-input-placeholder,
.contact-form-outer textarea:-ms-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input::-ms-input-placeholder,
.contact-form-outer textarea::-ms-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input::placeholder,
.contact-form-outer textarea::placeholder {
    color: var(--text-color);
    opacity: 1;
}

.contact-form-outer input[type="number"]::-webkit-inner-spin-button,
.contact-form-outer input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-form-outer input[type="number"] {
    -moz-appearance: textfield;
}

.contact-form-outer input:focus,
.contact-form-outer input:focus-visible,
.contact-form-outer textarea:focus,
.contact-form-outer textarea:focus-visible,
.contact-form-outer textarea:focus,
.contact-form-outer textarea:focus-visible {
    border: 1px solid var(--primary-color-1);
    outline: none;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.contact-form-outer input[type="submit"] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 55px;
    border-radius: 50px;
    background: var(--primary-color-1);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 25px;
    color: var(--bg-color);
    min-width: 202px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    letter-spacing: 0.04em;
}

.contact-form-outer input[type="submit"]:hover {
    background: var(--primary-color-2);
    color: var(--bg-color);
}


/* blog page starts */

.blog-right-inr {
    width: 100%;
    height: 100%;
}

.blog-inr-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.each-blogs {
    width: 100%;
    height: 100%;
}

.blog-image-part {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 95%;
    display: inline-block;
}

.blog-image-part>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.calender-date {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 12px;
    border-radius: 30px;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-width: 117px;
}

.calender-date span {
    width: 13px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 6px;
}

.calender-date span img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.calender-date p {
    font-size: 13px;
    font-weight: 300;
}

.blog-textpart {
    width: 100%;
    padding-right: 18px;
}

.blog-title-wrp span {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 6px;
}

.blog-title-wrp h3 {
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.blog-title-wrp {
    margin-bottom: 12px;
}

.blog-cardpara-wrp {
    font-size: 16px;
    margin-bottom: 15px;
}

.blog-cardpara-wrp>*:not(:last-child) {
    margin-bottom: 2px;
}


.blog-btn-wrp>*:not(:last-child) {
    margin-right: 5px;
}

.gap-heading-top {
    padding-top: 90px;
}

.blogdetails-left-inr h1 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--heading-text-color);
    font-size: 50px;
}

.social-blog-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 27px;
}

.left-part-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.left-part-date>*:not(:last-child) {
    margin-right: 25px;
    padding-right: 25px;
    border-right: 1px solid #E5DBDB;
}

.each-left-date span {
    width: 22px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 10px;
}

.each-left-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.each-left-date span img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.each-left-date p {
    font-size: 16px;
}

.right-part-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.right-part-social p {
    margin-bottom: 0;
}

.share-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 13px;
}

.share-options>*:not(:last-child) {
    margin-right: 17px;
}

.each-social-icon {
    width: 39px;
    height: 39px;
    background-color: var(--primary-color-1);
    border-radius: 10px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.each-social-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.each-social-icon:hover {
    background-color: var(--primary-color-2);
}

.blog-rich-text>img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
}

.blog-rich-text p {
    margin-bottom: 20px;
}

.blogdetails-left-inr h3,
.blogdetails-left-inr h2 {
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.04em;
    font-size: 20px;
}

.blog-rich-text>*:last-child {
    margin-bottom: 0;
}

.blog-rich-text ul {
    margin-top: 50px;
}

.blog-rich-text ul>*:not(:last-child) {
    margin-bottom: 10px;
}

.articles-slider-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 20px;
}

.articles-slider-arrow>*:not(:last-child) {
    margin-right: 17px;
}

.article-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--primary-color-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 13px;
}

.article-arrow img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.article-arrow:hover {
    background-color: var(--primary-color-1);
}

.article-arrow:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.article-slider .each-article {
    padding: 15px;
}

.article-slider .slick-list {
    margin: -15px;
}

.blog-pagination-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 90px;
}

.blog-pagination-arrow .blog-btn-options {
    color: var(--text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
}

.blog-btn-options img {
    max-width: 7px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
}

.blog-btn-options.blog-btn-options-next img {
    margin: 0 0 0 10px;
}

.blog-pagination-arrow>*:not(:last-child) {
    margin-right: 17px;
}

.number-blogs {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.number-blogs:hover,
.number-blogs.active-number-blog {
    color: var(--primary-color-1);
    border-color: var(--primary-color-1);
}

.blog-pagination-arrow p {
    margin-bottom: 0;
}

.blog-pagination-arrow>*:first-child {
    margin-right: 25px;
}

.blog-pagination-arrow>*:last-child {
    margin-left: 18px;
}



.left-contact-map-wrp img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.left-contact-map-wrp iframe {
    display: none;
}

.heading-seo {
    display: none;
}


.each-blogs p {
    font-size: 16px;
    margin-bottom: 15px;
}

.each-blogs p:first-child a {
    color: var(--text-color);
}

.each-blogs p:first-child a:hover {
    color: var(--primary-color-1);
}

.each-blogs h3 {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 17px;
    font-size: 20px;
}

.each-blogs h3 a {
    color: var(--heading-text-color);
}

.each-blogs h3 a:hover {
    color: var(--primary-color-1);
}

.calender-date p {
    margin-bottom: 0;
    font-size: 13px;
}

.pagination-wrp {
    margin-top: 85px;
}

.pagination-wrp li a {
    border: 1px solid #A8A8A8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-color);
}

.pagination-wrp ul>*:not(:last-child) {
    margin-right: 17px;
}

.pagination-wrp ul>*:first-child a,
.pagination-wrp ul>*:last-child a {
    border: none;
    width: auto;
}

.pagination-wrp ul>*:first-child a:hover,
.pagination-wrp ul>*:last-child a:hover {
    border: none;
}

.pagination-wrp ul>*:first-child a:hover img,
.pagination-wrp ul>*:last-child a:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(46%) saturate(2519%) hue-rotate(210deg) brightness(81%) contrast(102%);
    filter: brightness(0) saturate(100%) invert(42%) sepia(46%) saturate(2519%) hue-rotate(210deg) brightness(81%) contrast(102%);
}

.pagination-wrp ul>*:first-child a img,
.pagination-wrp ul>*:last-child a img {
    max-width: 7px;
}

.pagination-wrp ul>*:first-child a img {
    margin-right: 10px;
}

.pagination-wrp ul>*:last-child a img {
    margin-left: 10px;
}

.pagination-wrp ul>*:nth-child(5) a {
    border: none;
    width: auto;
    height: auto;
    font-size: 24px;
    padding: 0;
}

.pagination-wrp .active>.page-link,
.pagination-wrp .page-link:hover {
    background: none;
    border: 1px solid var(--primary-color-1);
    color: var(--primary-color-1);
}

.pagination-wrp ul>*:nth-child(5) a:hover {
    color: var(--text-color);
    border: none;
}

.blog-details-catagory-wrp {
    margin-top: 50px;
}

.blog-details-catagory-wrp>*:not(:last-child) {
    margin-bottom: 5px;
}

.blogdetails-effeciancy a {
    color: var(--text-color);
}

.pagination-wrp li a:focus,
.pagination-wrp li a:focus-visible {
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.catagory-each-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catagory-each-wrp p {
    margin-bottom: 0;
}

.blogdetails-effeciancy a:hover {
    color: var(--primary-color-1);
}

.catagory-each-wrp p {
    margin-right: 2px;
    font-size: 18px;
}

.catagory-each-wrp a:first-child::after {
    display: none;
}

.catagory-each-wrp a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-color);
}

.catagory-each-wrp a:hover {
    color: var(--primary-color-1);
}

.catagory-each-wrp a:not(:last-child) {
    margin-right: 2px;
}

.catagory-each-wrp a:not(:last-child)::after {
    content: ",";
}

.catagory-trackback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.catagory-trackback>*:not(:first-child) {
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.catagory-trackback>*:not(:first-child)::before {
    content: "|";
    padding-right: 10px;
}

.each-blogs .catagory-each-wrp {
    margin: 7px 0 8px 0;
}

.each-blogs .catagory-each-wrp p,
.each-blogs .catagory-each-wrp a {
    font-size: 16px;
}

.trackback-wrp a {
    color: var(--text-color);
}

.trackback-wrp a:hover {
    color: var(--primary-color-1);
}

.article-slider .each-blogs .blog-textpart p {
    font-size: 18px;
}

/* CSS Added On 15.01.26 */
/* Eqipment Page */
.eqp_img_box img {
    max-width: 263px;
    max-height: 263px;
    -o-object-fit: contain;
    object-fit: contain;
}

.eqp_prdct_box {
    display: block;
    padding: 25px;
    background: var(--bg-color);
    border: 1px solid #EAE6E6;
    border-radius: 20px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.0);
    box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.0);
    height: 100%;
}

.eqp_prdct_box:hover {
    -webkit-box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.15);
}

.eqp_prdct_box h3 {
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.eqp_prdct_box:hover h3 {
    color: var(--primary-color-1);
}

.eqp_img_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.eqp_item {
    margin-right: 15px;
    margin-left: 15px;
}

.eqp_sldr .slick-list {
    padding: 15px 0;
    margin: 0 -15px;
}

.cstm_arrw .slick-arrow {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--primary-color-1);
    visibility: visible;
    background: var(--bg-color);
}

.cstm_arrw .slick-arrow:hover {
    background: var(--primary-color-1);
}

.cstm_arrw .slick-arrow:hover img {
    -webkit-filter: brightness(1000%);
    filter: brightness(1000%);
}

.cstm_arrw {
    position: absolute;
    left: -85px;
    right: -85px;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.eqp_sldr_parent {
    position: relative;
}

.cstm_arrw .slick-arrow img {
    max-width: 15px;
}

.eqp_sldr .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.eqp_sldr .eqp_item {
    height: auto;
}

.eqp_prdct_box_outr {
    height: 100%;
}

.eqp_vew_bttm {
    margin-top: 110px;
}

.eqm_functly_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.eqm_functly_top {
    padding-bottom: 28px;
    margin-bottom: 45px;
    border-bottom: 1px solid #E3DDDD;
}

.vew_bttn_hlder {
    width: 125px;
    border: 1px solid #E3DDDD;
    border-radius: 50px;
    padding: 8px;
    min-height: 61px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 15px;
    margin-left: auto;
}

.slct_drp_hlder {
    width: 235px;

}

.srtng_rght_sde {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.vew_bttn_hlder ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vew_bttn_hlder ul li a {
    padding: 7px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 0;
}

.slct_drp_hlder select {
    height: 61px;
    border: 1px solid #E3DDDD;
    border-radius: 50px;
    font-size: 16px;
    color: var(--text-color);
    padding: 4px 30px 4px 23px;
    background-image: url(images/srtng_drp_icon.svg);
    background-repeat: no-repeat;
    background-size: 9px;
    cursor: pointer;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vew_bttn_hlder ul li a img {
    opacity: 0.3;
}

.vew_bttn_hlder ul li.active img {
    opacity: 1;
}

/* cooking starts */

.cooking-equepment-img {
    border-radius: 15px;
    width: 100%;
    background-color: #F4F4F4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 34px;
    margin-bottom: 20px;
}

.cooking-equepment-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.ech-cooking-equepment h3 {
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 325px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ech-cooking-equepment h3 a {
    color: var(--heading-text-color);
}

.ech-cooking-equepment h3 a:hover {
    color: var(--primary-color-1);
}

.ech-cooking-equepment p {
    color: var(--heading-text-color);
    letter-spacing: 0.04em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--lato-font);
}

.ech-cooking-equepment .basic_bttn {
    width: 100%;
}

.ech-cooking-equepment .basic_bttn:hover {
    color: var(--bg-color);
    background-color: var(--primary-color-1);
}

.cooking-row {
    --bs-gutter-y: 40px;
}

.ech-cooking-equepment {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cooking-btn-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 20px;
}

.cooking-btn-wrp>*:not(:last-child) {
    margin-bottom: 10px;
}

.cooking-pagination-wrp {
    margin-top: 145px;
}

/* cooking ends */
.srtng_lft_txt {
    padding-right: 5px;
}

/* Product Details */
.breadcrumb {
    font-size: 16px;
    margin-bottom: 0;
}

.breadcrumb li a {
    color: var(--bg-color);
}

.breadcrumb li a:hover {
    color: var(--primary-color-1);
}

.breadcrumb li.active {
    color: var(--bg-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--bg-color);
}

.sngle_prdct_img_box {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #F6F6F6;
}

.sngle_prdct_img_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.sngle_prdct_cntnt {
    padding-left: 20px;
}

.sngle_prdct_cntnt ul {
    max-width: 500px;
}

.bttm_rltd_prdct_box {
    padding-top: 50px;
}

.sngle_prdct_cntnt .basic_bttn {
    margin-top: 25px;
}

.blogdetails-effeciancy span {
    width: 8px;
    display: inline-block;
    line-height: 0;
    vertical-align: 2px;
    margin-right: 6px;
}

.blogdetails-effeciancy a:hover span {
    -webkit-filter: brightness(0) saturate(100%) invert(28%) sepia(93%) saturate(1104%) hue-rotate(206deg) brightness(101%) contrast(85%);
    filter: brightness(0) saturate(100%) invert(28%) sepia(93%) saturate(1104%) hue-rotate(206deg) brightness(101%) contrast(85%);
}

.blogdetails-effeciancy.rvrse span {
    margin-right: 0;
    margin-left: 6px;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 10px;
}

/* ---------CSS Added On 16.01 ---------------- */

.blog_form input[type="search"] {
    height: 50px;
    border: none;
    padding: 0 40px 0 20px;
    border-radius: 50px;
    width: 100%;
    outline: none;
    background: #F1F1F1;
}

.form_btn input[type="submit"] {
    background: url(images/search_btn.svg) no-repeat center center;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding: 0;
    height: 16px;
    width: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 17px;
    cursor: pointer;
    font-size: 0px;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    min-width: 0 !important;
}

.search_bar {
    position: relative;
}

.search_bar input::-webkit-input-placeholder {
    font-size: 16px;
    color: var(--text-color);
}

.blog_form {
    padding: 29px 26px;
    border: 1px solid #ECECEC;
    border-radius: 15px;
    -webkit-box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--bg-color);
}

.item-toggle-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 7px;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--primary-color-1);
    border-radius: 4px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: var(--primary-color-1);
}

.item-toggle-button span {
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    width: 15px;
    height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px;
    -webkit-filter: brightness(0) saturate(100%) invert(31%) sepia(89%) saturate(852%) hue-rotate(200deg) brightness(98%) contrast(92%);
    filter: brightness(0) saturate(100%) invert(31%) sepia(89%) saturate(852%) hue-rotate(200deg) brightness(98%) contrast(92%);
}

.blog-search-sec .item-toggle-button {
    font-size: 0;
    padding: 10px;
}

.blog-search-sec .item-toggle-button span {
    width: 25px;
    height: 25px;
    margin-right: 0;
}

.item-toggle-button span img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}


.fixed-body {
    overflow: hidden;
}

.catagory_bx_wrp_inr {
    height: 100%;
    padding: 20px 5px;
}

.item-toggle-button:hover {
    background-color: var(--primary-color-1);
    color: var(--bg-color);
}

.item-toggle-button:hover span {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.blog_form .item-toggle-button {
    margin-left: 20px;
}

.blog_form form {
    width: 100%;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.cat_links {
    padding: 25px 20px;
    margin: 0;
    list-style: none;
}

.cat_links li {
    padding-left: 30px;
    position: relative;
}

.cat_links li::before {
    content: "";
    position: absolute;
    background-image: url(images/links_icon.svg);
    background-repeat: no-repeat;
    background-color: var(--primary-color-1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 2px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    left: 0;
    background-position: center center;
}

.cat_links li a {
    font-size: 17px;
    color: var(--text-color)
}

.cat_links li a:hover {
    color: var(--primary-color-1);
}

.cat_links li:not(:last-child) {
    margin-bottom: 20px;
}

.catagory_hdr h2,
.catagory_hdr .h4-title,
.catagory_hdr h3 {
    text-transform: uppercase;
    color: var(--bg-color);
}

.catagory_hdr {
    padding: 24px 25px;
    background-color: var(--primary-color-1);
}

.catagory_bx {
    background: var(--bg-color);
    -webkit-box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.catagory_bx:last-child {
    margin-bottom: 0;
}

.arc_links li:not(:last-child) {
    margin-bottom: 16px;
}

.arc_links li a {
    font-size: 17px;
    color: var(--text-color);
}

.rec_rgt_txt a h3 {
    font-size: 12px;
    font-weight: 800;
}

.rec_cntnt_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.reclft_image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.reclft_image {
    display: block;
    position: relative;
    padding-top: 95%;
    -webkit-box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    overflow: hidden;
}

.rec_lft {
    width: 35%;
}

.rec_rgt {
    width: 65%;
}

.rec_rgt_txt h3 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding-left: 12px;
    max-width: 236px;
    line-height: 1.6;
}

.rec_cntnt_row:not(:last-child) {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.scrolldown-btn {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    position: absolute;
    right: 85px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    font-size: 16px;
    color: var(--bg-color);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation: moveBox 1s infinite alternate;
    animation: moveBox 1s infinite alternate;
}

@-webkit-keyframes moveBox {
    0% {
        top: 50%;
    }

    100% {
        top: 45%;
    }
}

@keyframes moveBox {
    0% {
        top: 50%;
    }

    100% {
        top: 45%;
    }
}

.scrolldown-btn span {
    max-width: 27px;
    width: 100%;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scrolldown-btn span img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.scrolldown-btn:hover {
    color: var(--primary-color-1);
}

.scrolldown-btn:hover span {
    -webkit-filter: brightness(0) saturate(100%) invert(49%) sepia(58%) saturate(6199%) hue-rotate(215deg) brightness(86%) contrast(88%);
    filter: brightness(0) saturate(100%) invert(49%) sepia(58%) saturate(6199%) hue-rotate(215deg) brightness(86%) contrast(88%);
}


/* 19-1-26 starts */

.dsgn_section .pge_hdng {
    margin-bottom: 15px;
}

.rlble_box p {
    color: #ECECEC;
}

.sngle_prdct_section .blog_lft_wrapper .catagory_hdr h2 {
    line-height: 1.5;
}

.all_icon_removes li::before {
    display: none;
}

.all_icon_removes li {
    padding-left: 0;
}

.rec_rgt_txt h3 a {
    color: var(--heading-text-color);
}

.rec_rgt_txt h3 a:hover {
    color: var(--primary-color-1);
}

.right-part-social p {
    font-size: 16px;
}

.srtng_lft_txt p {
    font-size: 16px;
}

/* 19-1-26 ends */
.unprlld_box .rde_mre_lnk:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ========== Responsive css =========== */



@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }

    .navbar-nav>li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }

    .unprlld_box:not(.is_expanded) h3 {
        margin-bottom: 0;
    }
}

@media(min-width:1630px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1584px;
    }

}

@media(max-width:1700px) {
    .wrk_cntnt_box {
        padding: 45px 22px;
        font-size: 18px;
    }

    .row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .unprlld_box {
        padding: 20px;
    }

    .unprlld_icon_box {
        margin-bottom: 15px;
    }

    h1,
    .h1-title {
        font-size: 110px;
    }

    .explre_bttn {
        width: 132px;
        height: 132px;
    }

    .prjct_bttn_lstng li a {
        font-size: 15px;
    }

    .prjct_bttn_lstng li a i {
        width: 55px;
        height: 55px;
        margin-right: 12px;
    }

    .prjct_bttn_lstng li a i img {
        max-width: 28px;
        max-height: 28px;
    }

    .cmprhnsve_tab.resp-vtabs .resp-tabs-list li a,
    .tab_cntnt_box h3 {
        font-size: 26px;
    }

    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        font-size: 65px;
    }

    .chse_txt_box.aboutus-two-texts {
        margin-right: 0;
    }

    .inclsve_box {
        padding: 20px 16px;
    }

    .inclsve_box .brdr_bttn {
        min-width: auto;
        width: 100%;
    }

    .cstm_arrw {
        left: -65px;
        right: -65px;
    }

    .eqp_img_box img {
        max-width: 233px;
        max-height: 233px;
    }

    .sngle_prdct_lft_col {
        width: 20%;
    }

    .sngle_prdct_rght_col {
        width: 80%;
    }
}

@media(max-width:1439px) {
    body {
        font-size: 17px;
    }

    .chse_txt_box {
        padding-left: 0;
    }

    .pddng_lft_110 {
        padding-left: 40px;
    }

    .pddng_lft_65 {
        padding-left: 25px;
    }

    .pddng_lft_30 {
        padding-left: 0;
    }

    .unprlld_box h3 {
        letter-spacing: 0.02em;
    }

    h4,
    .h4-title {
        font-size: 18px;
    }

    h1,
    .h1-title {
        font-size: 90px;
    }

    .unprlld_box p {
        margin-bottom: 12px;
    }

    .navbar-nav>li {
        margin: 0 14px;
    }

    .hddr_bnnr_hldr {
        margin-left: 25px;
    }

    .navbar-brand {
        width: 155px;
        min-width: 155px;
    }

    .navbar-nav>li>a {
        font-size: 15px;
    }

    .sub-menu>li>a {
        font-size: 15px;
    }

    .cmprhnsve_lft_col {
        width: 66%;
    }

    .cmprhnsve_rght_col {
        width: 34%;
    }

    .cmprhnsve_tab.resp-vtabs .resp-tabs-list li a span {
        width: 52px;
        height: 52px;
        margin-right: 12px;
    }

    .cmprhnsve_tab.resp-vtabs .resp-tabs-list li a span img {
        max-width: 24px;
        max-height: 24px;
    }

    .cmprhnsve_tab.resp-vtabs .resp-tabs-list li a,
    .tab_cntnt_box h3 {
        font-size: 22px;
    }

    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        font-size: 55px;
    }

    /* CSS Added On 14.01.26 */

    .contacttoday-inr-wrp {
        max-width: 1046px;
    }

    .contacttoday-inr {
        padding: 80px 0;
    }

    /* CSS Added On 14.01.26 */
    .prjct_tab .resp-tabs-list li a {
        font-size: 26px;
    }

    .inclsve_col {
        width: calc(100% / 3);
    }

    .inclsve_box .brdr_bttn {
        min-width: 240px;
        width: auto;
    }


    /* CSS Added On 15.01.26 */

    .contacttoday-inr-wrp {
        max-width: 1046px;
    }

    .contacttoday-inr {
        padding: 80px 0;
    }


    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-form-outer input {
        height: 55px;
    }

    .blog-rich-text h3,
    .blog-rich-text h2 {
        font-size: 18px;
    }

    .each-blogs h3 {
        font-size: 18px;
    }

    .catagory-each-wrp p {
        font-size: 16px;
    }

    .article-slider .each-blogs .blog-textpart p {
        font-size: 17px;
    }

    /* CSS Added On 15.01.26 */
    .cstm_arrw {
        left: -35px;
        right: -35px;
    }

    .eqp_img_box img {
        max-width: 210px;
        max-height: 210px;
    }

    .cstm_arrw .slick-arrow {
        width: 45px;
        height: 45px;
    }

    .cstm_arrw .slick-arrow img {
        max-width: 12px;
    }

    .eqp_prdct_box h3 {
        font-size: 18px;
    }

    /* cooking starts */

    .ech-cooking-equepment p {
        font-size: 17px;
    }

    .ech-cooking-equepment h3 {
        font-size: 18px;
    }

    /* cooking ends */
    .sngle_cntnt_box h2,
    .sngle_cntnt_box .h2-title,
    .sngle_prdct_cntnt h2,
    .sngle_prdct_cntnt .h2-title {
        font-size: 44px;
    }

    .rec_rgt_txt h3 {
        font-size: 11px;
    }

    .cat_links {
        padding: 25px 14px;
    }

    .sngle_prdct_cntnt {
        padding-left: 0;
    }

    /* 19-1-26 starts */

    .gap-heading-top {
        padding-top: 60px;
    }

    /* 19-1-26 ends */

}

@media(max-width:1365px) {
    body {
        font-size: 16px;
    }

    .prdct_box {
        padding: 12px;
    }

    .explre_bttn {
        width: 100px;
        height: 100px;
    }

    .wrk_cntnt_box {
        font-size: 16px;
    }

    .wrk_box {
        height: 385px;
    }

    .sldr_hldr_box {
        min-height: 730px;
        padding: 160px 0;
    }

    .bnnr_sldr_dots_hlder {
        bottom: 130px;
    }

    .dsgn_vdeo_box {
        max-width: 70%;
        padding-top: 42%;
    }

    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        font-size: 45px;
    }

    /* CSS Added On 14.01.26 */
    .aboutus-textpart {
        padding-left: 0;
    }

    /* CSS Added On 14.01.26 */


    /* CSS Added On 15.01.26 */

    .aboutus-textpart {
        padding-left: 0;
    }

    .article-slider .each-blogs .blog-textpart p {
        font-size: 16px;
    }

    /* CSS Added On 15.01.26 */

    /* cooking starts */

    .cooking-pagination-wrp {
        margin-top: 120px;
    }

    .ech-cooking-equepment p {
        font-size: 16px;
    }

    /* cooking ends */
    .eqm_functly_top {
        padding-bottom: 18px;
        margin-bottom: 35px;
    }

    .eqp_vew_bttm {
        margin-top: 80px;
    }

    .get_in_tuch_bttn {
        min-height: 161px;
    }



}

@media(max-width:1199px) {
    .navbar-nav>li>a {
        font-size: 13px;
    }

    .navbar-nav>li {
        margin: 0 10px;
    }

    .navbar-brand {
        width: 125px;
        min-width: 125px;
    }

    .basic_bttn {
        font-size: 15px;
    }

    .call_crcle {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .hddr_bnnr_hldr .basic_bttn {
        min-width: 184px;
    }

    .explre_bttn {
        width: 80px;
        height: 80px;
        font-size: 13px;
    }

    .wrk_cntnt_box {
        padding: 25px 15px;
        font-size: 15px;
    }

    body {
        font-size: 15px;
    }

    h1,
    .h1-title {
        font-size: 80px;
    }

    .sldr_hldr_box {
        min-height: 640px;
        padding: 130px 0;
    }

    .bnnr_sldr_dots_hlder {
        bottom: 100px;
    }

    .dsgn_rght_cntnt {
        padding-left: 10px;
    }

    .section_dvder {
        margin-top: 80px;
    }

    .cmn_gap {
        padding: 80px 0;
    }

    .pddng_lft_110 {
        padding-left: 10px;
    }

    .pddng_lft_65 {
        padding-left: 0;
    }

    .footr_outr {
        font-size: 15px;
    }

    .chse_img_box {
        margin-left: -6px;
        margin-right: -6px;
    }

    .chse_img_box>* {
        padding: 0 6px;
    }

    h2,
    .h2-title {
        font-size: 50px;
    }

    h3,
    .h3-title {
        font-size: 45px;
    }

    .cmprhnsve_lft_col,
    .cmprhnsve_rght_col {
        width: 100%;
    }

    .prjct_bttn_lstng {
        margin-left: -10px;
        margin-right: -10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .prjct_bttn_lstng>li {
        padding: 0 10px;
        width: 50%;
    }

    .vrtcl_tab_lft {
        display: none;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 16px;
        border: 0 !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-radius: 50px;
        padding: 9px !important;
        padding-right: 25px !important;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion .resp-arrow {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .cmprhnsve_tab.resp-vtabs .resp-tab-content {
        height: auto;
        border: 0 !important;
    }

    .advntge_tab_inner {
        height: auto;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 20px;
        color: var(--bg-color);
        padding-right: 15px;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion a span {
        width: 48px;
        height: 48px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 100%;
        background: var(--primary-color-1);
        margin-right: 10px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion a span img {
        max-width: 22px;
        max-height: 22px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .cmprhnsve_tab.resp-vtabs .resp-tabs-container {
        height: auto;
        margin-top: -16px;
    }

    .resp-arrow {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid var(--bg-color);
        margin-top: 20px;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-tab-active span.resp-arrow {
        border: none;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 8px solid var(--bg-color);
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion.resp-tab-active {
        background: var(--primary-color-1) !important;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-tab-active a span {
        background: var(--bg-color);
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion.resp-tab-active a span img {
        -webkit-filter: brightness(0) saturate(100%) invert(30%) sepia(66%) saturate(1494%) hue-rotate(206deg) brightness(98%) contrast(85%);
        filter: brightness(0) saturate(100%) invert(30%) sepia(66%) saturate(1494%) hue-rotate(206deg) brightness(98%) contrast(85%);
    }

    .advntge_tab_inner {
        padding-top: 20px;
    }

    .tab_cntnt_box h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        font-size: 38px;
    }

    .innr_bnnr_section {
        min-height: 380px;
    }

    .prjct_bttn_lstng li a i {
        width: 45px;
        height: 45px;
    }

    .prjct_bttn_lstng li a i img {
        max-width: 20px;
        max-height: 20px;
    }

    .prjct_bttn_lstng li a {
        padding: 8px;
        padding-right: 30px;
        min-height: 66px;
    }

    .prjct_bttn_lstng li a strong {
        margin-bottom: 2px;
    }

    /* CSS Added On 14.01.26 */
    .contacttoday-inr-wrp {
        max-width: 800px;
    }

    .row-our-team>* {
        width: 33.33%;
    }

    .team-pop-face {
        width: 150px;
        height: 160px;
    }


    /* CSS Added On 14.01.26 */
    .sub-menu>li>a {
        font-size: 13px;
    }

    .sub-menu {
        width: 225px;
        border-radius: 12px;
        padding: 10px;
    }

    .navbar-nav>li.menu-item-has-children:last-child>.sub-menu {
        width: 140px;
    }

    .prjct_tab_inner {
        padding-top: 40px;
    }

    .prjct_tab .resp-tabs-list li:not(:last-child) {
        margin-right: 25px;
        padding-right: 25px !important;
    }

    .prjct_tab .resp-tabs-list li a {
        font-size: 23px;
    }

    .sngle_cntnt_box {
        padding-left: 0;
    }

    .sngle_prjct_logo_box {
        width: 216px;
    }

    .sngle_logo_shre_box .footr_scl_links {
        width: calc(100% - 216px);
    }


    /* CSS Added On 15.01.26 */

    .contacttoday-inr-wrp {
        max-width: 800px;
    }

    .row-our-team>* {
        width: 33.33%;
    }

    .team-pop-face {
        width: 150px;
        height: 160px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon::before {
        right: -18px;
        top: -16px;
        width: 50px;
        height: 50px;
    }

    .gap-heading-top {
        padding-top: 80px;
    }


    .blog-pagination-arrow {
        margin-top: 70px;
    }


    .pagination-wrp {
        margin-top: 55px;
    }

    .pagination-wrp ul>*:not(:last-child) {
        margin-right: 12px;
    }

    .pagination-wrp .pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .catagory-each-wrp p {
        font-size: 15px;
    }

    .article-slider .each-blogs .blog-textpart p {
        font-size: 15px;
    }

    .each-blogs p {
        font-size: 15px;
    }

    .each-blogs .catagory-each-wrp p,
    .each-blogs .catagory-each-wrp a {
        font-size: 15px;
    }

    /* CSS Added On 15.01.26 */
    .cstm_arrw {
        left: -20px;
        right: -20px;
    }

    /* cooking starts */

    .ech-cooking-equepment p {
        font-size: 15px;
    }

    /* cooking ends */
    .eqp_vew_bttm {
        margin-top: 60px;
    }

    .sngle_cntnt_box h2,
    .sngle_cntnt_box .h2-title,
    .sngle_prdct_cntnt h2,
    .sngle_prdct_cntnt .h2-title {
        font-size: 36px;
    }

    .breadcrumb {
        font-size: 15px;
    }

    .sngle_prdct_cntnt {
        padding-left: 0;
    }

    /* -------- CSS Added On 16.01 -------------- */
    .rec_cntnt_btm_wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -12px;
    }

    .rec_cntnt_row {
        width: 50%;
        padding: 0 12px;
    }

    .rec_rgt_txt h3 {
        max-width: 100%;
    }

    .rec_rgt_txt h3 {
        font-size: 12px;
    }

    .cat_links {
        padding: 25px 20px;
    }

    .blog-details-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .sngle_prdct_rght_col,
    .sngle_prdct_lft_col {
        width: 100%;
    }

    .catagory_bx {
        -webkit-box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.05);
    }

    .get_in_tuch_bttn {
        min-height: 148px;
    }

    /* 19-1-26 starts */

    .item-toggle-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .catagory_bx_wrp {
        position: relative;
        display: none;
    }

    .catagory_bx_wrp.open-modals .catagory_bx_wrp_inr {
        height: 600px;
        background-color: var(--bg-color);
        padding: 10px;
        border-radius: 5px;
    }

    .catagory_bx_wrp_inr {
        height: 600px;
        overflow-y: auto;
    }

    .blog-sec {
        position: relative;
    }

    .close-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 26px 0 auto;
    }

    .toggle-mobile {
        position: relative;
    }

    .prd-lft-wrp.toggle-mobile .catagory_bx_wrp_inr {
        height: 380px;
    }

    .prd-lft-wrp .item-toggle-button,
    .bld-lft-wrp .item-toggle-button {
        margin-left: auto;
    }


    /* 19-1-26 ends */

}

@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(images/menu_drop.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children>.clickD {
        -webkit-filter: brightness(1000%);
        filter: brightness(1000%);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
        margin: 0 6px;
    }

    /* navbar end*/
    .unprlld_box .unprlld_bg {
        opacity: 1;
    }

    .unprlld_box * {
        color: var(--bg-color);
    }

    .unprlld_box>h3 {
        margin-bottom: 10px;
    }

    .unprlld_box .unprlld_icon_box {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    .hddr_bnnr_hldr {
        margin-left: 15px;
    }

}


@media (max-width: 991px) {

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: var(--bg-color);
        position: absolute;
        left: 0;
        top: auto;
        -webkit-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        -webkit-transform: rotate(45deg) translate(42px, -28px);
        -ms-transform: rotate(45deg) translate(42px, -28px);
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        -webkit-transform: rotate(-45deg) translate(42px, 28px);
        -ms-transform: rotate(-45deg) translate(42px, 28px);
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav>li>a:after {
        display: none;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }


    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav>li>a {
        padding: 8px 0px;
        display: inline-block;
        width: 100%;
        font-size: 15px;
    }

    .navbar-nav>li.current-menu-item a,
    .navbar-nav>li>a:hover {
        color: var(--primary-color-1);
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px;
    }

    .sub-menu>li>a {
        padding-left: 0;
        font-size: 15px;
    }

    .navbar-nav>li.menu-item-has-children>.sub-menu>li {
        padding: 10px 0;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
    }

    .sub-menu {
        padding: 14px;
    }

    .navbar-nav li.menu-item-has-children>.sub-menu .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children:last-child>.sub-menu {
        width: 100%;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        -webkit-transition: inherit !important;
        -o-transition: inherit !important;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
        z-index: 100;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
        background: rgba(26, 29, 38, 1);
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0;
        padding: 0 20px 40px 20px;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {

        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        -o-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden;
    }

    /* push nav end */


    h1,
    .h1-title {
        font-size: 60px;
    }

    h1 br,
    .h1-title br {
        display: none;
    }

    h1 span,
    .h1-title span {
        font-size: 40px;
    }

    .hddr_bnnr_hldr {
        margin-left: auto;
        margin-right: 20px;
    }

    .dsgn_lft_box {
        height: auto;
    }

    h2,
    .h2-title {
        font-size: 45px;
    }

    h3,
    .h3-title {
        font-size: 40px;
    }

    h2 br,
    .h2-title br {
        display: none;
    }


    .pge_hdng:not(:last-child) {
        margin-bottom: 20px;
    }

    .wrk_row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .wrk_col {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .wrk_cntnt_box {
        background: rgba(0, 0, 0, 0.15);
    }

    .explre_bttn {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .chse_txt_box h2 {
        margin-left: 0;
    }

    .chse_txt_box .pge_hdng {
        padding-bottom: 15px;
    }

    .cmn_gap {
        padding: 60px 0;
    }

    .section_dvder {
        margin-top: 60px;
    }

    .wrk_box {
        height: auto;
        padding-top: 95%;
    }

    .footr_top_box {
        padding: 20px;
        font-size: 15px;
        margin-bottom: -67px;
    }

    .footr_outr {
        padding-top: 140px;
    }

    .footr_bottom {
        padding: 20px 0;
    }

    .footr_abut_box {
        max-width: 100%;
    }

    .pddng_lft_110 {
        padding-left: 0;
    }

    .footr_top {
        padding-bottom: 30px;
    }

    .footr_bttm_row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .footr_bttm_lstng {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .cpyrght_txt {
        text-align: center;
    }

    .footr_bttm_row {
        --bs-gutter-y: 16px;
    }

    .footr_logo img {
        max-width: 160px;
    }

    .dsgn_vdeo_box {
        margin-right: 0;
        border-radius: 40px;
    }

    .hdng_row {
        margin-bottom: 30px;
    }

    .tab_cntnt_box {
        position: static;
        background: var(--bg-color);
        padding: 20px;
        margin-top: 15px;
    }

    .smll_tab_hdng {
        font-size: 15px;
        margin-bottom: 8px;
    }

    /* CSS Added On 14.01.26 */

    .row-aboutus-two .aboutus-right-col {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .row-aboutus-two .about-us-leftcol {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .contacttoday-inr {
        padding: 60px 40px;
    }

    .about-us-innr>*:not(:last-child) {
        margin-bottom: 60px;
    }

    .row-our-team>* {
        width: 50%;
    }

    .team-popup-wrp {
        max-width: 585px;
    }

    /* CSS Added On 14.01.26 */
    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        font-size: 32px;
    }

    .prjct_tab h2.resp-accordion {
        display: none;
    }

    .prjct_tab .resp-tabs-list li a {
        font-size: 20px;
    }

    .inclsve_col {
        width: calc(100% / 2);
    }

    /* CSS Added On 15.01.26 */
    .row-aboutus-two .aboutus-right-col {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .row-aboutus-two .about-us-leftcol {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .contacttoday-inr {
        padding: 60px 40px;
    }

    .about-us-innr>*:not(:last-child) {
        margin-bottom: 60px;
    }

    .row-our-team>* {
        width: 50%;
    }

    .team-popup-wrp {
        max-width: 585px;
    }


    .contact-option-row>* {
        width: 50%;
    }

    .contactform-row .col-lg-6 {
        width: 50%;
    }

    .contact-form-outer textarea {
        height: 126px;
    }


    .blog-rich-text ul {
        margin-top: 30px;
    }

    .article-arrow {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .gap-heading-top {
        padding-top: 90px;
    }


    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    .form-control,
    select {
        height: 55px;
        font-size: 16px;
    }

    textarea {
        font-size: 16px;
    }

    input[type="submit"] {
        min-width: 175px;
    }

    .blogdetails-left-inr h1 {
        font-size: 40px;
    }

    /* CSS Added On 15.01.26 */
    .eqp_img_box img {
        max-width: 160px;
        max-height: 160px;
    }

    .eqp_item {
        margin-right: 6px;
        margin-left: 6px;
    }

    .eqp_sldr .slick-list {
        margin: 0 -6px;
    }

    .eqp_prdct_box h3 {
        font-size: 16px;
    }

    .eqp_prdct_box {
        padding: 12px;
    }

    /* cooking starts */

    .cooking-pagination-wrp {
        margin-top: 90px;
    }

    /* cooking ends */
    .eqm_functly_top {
        padding-bottom: 12px;
        margin-bottom: 25px;
    }

    .eqp_vew_bttm {
        margin-top: 40px;
    }

    .sngle_cntnt_box h2,
    .sngle_cntnt_box .h2-title,
    .sngle_prdct_cntnt h2,
    .sngle_prdct_cntnt .h2-title {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 14px;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 6px;
    }

    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        margin-bottom: 15px;
    }

    /* ----CSS Added On 16.01 ----- */
    .rec_rgt_txt h3 {
        font-size: 11px;
    }

    .catagory_hdr {
        padding: 18px 20px;
    }

    .bttm_rltd_prdct_box {
        padding-top: 30px;
    }

    /* 19-1-26 starts */

    .scrolldown-btn {
        font-size: 0;
        top: auto;
        right: 50%;
        -webkit-transform: translateX(50%) translateY(-50%) rotate(180deg);
        -ms-transform: translateX(50%) translateY(-50%) rotate(180deg);
        transform: translateX(50%) translateY(-50%) rotate(180deg);
        bottom: 0;
    }

    .scrolldown-btn span {
        margin-bottom: 0;
        max-width: inherit;
        width: 50px;
        height: 50px;
        background-color: var(--primary-color-1);
        border-radius: 50%;
        padding: 10px;
    }

    .current-menu-item .clickD {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .scrolldown-btn {
        -webkit-animation: none;
        animation: none;
    }

    .scrolldown-btn:hover span {
        -webkit-filter: none;
        filter: none;

    }

    /* 19-1-26 ends */

}

@media (max-width: 767px) {

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    .pge_hdng h2 {
        text-transform: uppercase;
        letter-spacing: 0.01em;
    }

    h1,
    .h1-title {
        font-size: 50px;
        margin-bottom: 10px;
    }

    h1 span,
    .h1-title span {
        font-size: 35px;
    }

    h2,
    .h2-title {
        font-size: 48px;
    }

    h3,
    .h3-title {
        font-size: 32px;
    }

    .dsgn_vdeo_box {
        border-width: 8px;
    }

    .basic_bttn {
        min-height: 50px;
        min-width: 135px;
    }

    .sldr_hldr_box {
        min-height: 560px;
        padding: 100px 0;
    }

    .bnnr_sldr_dots_hlder {
        bottom: 60px;
    }

    .top_col:not(:last-child) .footr_contnt_top_box::after {
        display: none;
    }

    .footr_top_box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: -10px;
        margin-right: -10px;
    }

    .top_col {
        width: calc(100% / 2);
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .top_col:last-child {
        margin-bottom: 0;
    }

    .footr_contnt_top_box {
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 8px;
    }

    .footr_logo img {
        max-width: 140px;
    }

    .cmn_gap {
        padding: 40px 0;
    }

    .section_dvder {
        margin-top: 40px;
    }

    .hdng_row {
        margin-bottom: 20px;
    }

    .prjct_bttn_lstng {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .prjct_bttn_lstng>li {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .prjct_bttn_lstng>li a {
        width: auto;
        min-width: 330px;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion a,
    .tab_cntnt_box h3 {
        font-size: 18px;
    }

    .cmprhnsve_video_box {
        margin-top: 30px;
    }

    .accrd_bttn {
        padding: 14px 0;
    }

    /* CSS Added On 14.01.26 */
    .team-popup-wrp {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 415px;
        padding: 20px;
    }

    .team-pop-face {
        margin: 0 0 20px 0;
    }

    .team-pop-face {
        width: 130px;
        height: 140px;
    }

    /* CSS Added On 14.01.26 */
    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        font-size: 28px;
    }

    .prjct_tab .resp-tabs-list li a {
        font-size: 17px;
    }

    .prjct_tab_inner {
        padding-top: 25px;
    }

    .bttn_wrppr {
        margin-top: 20px;
    }

    .why_chse_lstng {
        margin-top: -20px;
    }

    .why_chse_lstng>* {
        padding-top: 20px;
    }

    .inclsve_col {
        width: 100%;
    }

    .rlble_box {
        padding-bottom: 20px;
    }

    .rlble_col {
        width: 100%;
    }



    /* CSS Added On 15.01.26 */

    .team-popup-wrp {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 415px;
        padding: 20px;
    }

    .team-pop-face {
        margin: 0 0 20px 0;
    }

    .team-pop-face {
        width: 130px;
        height: 140px;
    }

    .contactform-row .col-lg-6 {
        width: 100%;
    }

    .contact-form-outer {
        padding: 20px;
    }

    .contact-form-outer input[type="submit"] {
        min-width: 170px;
    }


    .blog-image-part {
        padding-top: 65%;
    }

    .left-part-date>*:not(:last-child) {
        margin-right: 15px;
        padding-right: 15px;
    }

    .share-options>*:not(:last-child) {
        margin-right: 12px;
    }

    .each-social-icon {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        padding: 7px;
    }

    .each-left-date span {
        width: 18px;
        height: 18px;
    }

    .social-blog-wrp {
        margin-bottom: 20px;
    }

    .blogdetails-left-inr {
        margin-bottom: 20px;
    }

    .blog-rich-text h3,
    .blog-rich-text h2 {
        margin-bottom: 10px;
    }

    .blog-rich-text p {
        margin-bottom: 18px;
    }

    .blog-pagination-arrow> :first-child {
        margin-right: 15px;
    }

    .blog-pagination-arrow> :last-child {
        margin-left: 0px;
    }


    input[type="text"],
    input[type="tel"],
    input[type="password"],
    input[type="email"],
    .form-control,
    select {
        height: 50px;
    }

    .contact-form-outer input {
        height: 50px;
    }

    .blogdetails-left-inr h1 {
        font-size: 32px;
    }

    /* CSS Added On 15.01.26 */
    .cstm_arrw {
        margin: 0;
        margin-top: 15px;
        position: static;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .cstm_arrw>*:not(:last-child) {
        margin-right: 16px;
    }

    /* cooking starts */

    .cooking-pagination-wrp {
        margin-top: 60px;
    }

    /* cooking ends */
    .eqm_functly_top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .slct_drp_hlder select {
        height: 55px;
    }

    .vew_bttn_hlder {
        min-height: 55px;
        padding: 4px;
        margin-left: 10px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-right: 0;
    }

    .eqp_vew_bttm {
        margin-top: 25px;
    }

    .slct_drp_hlder {
        width: calc(100% - 125px - 10px);
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .srtng_lft_txt {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
        padding-right: 0;
        margin-top: 15px;
    }

    .sngle_cntnt_box h2,
    .sngle_cntnt_box .h2-title,
    .sngle_prdct_cntnt h2,
    .sngle_prdct_cntnt .h2-title {
        font-size: 28px;
    }

    .bttm_rltd_prdct_box {
        padding-top: 0;
    }

    /* 19-1-26 starts */

    .sngle_prdct_cntnt .basic_bttn {
        width: 100%;
    }

    .footr_top_box {
        margin-bottom: -87px;
    }

    /* 19-1-26 ends */

}

@media (max-width: 575px) {
    .wrk_col {
        width: 100%;
    }

    .wrk_box {
        padding-top: 75%;
    }

    h1,
    .h1-title {
        font-size: 40px;
    }

    h1 span,
    .h1-title span {
        font-size: 28px;
    }

    h2,
    .h2-title {
        font-size: 36px;
    }

    h3,
    .h3-title {
        font-size: 28px;
    }

    h4,
    .h4-title {
        font-size: 17px;

    }

    h5,
    .h5-title {
        font-size: 16px;

    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion {
        margin-top: 4px;
    }

    .cmprhnsve_tab.resp-vtabs .resp-tabs-container {
        margin-top: -4px;
    }

    /* CSS Added On 14.01.26 */
    .contacttoday-inr {
        padding: 40px 20px;
    }

    .about-us-innr>*:not(:last-child) {
        margin-bottom: 40px;
    }

    .boxxed-lists {
        padding: 10px;
    }

    /* CSS Added On 14.01.26 */
    .prjct_tab .resp-tabs-list {
        display: none;
    }

    .prjct_tab h2.resp-accordion {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: var(--primary-color-1) !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 0 !important;
        padding: 10px 20px !important;
        border-radius: 50px;
        color: var(--bg-color);
        min-height: 48px;
    }

    .prjct_tab h2.resp-accordion:not(:first-child) {
        margin-top: 15px;
    }

    .prjct_tab h2.resp-accordion a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        color: var(--bg-color);
        text-transform: uppercase;
        padding-right: 20px;
    }

    .prjct_tab h2.resp-accordion span.resp-arrow {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid var(--bg-color);
        margin-top: 0;
    }

    .prjct_tab h2.resp-tab-active span.resp-arrow {
        border: none;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 8px solid var(--bg-color);
    }

    .prjct_tab h2.resp-tab-active {
        background: var(--primary-color-2) !important;
    }

    .prjct_tab_inner {
        padding-top: 15px;
    }

    .contacttoday-inr {
        padding: 40px 20px;
    }

    .about-us-innr>*:not(:last-child) {
        margin-bottom: 40px;
    }

    .boxxed-lists {
        padding: 10px;
    }


    .contact-option-row>* {
        width: 100%;
    }


    .blog-pagination-arrow> :not(:last-child) {
        margin-right: 10px;
    }

    .number-blogs {
        width: 36px;
        height: 36px;
    }

    .blog-pagination-arrow {
        margin-top: 40px;
    }

    .social-blog-wrp {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: self-start;
        -ms-flex-align: self-start;
        align-items: self-start;
    }

    .left-part-date {
        margin-bottom: 10px;
    }

    .right-part-social {
        margin-left: 0;
    }


    .pagination-wrp li a {
        width: 35px;
        height: 35px;
    }

    .blogdetails-left-inr h1 {
        font-size: 28px;
    }

    .blog-rich-text h3,
    .blog-rich-text h2 {
        font-size: 17px;
    }

    .blog-details-catagory-wrp {
        margin-top: 30px;
    }

    .each-blogs h3 {
        font-size: 17px;
    }

    .article-slider .slick-list {
        margin: -12px;
    }

    .article-slider .each-article {
        padding: 12px;
    }

    /* CSS Added On 15.01.26 */
    /* ---CSS Added On 16.01 --------- */
    .rec_cntnt_row {
        width: 100%;
    }

    .blog_form {
        padding: 28px 13px;
    }

    /* 19-1-26 starts */

    .scrolldown-btn span {
        width: 40px;
        height: 40px;
    }

    /* 19-1-26 ends */

}

@media (max-width: 479px) {
    .cmn_gap {
        padding: 30px 0;
    }

    .section_dvder {
        margin-top: 30px;
    }

    h1,
    .h1-title {
        font-size: 32px;
    }

    h1 span,
    .h1-title span {
        font-size: 24px;
    }

    h2,
    .h2-title {
        font-size: 28px;
    }

    h3,
    .h3-title {
        font-size: 24px;
    }

    .top_col {
        width: 100%;
    }

    .hddr_bnnr_hldr .basic_bttn {
        font-size: 0;
        min-width: auto;
        padding: 6px;
    }

    .call_crcle {
        margin: 0;
    }

    .hdng_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .hdng_bttn_wrppr {
        margin-top: 15px;
    }

    .cmprhnsve_tab.resp-vtabs h2.resp-accordion a,
    .tab_cntnt_box h3 {
        font-size: 17px;
    }

    .prjct_bttn_lstng>li a {
        width: 100%;
        min-width: unset;
    }

    .prjct_bttn_lstng li a {
        font-size: 14px;
    }

    .prjct_bttn_lstng li a strong {
        font-size: 16px;
    }

    .yutube_bttn {
        width: 50px;
        height: 50px;
    }

    .yutube_bttn img {
        max-width: 26px;
    }

    .accrd_icon_box {
        width: 14px;
        height: 7px;
    }

    /* CSS Added On 14.01.26 */
    .row-our-team>* {
        width: 100%;
    }

    .popup-closebtn {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }

    .team-pop-face {
        width: 110px;
        height: 120px;
    }

    /* CSS Added On 14.01.26 */
    .innr_bnnr_section h1,
    .innr_bnnr_section .h1-title {
        font-size: 26px;
    }

    .innr_bnnr_section {
        min-height: 320px;
    }

    .prjct_row>* {
        width: 100%;
    }

    .sngle_prjct_logo_box {
        width: 156px;
    }

    .sngle_logo_shre_box .footr_scl_links {
        width: calc(100% - 156px);
        padding-left: 15px;
    }

    .bttn_wrppr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .bttn_wrppr>* {
        width: 100%;
        min-width: auto;
    }

    .bttn_wrppr>*:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .sngle_cntnt_box .footr_scl_links ul {
        margin-left: -4px;
        margin-right: -4px;
    }

    .sngle_cntnt_box .footr_scl_links ul>* {
        padding: 0 4px;
    }

    .sngle_cntnt_box .footr_scl_links li a {
        width: 36px;
        height: 36px;
    }

    .sngle_cntnt_box .footr_scl_links li a img {
        max-width: 18px;
    }

    .sngle_prjct_img {
        border-radius: 10px;
    }

    .thbmnl_img_box {
        border-radius: 5px;
    }


    /* CSS Added On 15.01.26 */
    .row-our-team>* {
        width: 100%;
    }

    .popup-closebtn {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }

    .team-pop-face {
        width: 110px;
        height: 120px;
    }


    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-icon::before {
        right: -9px;
        top: -9px;
        width: 40px;
        height: 40px;
    }



    .blog-textpart {
        padding-right: 0;
    }

    .articals-sec-inr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .articles-slider-arrow {
        margin: 20px 0 0 0;
    }

    .number-blogs {
        font-size: 14px;
    }

    .blog-pagination-arrow .blog-btn-options {
        font-size: 0px;
    }


    .contact-form-outer {
        padding: 10px;
    }

    .pagination-wrp ul>*:first-child a,
    .pagination-wrp ul>*:last-child a {
        font-size: 0;
        padding: 0;
    }

    .pagination-wrp {
        margin-top: 40px;
    }

    .blogdetails-left-inr h1 {
        font-size: 24px;
    }

    /* CSS Added On 15.01.26 */
    .srtng_rght_sde {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        width: 100%;
    }

    .sngle_cntnt_box h2,
    .sngle_cntnt_box .h2-title,
    .sngle_prdct_cntnt h2,
    .sngle_prdct_cntnt .h2-title {
        font-size: 24px;
    }

    /* 19-1-26 starts */

    .prd-lft-wrp.toggle-mobile .catagory_bx_wrp_inr {
        height: 360px;
    }

    .dsgn_vdeo_box {
        border-radius: 25px;
    }

    /* 19-1-26 ends */

}

@media (max-width: 374px) {

    .sngle_prjct_logo_box {
        width: 136px;
    }

    .sngle_logo_shre_box .footr_scl_links {
        width: calc(100% - 136px);
        padding-left: 10px;
    }

    .chse_icon_box {
        width: 24px;
    }

    .chse_icon_box img {
        max-width: 24px;
        max-height: 24px;
    }

    .chse_rght_prt {
        width: calc(100% - 24px);
        padding-left: 8px;
    }

    .inclsve_box .brdr_bttn {
        min-width: auto;
        width: 100%;
    }

    .vew_bttn_hlder {
        width: 100px;
    }

    .slct_drp_hlder {
        width: calc(100% - 100px - 10px);
    }

    .scrolldown-btn {
        -webkit-transform: translateX(50%) rotate(180deg);
        -ms-transform: translateX(50%) rotate(180deg);
        transform: translateX(50%) rotate(180deg);
        bottom: 10px;
    }

}



/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: static;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    overflow: visible;
}




/* ===== SECOND LEVEL DROPDOWN (DESKTOP FLYOUT) ===== */

@media (min-width: 992px) {

    /* Ensure parent li is positioned */
    .main-navigation ul li {
        position: relative;
    }

    /* Hide second level by default */
    .main-navigation ul ul ul {
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 220px;
        background: #fff;
        display: none;
        z-index: 9999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Show on hover */
    .main-navigation ul ul li:hover > ul {
        display: block;
    }

    /* Smooth hover area (prevents flicker) */
    .main-navigation ul ul li {
        position: relative;
    }

    /* Optional: arrow indicator */
    .main-navigation ul ul li.menu-item-has-children > a:after {
        content: "›";
        float: right;
        margin-left: 10px;
    }
}



/* ===== FORCE SECOND LEVEL FLYOUT (DESKTOP ONLY) ===== */

@media (min-width: 992px) {

    /* Reset any theme overrides */
    .main-navigation ul ul ul {
        position: absolute !important;
        top: 0 !important;
        left: 100% !important;
        display: none !important;
        min-width: 220px;
        background: #fff;
        z-index: 9999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 8px;
    }

    /* Show on hover */
    .main-navigation ul ul li:hover > ul {
        display: block !important;
    }

    /* Ensure parent is anchor point */
    .main-navigation ul ul li {
        position: relative;
    }

    /* Clean spacing */
    .main-navigation ul ul ul li a {
        padding: 10px 15px;
        white-space: nowrap;
    }

    /* Arrow indicator */
    .main-navigation ul ul li.menu-item-has-children > a::after {
        float: right;
        font-size: 16px;
        opacity: 0.6;
    }
}

/* ===== SECOND LEVEL FLYOUT (BOOTSTRAP NAV FIX) ===== */

@media (min-width: 992px) {

    /* Anchor parent */
    .navbar-nav li {
        position: relative;
    }

    /* Second level submenu */
    .navbar-nav .sub-menu .sub-menu {
        position: absolute !important;
        top: 0 !important;
        left: 100% !important;
        display: none !important;
        min-width: 220px;
        background: #fff;
        z-index: 9999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 8px;
    }

    /* Show on hover */
    .navbar-nav .sub-menu li:hover > .sub-menu {
        display: block !important;
    }

    /* Prevent stacking */
    .navbar-nav .sub-menu li {
        position: relative;
    }

    /* Arrow indicator */
    .navbar-nav .sub-menu .menu-item-has-children > a::after {
    content: "›";
    float: right;
    margin-left: 10px;
    opacity: 0.6;
}
}

/* FIX CLIPPING */
.navbar-nav .sub-menu {
    overflow: visible !important;
}

.navbar-collapse {
    overflow: visible !important;
}
.navbar-nav .sub-menu .sub-menu {
    top: -10px !important;
    margin-left: 10px;
}

.navbar-nav .sub-menu .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .sub-menu .caret,
.navbar-nav .sub-menu .arrow {
    display: none !important;
}
.navbar-nav .sub-menu .sub-menu {
    background: #fff !important;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* Remove all arrows */
.navbar-nav a::after,
.navbar-nav .dropdown-toggle::after,
.navbar-nav .menu-item-has-children > a::after {
    display: none !important;
    content: none !important;
}
/* Bridge the hover gap */
.navbar-nav .sub-menu li {
    position: relative;
}

/* Create invisible hover bridge */
.navbar-nav .sub-menu li::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 100%;
}
.navbar-nav .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 0; /* remove gaps */
}
.navbar-nav .sub-menu .sub-menu {
    left: calc(100% + 18px) !important;
}.navbar-nav .sub-menu li::after {
    right: -25px; 
    width: 25px;
}

@media (min-width: 992px) {

  .navbar-nav .sub-menu .sub-menu {
    background: #f7f7f7 !important;
    border-radius: 0 14px 14px 14px;
    padding: 14px 0;
    min-width: 270px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    border-left: 1px solid rgba(0,0,0,0.06);
  }

  .navbar-nav .sub-menu .sub-menu li {
    border: 0;
    margin: 0;
  }

  .navbar-nav .sub-menu .sub-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    color: #6f6f6f;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .navbar-nav .sub-menu .sub-menu li a:hover {
    background: rgba(63, 99, 223, 0.08);
    color: #3f63df;
    padding-left: 22px;
  }

  .navbar-nav .sub-menu .sub-menu li + li a {
    border-top: 1px solid rgba(0,0,0,0.05);
  }
}

/* Product Page */

.unisource-products-page {
    background: #f7f7f7;
    padding: 60px 0 80px;
}

.unisource-products-page .container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Intro */

.unisource-products-intro {
    text-align: center;
    margin-bottom: 50px;
}

.unisource-products-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 10px;
    color: #23242b;
}

.unisource-products-text {
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Brand Grid */

.unisource-brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.unisource-brand-card {
    width: 180px;
}

/* Card */

.unisource-brand-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.unisource-brand-card a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Logo */

.unisource-brand-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 8px;
}

/* Brand Name */

.unisource-brand-name {
    font-size: 13px;
    color: #666;
    text-align: center;
}

/* Modal */
.unisource-brand-modal {
    display: none;
    max-width: 860px;
    width: 100%;
    padding: 0;
}

.unisource-brand-modal-inner {
    background: #fff;
    border-radius: 12px;
    padding: 18px 18px 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.unisource-brand-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
}

.unisource-brand-modal-logo-wrap {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
}

.unisource-brand-modal-logo {
    max-width: 42px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.unisource-brand-modal-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    color: #2d2d2d;
}

.unisource-brand-modal-files {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.unisource-brand-modal-file,
.unisource-brand-modal-file:visited {
    display: block;
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #3a3a3a;
    font-size: 14px;
    line-height: 1.45;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.unisource-brand-modal-file:hover {
    background: #fafafa;
    border-color: #d8d8d8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

@media (max-width: 767px) {
    .unisource-brand-modal {
        max-width: 100%;
    }

    .unisource-brand-modal-inner {
        padding: 16px;
        border-radius: 10px;
    }

    .unisource-brand-modal-header {
        gap: 12px;
    }

    .unisource-brand-modal-logo-wrap {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .unisource-brand-modal-logo {
        max-width: 36px;
        max-height: 36px;
    }

    .unisource-brand-modal-title {
        font-size: 17px;
    }

    .unisource-brand-modal-file {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* Responsive */

@media (max-width: 1024px) {
    .unisource-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .unisource-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Blog Search Feature */
.search_bar {
    display: flex;
    width: 100%;
}

.search_bar input[type="search"] {
    flex: 1;
    height: 50px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
    border-right: none;
}

.search_bar .form_btn button {
    height: 50px;
    padding: 0 25px;
    background: #4264d1; /* your yellow */
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
	color: #fff;
}

.search_bar .form_btn button:hover {
    background: #4264d1;
}

.search_bar input[type="search"] {
    border-radius: 4px 0 0 4px;
}

.search_bar .form_btn button {
    border-radius: 0 4px 4px 0;
}

/* Contact Form */
/* ===== CONTACT FORM FINAL FIX ===== */

/* FORCE 2 COLUMN CLEANLY */
.custom-contact-form .ff-t-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px;
}

.custom-contact-form .ff-t-cell {
    width: calc(50% - 7.5px) !important;
}

/* FULL WIDTH FIELDS */
.custom-contact-form .ff-el-group.ff-el-textarea,
.custom-contact-form .ff-el-group.ff-el-submit {
    width: 100% !important;
}

/* MOBILE */
@media (max-width: 767px) {
    .custom-contact-form .ff-t-cell {
        width: 100% !important;
    }
}

/* INPUT STYLE */
.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd !important;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px;
    background: #fff;
}

/* TEXTAREA */
.custom-contact-form textarea {
    height: 140px;
    padding-top: 12px;
}

/* REMOVE FLUENT DEFAULT INPUT WRAPPER STYLE */
.custom-contact-form .ff-el-form-control {
    border: none !important;
    box-shadow: none !important;
}

/* BUTTON */
.custom-contact-form button.ff-btn-submit {
    background: #4264d1 !important;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
}

/* HOVER */
.custom-contact-form button.ff-btn-submit:hover {
    background: #4264d1 !important;
}

/* FORCE INPUTS TO RESPECT COLUMN */
.custom-contact-form .ff-t-cell .ff-el-group {
    width: 100% !important;
    display: block !important;
}

/* REMOVE ANY INLINE WIDTH ISSUES */
.custom-contact-form .ff-el-group {
    flex: none !important;
}

/* FIX COLUMN CONTENT */
.custom-contact-form .ff-t-cell {
    display: flex;
    flex-direction: column;
}

/* Basic Page Style */

.basic-page-content h1{ font-size: 63px; color: #000;}
.basic-page-content h2{ font-size: 33px; color: #000;}

.basic-page-content{
max-width:900px;
margin:0 auto;
font-size:16px;
line-height:1.7;
color:#333;
}

.basic-page-content h1,
.basic-page-content h2,
.basic-page-content h3{
margin-bottom:15px;
}

.basic-page-content p{
margin-bottom:18px;
}

.basic-page-content ul{
margin-bottom:18px;
padding-left:20px;
}

.basic-page-content li{
margin-bottom:8px;
}

.basic-page-content a{
color:#f4b400;
text-decoration:none;
}

.basic-page-content a:hover{
text-decoration:underline;
}
.basic-page-content ul {
    margin-bottom: 18px;
    padding-left: 20px;
}

.basic-page-content ul li {
    list-style-type: disc !important;
    list-style-position: outside;
    margin-bottom: 8px;
}

.basic-page-content ol {
    margin-bottom: 18px;
    padding-left: 20px;
}

.basic-page-content ol li {
    list-style-type: decimal !important;
    list-style-position: outside;
    margin-bottom: 8px;
}
.basic-page-content ul,
.basic-page-content ol {
    padding-left: 25px !important;
}