@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background: #f9f9f9;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'montserrat-regular';
    font-size: 16px;
    margin-bottom: 10px;
}


/***** Font Files *****/

@font-face {
    font-family: 'montserrat-regular';
    src: url(../font/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 12px 22px;
    border: 1px solid #ffffff;
    border-radius: 55px;
    color: #ffffff;
    z-index: 1;
    background: #f15f27;
    position: relative;
    font-size: 14px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
    width: 0;
    border-radius: 55px;
    background-color: #011928;
    z-index: -1;
    transition: all 250ms;
    /* border: 1px solid #fff; */
}

.theme_btn:hover {
    color: #ffffff;
}

.theme_btn:hover::before {
    width: 100%;
}

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

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
     font-family: "Urbanist", sans-serif;
     font-size: 45px;
     line-height: 1.2;
     color: #fff;
     font-weight: 500;
     margin: 0 0 10px;
     text-transform: uppercase;
}

h2 {
    font-family: "Urbanist", sans-serif;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
}

h3 {
    font-family: "Urbanist", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Urbanist", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 4px;
    text-transform: uppercase;
}

h5 {
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 4px;
    text-transform: uppercase;
}

h6 {
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 20px 0;
    position: absolute;
    z-index: 1;
    width: 100%;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 10px 2px;
    font-size: 12px;
    font-family: 'montserrat-regular';
    font-weight: 600;
    text-transform: uppercase;
}
ul#menu {
    margin-right: -40px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #f15f27;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0px;
    bottom: unset;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: #000000ba;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */

.container-fluid {
    padding: 0px 40px;
}


.dis-block{
    display: block;
}

.banner-wigth-font{
    font-weight: 800;
}

.banner-wigth-font{
    font-weight: 900;
    font-size: 24px;
}
.banner_text h1 {
    width: 85%;
    /* text-align: justify; */
}
.header-logo img {
    width: 100%;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}
ul.banner-client-ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    float: right;
}

ul.banner-client-ul li p {
    margin-bottom: 0px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
ul.banner-client-ul li img {
    margin-bottom: 20px;
}
.banner_text p {
    width: 87%;
}

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

.banner-img {
    height: 120vh;
    width: 100%;
}

.banner-btn-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-icon-text {
    display: flex;
    align-items: center;
    gap: 28px;
}

.banner-icon-textsd {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'montserrat-regular';
    text-transform: uppercase;
}
.menuSec .row {
    background: #f9f9f9;
    padding: 16px 16px;
    border-radius: 10px;
}
.banner-btm-box-img img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    border-radius: 0px 0px 10px 10px;
}
.banner-btm-box-text p {
    height: 110px;
}

.banner-btm-box-text {
    padding: 20px 20px;
}

.banner-btm-box {
    border: 1px solid #ababab;
    border-radius: 10px 10px 10px 10px;
}

.banner-btm-box-text h5 {
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 600;
}

.banner-btm-box-text a {
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

section.banner-btm-sec .row {
    background: #fff;
    padding: 30px 12px;
    border-radius: 14px;
}

section.banner-btm-sec {
    margin-top: -200px;
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

/* About Css Start */


.about-boxone {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.side-icon-text.about-boxone-text {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
}

.about-boxone-circle-box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 50px;
}

.about-boxone-circle-box-number {
    height: 50px;
    width: 50px;
    background: #f15f27;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-family: 'Urbanist';
    font-size: 16px;
}

.about-boxone-circle-box-text {
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.about-boxone-circle .about-boxone-circle-box:Last-child {
    margin-bottom: 0px;
}

.about-boxtwo-img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
}
.about-boxtwo-text {
    margin-bottom: 30px;
}

section.about-sec {
    margin-bottom: 100px;
}
.about-boxtwo-text h2 {
    font-size: 34px;
}


/* About Css End */







/* New Arrival Css Start */


section.new-arrival-sec {
    background-image: url(../images/new-arrival-bgimg.png);
    height: 100%;
    width: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px;
    margin-bottom: 100px;
}

.new-arrival-sldier-box-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.new-arrival-sldier-box-img {
    margin-bottom: 20px;
}

.new-arrival-sldier-box-text {
    background: #01375a;
    padding: 24px 20px;
    border-radius: 10px;
    transition: 1s;
}

.new-arrival-sldier-box-text h5 {
    color: #fff;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.slick-active {
    opacity: 1;
}

.new-arrival-sldier-box-text p {
    color: #fff;
    margin-bottom: 20px;
}

.new-arrival-btns {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    padding-right: 40px;
}

.new-arrival-btns button {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f15f27;
    border: unset;
    color: #fff;
}

.new-arrival-top-heading h2 {
    color: #fff;
}
.new-arrival-sldier-box:hover .new-arrival-sldier-box-text {
    background: #f15f27;
}

/* New Arrival Css End */


/* Product Categories Css Sec Start  */


section.product-categories-sec {
    position: relative;
    padding-top: 200px;
    margin-bottom: 100px;
    z-index: 1;
    padding: 200px 140px 0px;
}

section.product-categories-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: url(../images/product-categories-img.png);
    width: 87%;
    right: 0;
    margin: 0 auto;
    max-width: 1320px;
    border-radius: 10px;
}

.product-categories-top-heading-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row.product-categories-bg {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.product-categories-box {
    padding: 30px 30px;
    border: 1px solid #000;
    border-radius: 10px;
    transition: 1s;
}

.product-categories-box a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-transform: uppercase;
    color: #000;
}

.product-categories-box:hover {
    background: linear-gradient(180deg,rgba(3, 68, 110, 1) 0%, rgba(2, 59, 96, 1) 50%, rgba(0, 42, 68, 1) 100%);
    transition: 1s;
}

.product-categories-box:hover h4 {
    color: #fff;
}

.product-categories-box:hover p {
    color: #fff;
}

.product-categories-box:hover a {
    color: #fff;
}

.product-categories-box:hover a img {
    filter: invert(1);
}

.product-categories-top-heading-btn h2 {
    margin-bottom: 0px;
    color: #fff;
}



/* Product Categories Css Sec End  */




/*  Custom Prodducts Css Sec Start  */


.custom-prodducts-img img {
    width: 100%;
}

ul.custom-prodducts-ul {
    column-count: 3;
}

ul.custom-prodducts-ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    font-family: 'montserrat-regular';
}

.custom-prodducts-text p {
    margin-bottom: 20px;
}
section.custom-prodducts-sec {
    margin-bottom: 100px;
}


/*  Custom Prodducts Css Sec End  */




/* Meet Staff Css Start */

.meet-staff-box-text h4 {
    font-size: 19px;
    margin-bottom: 6px;
}

.meet-staff-box-text p {
    color: #f15f27;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.meet-staff-box-img img {
    width: 100%;
}

.meet-staff-box-img {
    margin-bottom: 20px;
}

.meet-staff-box {
    background: #fff;
    padding: 16px 16px 20px;
    border-radius: 10px;
    transition: 1s;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
p.meet-text-ch {
    color: #000;
    font-weight: 500;
    text-transform: none;
}

ul.meet-staff-box-text-ul {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 10px 0px 0px;
}

ul.meet-staff-box-text-ul li a i {
    height: 32px;
    width: 32px;
    background: #ffffff00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #000;
    color: #000;
    font-size: 12px;
}

.meet-staff-box:hover {
    background: #f15f27;
}

.meet-staff-box:hover h4 {
    color: #fff;
}

.meet-staff-box:hover p {
    color: #fff;
}

.meet-staff-box:hover i {
    color: #fff;
    border: 1px solid #fff;
}

.meet-staff-topheading {
    width: 80%;
    text-align: start;
    margin-bottom: 30px;
}

section.meet-the-staff-sec {
    margin-bottom: 100px;
}


/* Meet Staff Css End */


/* Our Testimonials Css Start */

.our-testimonials-sliderbtn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.our-testimonials-sliderbtn button {
    border: unset;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f15f27;
    color: #fff;
}

.our-testimonials-sliderbtn button:hover {
    background: transparent;
    border: 1px solid #0000006e;
    color: #0000006e;
}

.slick-slide img {
    width: auto;
}

.testimonials-slider-box {
    background: #fff;
    border: 1px solid #00000045;
    border-radius: 10px;
    padding: 20px 52px;
    margin: 30px 0px 0px;
    transition: 1s;
}

ul.testimonials-slider-icons {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1px;
    color: #000;
    margin: 10px 0px;
    font-size: 12px;
}

ul.testimonials-slider-icons li i {
    color: #e6a210;
}

ul.testimonials-slider-img {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0px 10px;
}

ul.testimonials-slider-img li p {
    margin-bottom: 0px;
    color: #f15f27;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

ul.testimonials-slider-img li h4 {
    font-size: 18px;
    margin-bottom: 0px;
}

.testimonials-slider-box-img {
    margin-top: -40px;
    margin-bottom: 30px;
}

.testimonials-slider-box:hover {
    background: linear-gradient(180deg, rgba(3, 68, 110, 1) 0%, rgba(2, 59, 96, 1) 50%, rgba(0, 42, 68, 1) 100%);
}

.testimonials-slider-box:hover p {
    color: #fff;
}

.testimonials-slider-box:hover li {
    color: #fff;
}

.testimonials-slider-box:hover h4 {
    color: #fff;
}
section.our-testimonials-sec {margin-bottom: 100px;}



/* Our Testimonials Css End */







/*Footer Css Starts*/



/*Section Subscribe Start*/

.subscribe-text h2 {
    font-family: 'Urbanist';
    font-size: 22px;
    margin-bottom: 4px;
    color: #fff;
    text-transform: uppercase;
}


.subscribe-field input {
    border: 1px solid #fff;
    width: 100%;
    padding: 16px 20px;
    /* font-family: 'Montserrat'; */
    border-radius: 50px;
    margin-right: 10px;
    color: #fff;
    background: transparent;
}
.subscribe-field input::placeholder{
    color: #fff;
}


.subscribe-field {
    position: relative;
}

.subscribe-field button.pinBtn {
    margin-left: -40px;
}
.subscribe-main {
    background: #f15f27;
    padding: 32px 0px;
    border-bottom: 1px solid #ffffff52;
}

.subscribe-main .row {
    justify-content: center;
    align-items: center;
}

.subscribe-text p {
    margin-bottom: 0px;
}
.subscribe-field button {
    font-size: 14px;
    background: #ffffff;
    color: #000000;
    border: unset;
    padding: 17px 30px;
    /* width: 232px; */
    border-radius: 50px;
    margin-left: 0px;
    position: absolute;
    top: 0;
    right: 0;
}
/*Section Subscibe End*/

.subscribe-text {
    display: flex;
    gap: 20px;
    align-items: center;
}

.subscribe-icon-text p {
    color: #fff;
}

.footer-txt-box p {
    color: #fff;
}

ul.ft-contact li p {
    color: #fff;
    font-size: 16px;
}
.footer-socials ul li a i:hover {
    background: #f15f27;
    color: #fff;
}



.footer-main {
    background-color: #202534;
    position: relative;
    z-index: 2;
    background-image: url(../images/footer-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    /*height: 100%;*/
}

footer {
    padding: 50px 0 0 0;
}

.footer-txt-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.footer-txt p {
    color: #fff;
    opacity: 0.7;
}

.footer-socials-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.footer-txt h5 {
    color: var(--white);
}

.footer-heading {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    height: 50px;
    width: 100%;
}

.footer-heading::before {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #ffffff52;
    width: 100%;
}

.footer-heading h5, .footer-socials-txt h5 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Urbanist';
    font-weight: unset;
    font-size: 24px;
    width: fit-content;
    /* border-bottom: 1px solid #ffffff91; */
    padding-bottom: 15px;
    padding-right: 30px;
    font-weight: 700;
}

.footer-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    margin-left: 20px;
}

.footer-links ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    opacity: 1;
}

.footer-links ul li a:hover {
    opacity: 1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 16px;
    width: 100%;
    column-count: 2;
}

.footer-socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}



.footer-socials ul li a i {
    color: #000000;
    font-size: 13px;
    height: 36px;
    width: 36px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #ffffff54;
}

.footer-copy-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.footer-copy-txt p, .footer-copy-txt p a {
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    transition: ease-in;
    transition-duration: 0.5s;
    margin-bottom: 0px;
}

.footer-copy-txt p a:hover {
    color: var(--base2);
    transition: ease-out;
    transition-duration: 0.5s;
}

.footer-main .footer-ex {
    padding: 20px 0 20px 0;
    margin-top: 50px;
    border-top: 1px solid #ffffff52;
    position: relative;
}

.footer-scroll a {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g1);
}



section.inner-about-sec .heading2 span {
    color: #000;
}

.about-bottom {
    margin: 50px 0 0 0;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* height: 600px; */
    object-fit: cover;
    /* display: none; */
}

section.inner-banner-sec .banner-heading::before, section.inner-banner-sec .banner-heading::after {
    display: none;
}

section.inner-banner-sec .banner-heading h1 {
    font-weight: 900;
}
.footer-links.ft-pg-links ul {
    width: 99%;
    column-count: 2;
    display: block;
    margin-top: 9px;
}

.footer-links.ft-pg-links ul li {
    margin-bottom: 20px;
}
.footer-links.ft-pg-links {
    width: 100%;
}
.footer-links ul li {
    /* font-family: 'Montserrat'; */
    font-size: 14px;
}
.footer-links.ft-pg-links ul li a {
    text-transform: uppercase;
}
.footer-txt-main.mainquick-link {
    padding: 0px 43px 0px;
}
.follow-us h5 {
    border-bottom: unset;
    padding-bottom: 0px;
    margin-bottom: 6px;
    margin-top: 10px;
}
ul.ft-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 22px;
    padding-bottom: 10px;
}
/*Footer Css Ends*/


/* Inner Banner Start */

.banner-img.inner-banner-img {
    height: 80vh;
}

.banner_text.inner-banner-text h1 {
    font-size: 80px;
}
section.main_slider.inner-main-slider .carousel-caption {
    top: 0;
    align-items: center;
}







/* Inner Banner End */


section.meet-the-staff-sec.inner-page-meet-the {
    margin: 100px 0px;
}



/*CONTACT US CSS*/



.contact-us .mg-40{

  margin-top: 40px;

}

.contact-us .mg-40 iframe{

  height: 600px;

  width: 100%;

  margin: 40px 0 0; 

}

.contact-us .theme-h2 {

    margin-bottom: 10px;

    font-weight: 500;

    line-height: 60px;

    text-transform: uppercase;

}



.contact-form input {

    width: 100%;

    border: 1px solid #111111;

    padding: 12px 20px;

    margin-bottom: 20px;

    border-radius: 6px;

}



.contact-form textarea {

    width: 100%;

    padding: 5px 20px;

}



.contact-form input::placeholder {

    color: #000000;

    font-size: 16px;

    text-transform: uppercase;

}



.contact-form textarea {

    width: 100%;

    padding: 5px 20px;

    border: 1px solid #111111;

    border-radius: 5px;

}



.contact-form textarea::placeholder {

    color: #000000;

    font-size: 16px;

}



.contact-form a,
.contact-form .contact-submit {

display: flex;

justify-content: center;

font-size: 20px;

color: #fff;

background-color: #f15f27;

padding: 15px;

border-radius: 10px;

width: 100%;

border: 0;

font-weight: 500;

cursor: pointer;
}

.contact-form .contact-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.contact-form .contact-submit:focus-visible {
  outline: 3px solid rgba(241, 95, 39, .35);
  outline-offset: 3px;
}

.contact-label {
  display: block;
  margin: 0 0 7px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.contact-label .optional-label {
  color: #66717a;
  font-size: 12px;
  font-weight: 400;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form-status {
  min-height: 24px;
  margin: 12px 0 0;
  padding-left: 12px;
  color: #17232d;
  border-left: 3px solid transparent;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-status.is-success { color: #11613f; border-left-color: #168052; }
.contact-form-status.is-error { color: #9e2118; border-left-color: #b42318; }
.contact-form-status.is-loading { color: #6d3a05; border-left-color: #f15f27; }



.contact-links ul li i {

font-size: 34px;

color: #ffffff;

display: flex;

align-items: center;

justify-content: center;

border-radius: 50%;

height: 90px;

width: 90px;

background: #f15f27;
}



.contact-links ul li p {

margin: 0;

font-family: 'montserrat-regular';

font-size: 15px;

font-weight: 500;

color: #000;
}

.contact-links ul li a {

color: #000;

font-family: 'montserrat-regular';

font-size: 15px;

font-weight: 500;
}



.contact-links ul li {

    margin-left: 0px;

    margin-right: 20px;

}



.contact-links ul {

    display: flex;

    margin-bottom: 30px;

}



.contact-links ul li h3 {

    margin-bottom: 5px;

    color: #000;

    font-size: 24px;

    margin-bottom: 10px;

    text-transform: uppercase;

}



section.contact-us {

    padding: 60px;

}



section.neonatal-sec h3 a {

    color: #000;

    margin: 0;

    font-size: 30px;

}





/*CONTACT US END*/




/*---------------------------------------------------- Enroll Section Start ------------------------------------------------------------- */



.enrol-sec {

margin: 100px 0px;
}



.field-enrol input, .field-enrol select, .field-enrol input, .field-enrol textarea {

    width: 100%;

    height: 62px;

    border: 1px solid #000;

    padding: 10px 16px;

    border-radius: 6px;

}



.field-enrol {

    position: relative;

    margin-bottom: 20px;

}



.field-enrol i {

position: absolute;

top: 22px;

right: 25px;

font-size: 20px;

color: #e85c26;
}



.field-enrol textarea {

    height: 180px;

    border-radius: 6px !important;

    align-content: end;

}



.field-enrol textarea::placeholder, .field-enrol input::placeholder {

    text-transform: uppercase;

    font-weight: 600;

    color: #000;

    font-size: 14px;

}



.field-enrol select {

    font-size: 14px;

    color: #000;

    text-transform: uppercase;

    font-weight: 600;

}



.field-checklst-lin {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 15px;

}



.field-checklst-lin input {

    width: 30px;

    height: 25px;

}



.field-checklst-lin p {

    opacity: 1;

    text-transform: uppercase;

    font-weight: 500;

    margin-bottom: 0px;

}



.btn-enrol {

    text-align: center;

}



button {

    border: unset;

    background: unset;

    padding: unset;

}

/*---------------------------------------------------- Enroll Section End ------------------------------------------------------------- */


section.about-sec.our-story-inner {
    margin: 100px 0px;
}

section.chain-packages-sec {
    margin: 100px 0px;
}
.chain-packages-box h2 {
    margin-bottom: 20px;
}

.chain-packages-box > p {
    font-size: 17px;
    text-transform: uppercase;
    line-height: 32px;
    margin-bottom: 20px;
}

.chain-packages-box h3 {
    text-align: center;
    color: #f15f27;
    font-style: italic;
    font-size: 45px;
}
.chain-packages-box > h4 {
    line-height: 48px;
    font-size: 26px;
    margin-bottom: 30px;
}
.container-program-box {
    padding: 16px 16px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px #f15f274d;
    margin-bottom: 30px;
}

.container-program-box p {
    font-size: 13px;
}
.container-program-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modified-stock-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
}

.modified-stock-box {
    text-align: center;
    margin-bottom: 40px;
}
.modified-stock-top-heading {
    text-align: center;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 40px;
}

section.oem-manufacturing-sec {
    margin: 100px 0px;
}

.oem-manufacturing-box h2 {
    margin-bottom: 20px;
}

.oem-manufacturing-box h4 {
    margin-bottom: 20px;
}

.oem-manufacturing-box ul li {
    position: relative;
    padding-left: 20px;
    color: #000;
    margin-bottom: 20px;
}

.oem-manufacturing-box ul li:before {
    position: absolute;
    content: '';
    top: 8px;
    left: 0;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #f15f27;
}

.oem-manufacturing-box ul {
    margin-bottom: 40px;
}


/* Products Page Start */

.product-inner-sec .product-side-bar {
    padding-right: 0;
}

.product-inner-sec .product-side-bar h4 {
    font-size: 26px;
    margin: 20px 0;
    color: #fff;
    padding: 15px 25px;
    position: relative;
    border-radius: 50px;
    text-transform: capitalize;
    background: #f15f27;
}

.product-inner-sec .product-side-bar ul li {
    margin: 20px 0;
    border-bottom: 1px solid #24110b;
    padding: 10px 0;
}

.product-inner-sec .product-side-bar ul li a input {
    height: 15px;
    width: 15px;
    border: 2px solid #000;
    margin-right: 10px;
}

.product-inner-sec .product-side-bar ul li a label {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

.Top-heading-page h2 {
    font-size: 30px;
}

.product-inner-sec .al-cent {
    align-items: center;
    margin-bottom: 30px;
}

.product-inner-sec select {
    width: 100%;
    padding: 10px 15px;
    height: 50px;
    background-color: transparent;
    color: #000;
    border-radius: 0;
    border: 1px solid #000;
    font-size: 18px;
    border-radius: 0;
    -webkit-appearance: auto;
}

.product-inner-sec h6 {
    margin: 0;
    font-size: 18px;
    float: right;
    color: #000;
    font-family: 'Poppins';
}

.product-inner-sec .arrival-text h4 {
    font-size: 21px;
}

.product-inner-sec .product-side-bar ul {
    padding-right: 20px;
}

.about-bottom-btn a {
    padding: 15px 50px;
}

.about-bottom-btn {
    text-align: center;
    margin-top: 30px;
}

.Top-p-page p {
    text-align: end;
    font-size: 16px;
}

.Top-heading-page h6 {
    font-size: 16px;
    color: #666666;
}

.product-inner-sec {
    position: relative;
    background-image: url(../images/inner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 -750px;
}
section.product-inner-sec {
    margin: 100px 0px;
}

/* Products Page End */

/* Product Detail Page Start */

.productdetailsec {
    margin: 100px 0 50px;
    position: relative;
}

.productdetailtext h3 {
    font-size: 30px;
    line-height: 55px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1c1c1c;
    margin-bottom: 0;
    text-transform: uppercase;
}

.productdetailtext span {
    color: #f15f27;
    font-size: 51px;
    font-weight: 600;
}

.productdetailtext ul {
    padding: 0;
    margin: 20px 0;
    align-items: center;
}

.productdetailtext ul li {
    list-style: none;
    display: inline-block;
    color: #f15f27;
    font-size: 21px;
    font-weight: 500;
    font-family: 'Urbanist';
}

.productdetailtext ul li a i {
    color: #ffba00;
    font-size: 22px;
    margin-right: 5px;
}

.productdetailtext ul li:last-child a i {
    color: #dadada;
}

.productdetailtext ul li:nth-child(4) a i {
    color: #dadada;
}

.productdetailtext p {
    color: #636363;
    font-size: 15px;
    line-height: 25px;
    padding: 30px 0 30px;
    font-weight: 500;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
    font-size: 13px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-plus {
    font-size: 13px;
    margin: 0;
    top: -15px;
    right: 3px;
}

.productdetailtext .input-group input.form-control.input-number {
    width: 100%;
    margin: 0 auto;
    display: table;
    height: 50px;
    text-align: center;
}

.productdetailtext .input-group button.btn.btn-default.btn-number {
    border-radius: 50px;
    width: 30px;
    height: 30px;
    margin: 0 15px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
    font-size: 13px;
    margin: 0;
    top: -13px;
    right: 5px;
}

.productdetailtext .input-group {
    width: 50%;
    margin: 0 0 34px;
}

.iconlist ul {
    padding: 0;
    margin: 0 0 40px;
}

.iconlist ul li {
    list-style: none;
    line-height: 30px;
    color: #636363;
    font-size: 15px;
    font-weight: 500;
}

.iconlist ul li i {
    margin: 0 17px 15px 0;
    font-size: 18px;
    color: #f15f27;
}

.productdetailtext .input-group span.input-group-btn {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.productdetailsmallportion {
    position: relative;
    top: 0;
    z-index: 99;
    border-width: 10px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.productdetailsmallportion img {
    margin: auto;
    width: 100%;
    /* border: 2px solid #E1E1E1; */
    height: 100%;
    background: #ffff;
}

.productdetailnav {
    width: 60%;
    margin: auto;
}

.productdetailportion {
    border-width: 10px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);

}

.productdetailportion img {
    height: 500px;
    object-fit: contain;
}

.productdetailnav .slick-slide {
    opacity: 1;
    z-index: 9999;
    position: relative;
}

.product-detail span {
    margin: 0;
}

.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 75%;
}

.product-detail input.in-num {
    border: 1px solid #dadada;
    background-color: transparent;
    width: 40%;
    margin: 0 5px;
}

.product-detail span {
    width: 30px !important;
    border: 1px solid #e3e3e3;
    border-radius: 50px;
    height: 30px !important;
    margin: 5px;
}

.product-detail .skin-2 .num-in span:before,
.product-detail .skin-2 .num-in span:after {
    background-color: #000;
}

.product-detail span:hover:before,
.product-detail span:hover:after {
    background-color: rgb(255, 255, 255) !important;
}

.product-details-btn.btn10 {
    background-color: #cfa55a !important;
    color: black;
    border-color: #cfa55a;
    font-size: 17px;
}

.quanity.product-detail {
    margin-left: 20px;
}

section.productdetailsec .product-detail span:hover {
    background-color: #b43333;
    color: #000 !important;
}

ul.product-detail-heading {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.product-details-btn {
    height: 60px;
    border: 0;
    width: 180px;
    margin-left: 10px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #cfa55a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;
}

a.cat-sub-btn {
    background: #335650;
    color: #fff;
    padding: 15px 40px;
    font-weight: 500;
}

a.cat-sub-btn:hover {
    background: #000;
}


/* .product-details-btn:hover{
  
    color: white;
  
    } */

.iconlist {
    margin-top: 40px;
}

.description li.nav-item {
    margin-right: 12px;
}

.description li.nav-item button {
    width: 225px;
    font-family: 'r', sans-serif;
    height: 70px;
    background-color: #f1f1f1;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    padding: 12px 0px;
    border-radius: 50px;
    text-transform: uppercase;
}

.description li.nav-item .nav-link.active {
    border: 0;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 12px 0px;
    background: #f15f27;
}

.description .nav-tabs {
    border-bottom: 1px solid #adb5bd;
    padding-bottom: 35px;
    margin-bottom: 30px;
    justify-content: start !important;
}

.description .tab-content p {
    color: #636363;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
}

.productdetailsmallportion img {
    width: auto;
    /* padding: 10px 10px; */
    position: relative;
    z-index: 999999999999999;
}

.productdetailnav .slick-list.draggable {
    margin-top: -60px;
}


/* skin 2 */

.skin-2 .num-in {
    background: #f0f0f0;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
    height: 40px;
    width: 110px;
    float: left;
    border-radius: 12px;
    cursor: pointer;
}


.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
    background: #fff;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: "";
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 37px;
    border: none;
    text-align: center;
    background-color: #f0f0f0;
    font-family: "Montserrat";
}

.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 75%;
    display: flex;
    align-items: center;
}

.product-detail input.in-num {
    border: 1px solid #dadada;
    background-color: transparent;
    width: 40%;
    margin: 0 5px;
    padding: 30px 0;
    background: #fff;
}

.productdetailsec .btn10 {
    color: white;
}

.productdetailsmallportion img {
    width: 120px;
}

section.productdetailsec:after {
    content: "";
    position: absolute;
    width: 23%;
    height: 69%;
    background: url(../images/prodcut-detail-after.png);
    right: 0;
    bottom: -9%;
    background-repeat: no-repeat;
    filter: contrast(0.1);
    opacity: 0.5;
}

.productdetailtext {
    padding-top: 10px;
}

a.btn.shp-btn {
    font-family: 'Poppins';
    font-size: 15px;
    color: #fff;
    padding: 14px 45px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 50px;
    background: #f15f27;
}

.productdetailnav .slick-slide {
    margin: 20px 20px;
}

.productsec-top-txt h4 {
    font-size: 25px;
    text-transform: uppercase;
    color: #b43333;
    font-weight: 600;
    margin-left: 50px;
}

.productsec-top-selec {
    display: flex;
    align-items: center;
    justify-content: center;
}

.productsec-top-selec select {
    font-size: 18px;
    line-height: 19px;
    color: #666666;
    padding: 0;
    border: none;
    font-family: 'Montserrat';
    font-weight: 500;
    cursor: pointer;
}

.productsec-top-selec h5 {
    font-size: 18px;
    line-height: 19px;
    color: #666666;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-right: 8px;
}

.productsec-top-view h5 {
    font-size: 18px;
    line-height: 19px;
    color: #666666;
}

.product-text h4 {
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
}

.product-text h6 {
    font-size: 22px;
}

.product-text h6 {
    font-size: 22px;
    color: #b43333;
    font-weight: 800;
}

/* Product Detail Page End */



/* Inner Cart Page Start */


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.cart-sc-mn {
    background-image: url(../images/cart.jpg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

section.add-to-cart {
    padding: 150px 0;
    position: relative;
}

.add-to-cart .img-1 {
    position: absolute;
    left: -9%;
    top: 22%;
    width: 250px;
}

.add-to-cart .img-2 {
    position: absolute;
    bottom: 20%;
    left: 13%;
}

.add-to-cart .img-3 {
    position: absolute;
    right: -10%;
    top: 0%;
    width: 290px;
}

.add-to-cart input {
    width: 100%;
    text-align: center;
    height: 60px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    font-size: 23px;
    color: #a2a1a1;
    font-weight: 500;
    margin-top: 24px;
    background-color: #f7f7f7;
    outline: none;
}

.add-to-cart a {
    font-size: 17px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: #a2a1a1;
    font-weight: 400;
    text-decoration: none;
}

.add-to-cart h4 {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    text-align: center;
    font-family: 'Montserrat';
}

.add-to-cart .table>tbody>tr>td,
.add-to-cart .table>tbody>tr>th,
.add-to-cart .table>tfoot>tr>td,
.add-to-cart .table>tfoot>tr>th,
.add-to-cart .table>thead>tr>td,
.add-to-cart .table>thead>tr>th {
    vertical-align: middle;
}

.total-section {
    padding: 40px 40px;
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
}

.total-section ul {
    font-family: 'Montserrat';
    list-style: none;
    margin-bottom: 0;
}

.total-section li {
    font-size: 19px;
    line-height: 40px;
    padding-bottom: 5px;
    color: #757272;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Poppins';
}

li.color-change {
    color: #757272;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    line-height: 39px;
}


.total-section li.color-change span {
    font-weight: 500;
    font-size: 20px;
    line-height: 39px;
    color: #757272;
}

.total-section li span {
    float: right;
}

.ship-estimate {
    margin-top: 20%;
    border-radius: 15px;
    padding: 35px 40px;
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
}

.ship-estimate li {
    font-size: 24px;
    color: #f15f27;
    line-height: 39px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-family: 'Urbanist';
}

.ship-estimate ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}

.ship-estimate .grey-style {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.proceed a {
    color: #000000;
    text-align: left;
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 500;
}

.or-amazon {
    margin-top: 50px;
    position: relative;
    border: 2px solid #cecece;
    padding: 30px 50px;
    border-radius: 5px;
    background: #fff;
    margin-left: 0;
    width: 100%;
}

.or-amazon p {
    font-size: 18px;
    position: absolute;
    background: white;
    top: -18px;
    left: 0px;
    padding: 3px 20px;
    color: #000;
    display: block;
    text-transform: uppercase;
    border: 0;
    font-family: 'Montserrat';
    right: 0px;
    margin: 0px auto;
    width: 65%;
    font-weight: 400;
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.product-img {
    width: 100%;
    border-radius: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    border: 1px solid #00000033;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: currentColor;
    font-size: 19px;
    font-weight: 300;
    color: #fff;
    padding: 20px 20px;
    border-bottom: none;
    font-family: 'Poppins';
    border-radius: 0;
    text-transform: uppercase;
    border-radius: 0 !important;
    background: #000;
}

.table-space h3 {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 0;
    line-height: 25px;
    text-transform: capitalize !important;
    color: #a2a1a1;
}

.table-space h5 {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 0;
    line-height: 25px;
    text-transform: capitalize !important;
    color: #a2a1a1;
}

.space .row {
    align-items: center;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #c2c2c2;
    border-style: solid;
    border-width: 0;
}

th.qty {
    text-align: center;
}

a.remove {
    font-size: 30px;
    width: 55px;
    height: 50px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    color: #fff;
    border: #000;
    background: #000000;
}

.space h6 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.table-space h6 {
    line-height: 18px;
    margin: 5px 0;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Montserrat';
    color: #a2a1a1;
}

.table-space span {
    color: #a2a1a1;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
}

li.color-change {
    margin-top: 8%;
}

.table-responsive {
    margin-bottom: 0%;
}

.table th:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.table th:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.table th:first-child {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

.table th:last-child {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.product-img.cart img {
    margin-top: 0;
}

.product-img.cart img {
    width: 100%;
    height: 100%;
    margin: 0 !important;
}

.product-img.cart {
    margin: 0;
}

a.btn1.checkout-btn {
    font-size: 27px;
    font-family: 'Montserrat';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
}

a.btn-1.checkout-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 300;
    padding: 18px 0px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 50px;
    border-radius: 50px;
    background: #f15f27;
}

.table-responsive .table th:last-child {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
}

.table-responsive .table th:first-child {
    padding-left: 50px;
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
}


/* Inner Cart Page End */


/*checkout-page*/

.billing_form h3 {
    font-size: 30px;
    color: #000;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: 25px;
    font-weight: 500;
}

.billing_form label {
    font-size: 13px;
    font-family: 'Poppins';
    color: #7c7c7c;
    font-weight: 500;
}

.radiosss p {
    color: #7C7C7C;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    padding-left: 15px;
    font-family: 'Montserrat';
    background: transparent;
    border: 1px solid #b7b7b7;
}

.billing_form input::placeholder {
    color: #7C7C7C;
    font-family: 'Poppins';
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-family: 'Poppins';
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    font-family: 'Urbanist';
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

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

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.cart_sidebar {
    padding: 25px;
    border: 1px solid #C4C4C4;
    border-radius: 25px;
}

.cart_sidebar h3 {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: normal;
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
}

.cart_sidebar .h-sub {
    font-weight: 600;
    color: #000000;
    font-family: 'Urbanist';
    font-size: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 20px;
    padding-top: 20px;
}

.cart_sidebar h5 span {
    float: right;
    color: #000;
}

.cart_sidebar h4 {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: normal;
    padding-top: 0;
    font-family: 'Urbanist';
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    color: #7C7C7C;
    font-family: 'Poppins';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
    font-family: 'Montserrat', sans-serif;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    padding: 12px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    text-transform: uppercase;
    background: #f15f27;
}

.checkout_btn:hover {
    /* color: white; */
    font-family: 'Montserrat' !important;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 600;
    color: #000;
    font-size: 14px;
    margin-bottom: 30px;
    font-family: 'Urbanist';
    margin-bottom: 10px;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #f15f27;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
    background: none;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page.all-section.all-side {
    padding: 70px 0 100px;
    position: relative;
    margin-bottom: 0;
}

.checkout_page .img-1 {
    position: absolute;
    left: -13%;
    top: 50%;
    width: 340px;
}

.checkout_page .img-2 {
    position: absolute;
    right: -7%;
    top: 60%;
    width: 230px;
    transform: rotate(200deg);
}

section.checkout_page:before {
    content: '';
    position: absolute;
    background-image: url(../images/Checkout-back.png);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.billing_form {
    border: 1px solid #b7b7b7;
    padding: 25px;
    border-radius: 25px;
}

.catalog-box-sd {
    margin-bottom: 30px;
}
section.description {
    margin-bottom: 100px;
}
.meet-page-boxtext p b {
    color: #000;
}



.meet-slider-sliderbtn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.meet-slider-sliderbtn button {
    border: unset;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f15f27;
    color: #fff;
}
.meet-slider-sliderbtn button:hover {
    background: transparent;
    border: 1px solid #0000006e;
    color: #0000006e;
}
.meet-slider .slick-slide {
    margin: 0px 10px;
}

.footer-icon-text p {
    font-size: 15px;
    font-weight: 900;
}

.subscribe-main {
    display: none;
}

.nw-txt p {
    text-align: center;
    font-size: 33px;
    color: #ffffff;
    font-weight: bold;
    line-height: 50px;
}
section.custom-fabriction-sec {
    margin: 100px 0px;
}

.custom-fabriction-top-heading {
    margin-bottom: 40px;
}
.custom-fabriction-top-heading p {
    font-size: 22px;
}

section.fenix-sol-your-one .row {
    background-image: url(../images/fenix-sol-your-one-img.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 57px 0px;
}
.nw-txt {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

section.fenix-sol-your-one {
    margin-bottom: 100px;
}
.nw-txt.ftnwtxt {
    background-image: url(../images/fenix-sol-your-one-img.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}
.nw-txt.ftnwtxt {
    /* width: 80%; */
    margin: 0 auto;
    background-size: 100% 100%;
    padding: 19px 0;
    width: 60%;
}

.nw-txt.ftnwtxt p {
    font-size: 21px;
    width: 60%;
    margin: 0 auto;
}
.banner_text h1 {
    font-size: 57px;
    font-weight: 700;
    width: 95%;
}
.banner_text p {
    font-size: 25px;
    line-height: 1.4;
    font-weight: 600;
}
.banner-icon-textsd {
    font-size: 22px;
    font-weight: 600;
}
section.shipping-sec {
    margin: 100px 0px;
}

.shipping-text p {
    margin-bottom: 30px;
}

.shipping-img img {
    width: 100%;
}


.mmodified-stock-box h2 {
    color: #000;
    font-size: 38px;
    margin-bottom: 20px;
}

.mmodified-stock-box ul {/* column-count: 3; *//* display: flex; *//* flex-wrap: wrap; *//* justify-content: space-between; */list-style: disc;margin-left: 21px;}

.mmodified-stock-box ul li {
    /* padding: 20px 20px; */
    /* box-shadow: 0px 0px 6px 0px #dadada; */
    margin-bottom: 19px;
    /* text-align: center; */
    /* border-radius: 8px; */
    /* width: 32%; */
    color: #000;
    font-size: 18px;
}
.mmodified-stock-box {
    padding-left: 68px;
}
p.last-para {
    font-weight: 600;
    text-transform: capitalize;
}

/* API-backed product catalog and product inquiry context */
.catalog-live { background: #f4f6f7; }
.catalog-intro { max-width: 760px; margin: 0 0 34px; }
.catalog-eyebrow, .contact-mode-label { margin: 0 0 8px; color: #e75f25; font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.catalog-intro h2 { margin: 0 0 12px; color: #063954; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.catalog-intro > p:last-child { margin: 0; color: #51636e; font-size: 17px; line-height: 1.65; }
.catalog-controls { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(210px, 280px) auto; align-items: end; gap: 18px; margin-bottom: 30px; padding: 20px 24px; background: #063954; border-left: 5px solid #ef6127; box-shadow: 0 14px 34px rgba(1,35,54,.14); }
.catalog-controls label { display: grid; gap: 8px; margin: 0; color: #d8e4e9; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.catalog-controls input, .catalog-controls select { width: 100%; height: 48px; padding: 0 15px; color: #17242c; background: #fff; border: 2px solid transparent; border-radius: 0; font-size: 15px; }
.catalog-controls input:focus, .catalog-controls select:focus { outline: none; border-color: #ef6127; }
.catalog-count { min-width: 150px; margin: 0 0 14px; color: #fff; font-size: 14px; font-weight: 700; text-align: right; }
.catalog-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; min-height: 300px; }
.catalog-product { display: grid; grid-template-rows: 280px 1fr; min-width: 0; background: #fff; border: 1px solid #dbe3e7; box-shadow: 0 8px 20px rgba(1,35,54,.055); transition: transform .2s, box-shadow .2s, border-color .2s; }
.catalog-product:hover { transform: translateY(-4px); border-color: #b9ccd5; box-shadow: 0 18px 34px rgba(1,35,54,.12); }
.catalog-product-image { display: grid; place-items: center; overflow: hidden; padding: 22px; background: linear-gradient(145deg,#f9fafb,#eaf0f2); border-bottom: 1px solid #e3e9ec; }
.catalog-product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s; }
.catalog-product:hover .catalog-product-image img { transform: scale(1.025); }
.catalog-image-fallback { color: #687c87; font-size: 13px; font-weight: 700; }
.catalog-product-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 23px; }
.catalog-product-copy h3 { margin: 0 0 22px; color: #063954; font-size: 19px; line-height: 1.35; overflow-wrap: anywhere; }
.catalog-inquiry-link { width: 100%; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; margin-top: auto; padding: 10px 15px; text-align: center; }
.catalog-skeleton { height: 390px; background: linear-gradient(100deg,#e7edef 25%,#f7f9fa 40%,#e7edef 60%); background-size: 220% 100%; animation: catalogShimmer 1.2s infinite linear; }
@keyframes catalogShimmer { to { background-position: -220% 0; } }
.catalog-state { grid-column: 1 / -1; min-height: 300px; display: grid; place-items: center; align-content: center; gap: 10px; padding: 35px; color: #50636e; background: #fff; border: 1px solid #dbe3e7; text-align: center; }
.catalog-state h3 { margin: 0; color: #063954; font-size: 24px; }.catalog-state p { margin: 0 0 10px; }.catalog-state button { border: 0; }
.catalog-pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 34px; }
.catalog-pagination button { min-width: 110px; height: 44px; color: #063954; background: #fff; border: 1px solid #b9cbd4; font-weight: 700; cursor: pointer; }
.catalog-pagination button:disabled { opacity: .45; cursor: not-allowed; }.catalog-pagination span { color: #536873; font-weight: 700; }
.selected-product { display: grid; grid-template-columns: 130px 1fr; gap: 22px; margin: 22px 0 28px; padding: 16px; background: #f4f7f8; border: 1px solid #d5e0e5; border-left: 5px solid #ef6127; }
.selected-product[hidden] { display: none; }.selected-product.is-error { grid-template-columns: 1fr; border-left-color: #b42318; }.selected-product.is-error .selected-product-visual { display: none; }
.selected-product-visual { min-height: 110px; display: grid; place-items: center; overflow: hidden; background: #fff; border: 1px solid #dce5e9; color: #687c87; font-size: 11px; }
.selected-product-visual img { width: 100%; height: 110px; object-fit: contain; }
.selected-product-copy { align-self: center; }.selected-product-copy > span { color: #df5720; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.selected-product-copy h3 { margin: 5px 0 5px; color: #063954; font-size: 20px; }.selected-product-copy p { margin: 0 0 7px; color: #566973; font-size: 13px; }.selected-product-copy a { color: #063954; font-size: 12px; font-weight: 800; text-decoration: underline; }
@media (max-width: 991px) { .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.catalog-controls { grid-template-columns: 1fr 220px; }.catalog-count { grid-column: 1 / -1; margin: 0; text-align: left; } }
@media (max-width: 620px) { section.contact-us { padding: 36px 0; }.catalog-controls { grid-template-columns: 1fr; padding: 18px; }.catalog-count { grid-column: auto; }.catalog-grid { grid-template-columns: 1fr; }.catalog-product { grid-template-rows: 240px 1fr; }.selected-product { grid-template-columns: 90px 1fr; gap: 14px; }.selected-product-visual,.selected-product-visual img { min-height: 84px; height: 84px; } }
@media (max-width: 420px) { .selected-product { grid-template-columns: 1fr; }.selected-product-visual,.selected-product-visual img { height: 150px; } }
.meet-staff-box-text p a {
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
}
