@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

html {
    overflow-x: hidden;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    background: #faf6f0;
    overflow-x: hidden;
}

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;
    padding: 0;
    list-style-type: none;
    font-family: 'Montserrat';
}

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'Montserrat';
    margin: unset;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Montserrat';
    src: url(../font/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'BlenderPro';
    src: url(../font/BlenderPro-Medium.ttf);
}

@font-face {
    font-family: 'Roboto';
    src: url(../font/Roboto-Regular.ttf);
}


/***** 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 {
    background: #c1272d;
    position: relative;
    color: #fff;
    padding: 2px 3px 2px 0px;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    gap: 3px;
    box-shadow: 0 3px 10px #00000021;
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 400;
    margin: 10px 2px 10px 0;
    border: unset;
    font-family: 'BlenderPro';
    text-transform: uppercase;
}

.theme-btn:hover,
.theme-btn:hover {
    color: #c1272d;
    background: #fff;
    border-color: #fff;
    filter: drop-shadow(2px 3px 6px black);
}

.theme-btn:hover img,
.theme-btn:hover img {
    background: unset;
    filter: brightness(7.5);
}

.theme-btn img {
    width: 12px;
    height: 13px;
}

.theme-btn span {
    padding: 12px 16px;
}

.theme-btn:hover .btn-theme {
    background: #c1272d;
    transform: translateX(-1px) scale(1.1);
}

.btn-theme {
    border-radius: 4px;
    transition: 0.5s all;
    padding: 4px 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}


.menuSec .row {
    align-items: center;
}

.header-btn {
    text-align: end;
}

.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: 'BlenderPro';
    font-size: 81px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'BlenderPro';
    font-size: 55px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'BlenderPro';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: 'BlenderPro';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'BlenderPro';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'BlenderPro';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

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: 10px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    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: #000;
    padding: 10px 23px;
    font-size: 14px;
    font-family: 'Montserrat';
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.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: #c22c2c;
}

.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: 0;
    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: rgba(0, 0, 0, 0.1);
}

.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;
}


/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

.carousel-inner {
    padding: 200px 0 0;
    height: 55vh;
}

.banner_text ul {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 40px;
    padding-top: 50px;
}

.banner_text h5 {
    background: #c1272d;
    padding: 10px 5px;
    text-transform: uppercase;
    font-family: 'BlenderPro';
    border-radius: 10px;
    width: 24%;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    margin-bottom: 10px;
}

.banner_text h1 {
    color: #000;
    text-transform: uppercase;
    line-height: 85px;
}

.menuSec .row {
    border-bottom: 1px solid #00000021;
    padding-bottom: 10px;
}

.banner_text ul li a {
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
    font-family: 'BlenderPro';
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.carousel-inner .container-fluid {
    padding-right: 4%;
    padding-left: 8%;
}

img.banner-img {
    width: 100%;
    height: 685px;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.banner_text h1 span {
    -webkit-text-stroke: 2px #c22c2c;
    color: transparent;
}

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */



/*---------------------------------------------------- Service Section Start ----------------------------------------------------------- */

.service-img img {
    width: 93%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.box-arrow i {
    font-weight: 300;
    border: 1px solid #e1e1e1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #d2c1ab;
}

.box-arrow {
    background: #fff;
    position: absolute;
    padding: 15px 0px 0px 15px;
    bottom: 30px;
    right: 22px;
}

.box-arrow:hover i {
    background: #d2c1ab;
    color: #c0272d;
    border-color: #c0272d;
}

.service-img {
    position: relative;
    text-align: center;
}

.service-txt h3 {
    width: 100px;
    font-size: 85px;
    line-height: 70px;
    color: #c1272d;
}


.service-txt {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 40px;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

section.service-sec {
    margin-bottom: 100px;
}

.service-head h2 {
    text-transform: uppercase;
    font-size: 80px;
}

.service-head p {
    width: 50%;
    margin: 0 auto;
    opacity: 80%;
}

.service-head {
    text-align: center;
    margin-bottom: 60px;
}

section.service-sec .row.w {
    margin-bottom: 50px;
}

.txt-serv h5 {
    text-transform: uppercase;
    font-size: 27px;
    color: #1c1a1a;
    margin-bottom: 10px;
}

.txt-serv {
    width: 72%;
}

.service-txt.e {
    border: unset;
    padding: unset;
}

/*---------------------------------------------------- Service Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Logoispum Section Start ------------------------------------------------------------- */

.logo-image img {
    width: 100%;
    object-fit: scale-down;
    height: 100%;
}

.logo-image {
    position: relative;
    height: 150px;
}

.logo-image:before {
    content: '';
    position: absolute;
    /* top: -70px; */
    left: -23px;
    background: #d2c1ab;
    width: 1px;
    height: 100%;
}

.slick-slide.slick-active {
    opacity: 1;
}

section.logoipsun-sec {
    border-bottom: 1px solid #d2c1ab;
    margin-bottom: 100px;
}

/*---------------------------------------------------- Logoispum Section End ------------------------------------------------------------- */


/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

section.about-us-sec {
    padding: 100px 0;
    background: #fff;
}

section.about-us-sec .row {
    align-items: center;
}

.about-txt p {
    margin-bottom: 20px;
}

.about-sec-img img {
    width: 95%;
    height: 600px;
    object-fit: cover;
    border: 2px solid #d2c1ab;
    transition: transform 0.5s ease;
}

span.about-span {
    text-transform: uppercase;
    color: #c1272d;
    font-size: 25px;
    font-family: 'BlenderPro';
    position: relative;
    padding-left: 70px;
}

span.about-span:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    background: #c1272d;
    width: 55px;
    height: 1px;
}

.counter-about h4:before {
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    background: #d2c1ab;
    width: 141px;
    height: 1px;
}

.about-txt h2 {
    text-transform: uppercase;
    font-size: 53px;
    margin: 10px 0;
}

.counter-about p {
    font-size: 13px;
    opacity: 80%;
    margin-bottom: 15px;
}

.counter-about ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.counter-about h4 {
    font-size: 70px;
    padding-bottom: 10px;
    position: relative;
    font-weight: bold;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */



/*---------------------------------------------------- Watch Section Start ------------------------------------------------------------- */

section.watch-sec {
    background-image: url(../images/watch-img.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0 140px;
}

.watch-img {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.watch-txt h2 {
    font-size: 93px;
    text-transform: uppercase;
    color: #fff;
    line-height: 85px;
    margin-bottom: 10px;
}

.watch-txt p {
    width: 68%;
    color: #fff;
    opacity: 70%;
    font-size: 13px;
}

section.watch-sec .row {
    align-items: center;
}

.watch-img p {
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    opacity: 70%;
}

.watch-img {
    position: relative;
}

.watch-img:before {
    content: '';
    position: absolute;
    top: 49%;
    left: 49%;
    background: #fff;
    width: 70px;
    height: 1px;
    opacity: 60%;
}

/*---------------------------------------------------- Watch Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Work Section Start ------------------------------------------------------------- */

.Work-head {
    text-align: center;
    margin-bottom: 50px;
}

.Work-head h2 {
    font-size: 81px;
    text-transform: uppercase;
    color: #000;
    line-height: 50px;
    margin-bottom: 20px;
}

.Work-head p {
    font-size: 14px;
    width: 45%;
    margin: 0 auto;
}

section.Work-sec {
    padding: 100px 0;
}

.work-main {
    padding: 40px 40px 30px 50px;
    border: 1px solid #d2c1ab;
}

.work-num {
    padding-bottom: 50px;
    position: relative;
}

.work-txt h3 {
    margin-bottom: 10px;
    font-size: 25px;
    text-transform: uppercase;
}

.work-txt p {
    font-size: 14px;
}

.work-num h6 {
    font-size: 25px;
    color: #c1272d;
    padding-left: 60px;
}

.work-num:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    background: #d2c1ab;
    width: 50px;
    height: 2px;
}

/*---------------------------------------------------- Work Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

section.Contact-sec {
    padding-bottom: 100px;
}

section.Contact-sec .row.e {
    background: #fff;
    padding: 50px;
    align-items: center;
}

.Contact-txt h2 {
    text-transform: uppercase;
    font-size: 69px;
    margin-bottom: 10px;
}

.Contact-txt p {
    font-size: 14px;
    width: 80%;
}

.contact-form input {
    width: 100%;
    border: unset;
    border-bottom: 1px solid #cecece;
    background: transparent;
    height: 40px;
    margin-bottom: 40px;
}

.contact-form input::placeholder {
    font-family: 'Montserrat';
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #8d8d8d;
}

.contact-form textarea::placeholder {
    font-family: 'Montserrat';
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #8d8d8d;
}

.contact-form textarea {
    width: 100%;
    height: 70px;
    border: unset;
    background: transparent;
    border-bottom: 1px solid #cecece;
    align-content: end;
    margin-bottom: 40px;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Testimonial Section Start ------------------------------------------------------------- */

section.Testimonial-Sec {
    padding-bottom: 100px;
}

.testi-head {
    text-align: center;
    margin-bottom: 50px;
}

.testi-head p {
    font-size: 14px;
    width: 45%;
    margin: 0 auto;
}

.testi-head h2 {
    font-size: 64px;
    text-transform: uppercase;
}

ul.stars li:last-child i {
    opacity: 50%;
}

.testi-main:hover {
    background: #c1272d;
}

.testi-main:hover .user-review:before {
    background: #fff;
}

.testi-main:hover ul.stars li i {
    color: #ffff;
}

.testi-main:hover img.testi-back {
    filter: invert(1);
}

.testi-main:hover p {
    color: #fff;
}

.testi-main:hover h4 {
    color: #fff;
}

.testi-main:hover span {
    color: #fff;
}

img.testi-back {
    width: 45%;
    position: absolute;
    top: 20%;
    left: 45%;
}

.testi-main {
    background: #fff;
    padding: 30px 50px;
    border: 1px solid #dedede;
    position: relative;
}

.user-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

ul.stars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-main p {
    margin-bottom: 20px;
    font-size: 14px;
}

.user-review img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.user-review:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #c1272d;
    width: 110px;
    height: 110px;
    z-index: -1;
    border-radius: 50%;
}

ul.stars li i {
    color: #fd8f00;
    font-size: 20px;
}

.testi-main h4 {
    font-size: 25px;
    text-transform: uppercase;
}

.testi-main span {
    font-family: 'Roboto';
    font-size: 17px;
}

button.slick-next.slick-arrow::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -4px;
    background-image: url(../images/testi-arrow-2.png);
    width: 70px;
    height: 80px;
    background-repeat: no-repeat;
}

button.slick-prev.slick-arrow::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -45px;
    background-image: url(../images/testi-arrow-2.png);
    width: 70px;
    height: 80px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

/*---------------------------------------------------- Testimonial Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

.footer-links.footer-links-contact li {
    margin: 20px 0;
    gap: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links.footer-links-contact li a {
    color: #ffffff78;
    font-family: 'Montserrat';
    font-size: 14px;
}

.phone-name p {
    color: #ffffff78;
}

.footer-links.footer-links-contact li i {
    color: white;
}

footer {
    background-color: #212121;
}

.bar {
    display: block;
    margin: 0 0 10px 0;
    color: #ffffff;
    padding: 0 0 20px 0;
    position: relative;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 999999999;
}

.ftr_box {
    position: relative;
    padding: 14px 22px 22px 15px;
    height: 106.7%;
    border-right: 1px solid #4b4d4d;
}

.ftr_box::before {
    /* position: absolute; */
    height: 80%;
    width: 1px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.ftr_box1::after {
    /* position: absolute; */
    /* height: 100%; */
    width: 1px;
    /* content: ''; */
    /* background-color: #20a4b2; */
    bottom: 0;
    right: 0;
}

.ftr_logo p {
    width: 85%;
    margin: 0 0 30px 0px;
    color: #ffffff4d;
    font-weight: 400;
    font-size: 14px;
}

.ftr_logo h5 {
    color: #fff;
}

ul.footer_social {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.footer_social li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #889495;
    transition: 0.3s ease-in-out;
}

ul.footer_social li a:hover i {
    transition: 0.3s ease-in-out;
    color: #fff;

}

ul.footer_social li a:hover {
    transition: 0.3s ease-in-out;
    background: #c80000;
    border: unset;
}

ul.footer_social li a i {
    color: #fff;
    font-size: 15px;
    color: #889495;
    transition: 0.3s ease-in-out;
}

ul.services a {
    font-size: 14px;
    margin: 0 0 20px 0;
    transition: 0.3s ease-in-out;
}

.ftr_box a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #ffffff78;
    display: block;
    width: fit-content;
    margin: 15px 0;
}

.footer-links.footer-links-contact ul li img {
    object-fit: scale-down;
    width: auto;
}

.copy_right p {
    margin: 0;
    /* padding: 20px 0; */
    text-align: center;
    /* border-top: 1px solid #4b4d4d; */
    color: #b6b6ad;
    font-weight: 400;
}

.banner_main_box::before {
    position: absolute;
    width: 37%;
    height: 220px;
    right: -20%;
    bottom: 0;
    content: '';
    background: #d12128;
}

ul.our-happy-box-ul img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 7px 4px #00000029;
}


.ftr_logo a {
    font-family: "VintageKing";
    font-size: 22px;
    text-align: left;
    display: flex;
    align-items: self-start;
    justify-content: left;
    width: fit-content;
    color: #fff;
    line-height: 40px;
}

.ftr-right-bar {
    position: relative;
    z-index: 2;
    /* margin-left: 42px; */
}

.ftr-right-bar::before {
    position: absolute;
    top: 0;
    left: -24px;
    width: 104.3%;
    height: 13%;
    background: #c1272d;
    content: '';
    z-index: 2;
}

.footer-links.footer-links-contact a {
    margin: 0px 0;
}


ul.services a:hover {
    padding: 0 0 0 6px;
    transition: 0.3s ease-in-out;
    color: #c80000;
}

ul.quick a {
    transition: 0.3s ease-in-out;
    margin-bottom: 20px;
}

ul.quick a:hover {
    padding: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

.img-back-ft {
    background-image: url(../images/ft-back.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    padding-top: 104px;
}

footer .row {
    border: 1px solid #4b4d4d;
}

.ftr_logo {
    position: relative;
    z-index: 2;
    border-right: 1px solid #4b4d4d;
    padding: 97px 0px 144px 35px;
}

.ftr_logo a img {
    margin-bottom: 15px;
}

.ft-btm-links ul {
    display: flex;
    justify-content: end;
    margin-right: 62px;
    gap: 40px;
    margin-bottom: 0px;
}

.ft-btm-links ul li a {
    color: #b6b6ad;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
}

.container-fluid.p-0 {
    padding: 19px 0px !important;
}

.ftr_logo:before {
    height: 290px;
    width: 1px;
    background-color: #4b4d4d;
    bottom: -38px;
    left: -10px;
    z-index: -1;
}

.ftr_logo:after {
    position: absolute;
    height: 1px;
    width: 410px;
    background-color: #4b4d4d;
    top: 0;
    left: -10px;
    z-index: -1;
}

.row.e {
    border: unset;
    width: 100%;
}

.ftr-right-bar .row {
    border: unset;
}

.ftr_box.ftr_box1 {
    padding: 14px 22px 38px 22px;
    border-right: unset;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Banner Inner Section Start ------------------------------------------------------------- */

section.banner-sec-iner {
    background-image: url(../images/banner-inner.jpg);
    width: 100%;
    height: 100%;
    padding: 160px 0;
}

.banner-txt-iner h1 {
    font-size: 81px;
    text-transform: uppercase;
}

.banner-txt-iner p {
    font-size: 14px;
    color: #fff;
    width: 68%;
}

.banner-txt-iner.i h1 {
    font-size: 65px;
    line-height: 70px;
}

.banner-txt-iner.i p {
    width: 70%;
}

.menuSec.iner {
    padding: 10px 0 0;
}

/*---------------------------------------------------- Banner Inner Section End ------------------------------------------------------------- */


/*------------------------------------------------------ About-Inner-Page Start --------------------------------------------------------------------*/

section.about-us-sec.iner {
    background: unset;
}

section.about-us-sec.iner img {
    width: 93%;
    height: 640px;
}

.about-txt-3 {
    padding-top: 20px;
}

.about-txt-3 p {
    font-size: 14px;
}

section.about-us-sec.iner .about-txt p {
    margin: unset;
    margin-top: 15px;
    font-size: 14px;
    width: 98%;
}

section.about-us-sec.iner .about-txt h2 {
    margin-bottom: unset;
}

section.about-iner {
    padding-bottom: 100px;
}

section.about-iner .row {
    margin-bottom: 60px;
}

.about-img-1:before {
    content: '';
    position: absolute;
    top: -14px;
    left: 19%;
    background: #c1272d;
    width: 76%;
    height: 400px;
    z-index: -1;
}

.about-img-1 {
    position: relative;
}

.about-txt-1 {
    width: 90%;
    text-align: right;
}

.about-txt-1 h2 {
    font-size: 60px;
    text-transform: uppercase;
}

.about-txt-1 p {
    font-size: 13px;
    margin-bottom: 15px;
}

.about-img-2 {
    position: relative;
}

.about-img-2:before {
    content: '';
    position: absolute;
    top: -14px;
    left: -16px;
    background: #c1272d;
    width: 63%;
    height: 400px;
    z-index: -1;
}

.about-txt-2 h2 {
    font-size: 60px;
    text-transform: uppercase;
}

.about-txt-2 p {
    margin-bottom: 15px;
    font-size: 13px;
}

section.about-iner .row {
    padding: 0 5%;
}

/*------------------------------------------------------ About-Inner-Page End --------------------------------------------------------------------*/


/*------------------------------------------------------ Service Detail Start --------------------------------------------------------------------*/

section.service-sec.iner {
    padding-top: 100px;
    margin-bottom: 130px;
}

.txt-serv p {
    opacity: 85%;
}


section.service-detail-sec {
    padding: 130px 0;
}

.service-detl-txt .service-txt {
    border-bottom: unset;
    padding-bottom: unset;
    margin-bottom: 20px;
    align-items: center;
}

.service-detl-txt .service-txt h5 {
    font-size: 35px;
}

.service-detl-img img {
    width: 98%;
    height: 505px;
    object-fit: cover;
}

.service-detl-txt p {
    font-size: 14px;
    line-height: 27px;
}

.service-detl-txt-3 p {
    font-size: 14px;
    line-height: 28px;
}

/*------------------------------------------------------ Service Detail End --------------------------------------------------------------------*/


/* --------------------------------------- Inner Contact Section Start ------------------------------------- */

section.contact-inner {
    text-align: center;
    padding: 100px 0;
}


.inner-social-icon {
    border: 1px solid #f6e6e1;
    border-radius: 10px;
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 100px;
    height: 240px;
}

.contact-inner-head p {
    width: 52%;
    margin: 0 auto;
    opacity: 80%;
}

.contact-inner-head {
    margin-bottom: 40px;
}

.contact-inner-head h2 {
    font-size: 80px;
    text-transform: uppercase;
}

.inner-social-icon img {
    width: 17%;
    margin-bottom: 20px;
}

.inner-social-icon h4 {
    font-size: 28px;
    text-transform: uppercase;
    color: #222222;
    font-weight: 500;
    margin-bottom: 7px;
}

.inner-social-icon p {
    font-size: 15px;
    width: 90%;
    margin: 0 auto;
    opacity: 80%;
}

.inner-social-icon a {
    font-size: 15px;
    color: #000;
    opacity: 70%;
}

.main-contact-head h2 {
    font-size: 60px;
    text-transform: uppercase;
}

.main-contact-head p {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
    opacity: 80%;
}

.form-text-area textarea {
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #d3d1ce;
    width: 100%;
    resize: none;
    height: 250px;
    background-color: #fefdfc;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #000000bf;
}

.form-text-area label {
    text-align: start;
    color: #676767;
    font-size: 14px;
    font-family: 'Montserrat';
    margin-bottom: 5px;
}

.contact-inner-input input {
    font-size: 16px;
    border: 1px solid #d3d1ce;
    width: 100%;
    background: #fefdfc;
    border-radius: 10px;
    margin-bottom: 25px;
    height: 50px;
    padding-left: 20px;
    color: #000000bf;
}

.contact-inner-input {
    text-align: start;
}

.form-text-area {
    text-align: start;
}

.contact-inner-input label {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #676767;
    margin-bottom: 5px;
}

/* --------------------------------------- Inner Contact Section End --------------------------------------- */




/*-------------------------------------------------------- Inner Cart Start --------------------------------------------------------------------*/

/* CART PAGES CSS:STRT */

.product-cart figure,
.product-cart article {
    display: inline-block;
}

.product-cart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}


.cart-page-tble thead tr {
    height: 40px;
    color: #fff;
    background-color: #c1272d;
}

.cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'BlenderPro';
}

.cart-page-tble tbody tr td {
    padding: 20px 0px;
}

table.cart-page-tble {
    width: 100%;
}

.product-cart article p {
    font-size: 17px;
    color: #4d4c4c;
    text-transform: uppercase;
    margin: 0 0 0px;
    line-height: 30px;
    font-family: 'Roboto';
}

.product-cart article {
    margin-left: 10px !important;
}

.cart-page-tble tbody tr td input {
    height: 60px;
    background-color: #ffff;
    color: #000;
    border: 1px solid #00000030;
}

.update-cart {
    font-size: 19px;
    text-transform: capitalize;
    color: #4d4c4c;
    margin-top: 10px;
    font-family: 'Roboto';
}

.shipping.text-black h4 {
    color: #4d4c4c;
    font-size: 30px;
    text-transform: uppercase;
}

.estimate.text-black h4 {
    color: #4d4c4c;
    font-size: 30px;
    text-transform: uppercase;
}

.unit-sub-price-text {
    font-size: 17px;
    color: #4d4c4c;
    font-family: 'Montserrat';
}

.cart-page-tble tbody tr {
    border-bottom: 1px solid #c4c4c4;
}

.cart-page-tble tbody tr td i {
    border-radius: 0;
    background-color: #c1272d;
}

.cart-cross {
    height: 40px;
    width: 40px;
    font-size: 25px;
    background: #000000;
    color: #fff;
    padding: 7px;
}

.total-box,
.total-f,
.shipping-box {
    padding: 30px 30px 0px 40px;
    background-color: #f7f7f7;
    border: 1px solid #8989893d;
}

.shipping.text-black {
    margin-bottom: 21px;
}

.estimate.text-black.mt-30 {
    margin-bottom: 15px;
}

.total-box {
    border-bottom: unset;
}

.total-f {
    padding: 10px 50px 10px 50px;
    background-color: #f6f6f6;
    border-top: unset;
}

.total-box .sum li {
    color: #4d4c4ceb;
    font-size: 24px;
    line-height: 35px;
    font-family: 'Roboto';
    margin-bottom: 20px;
}

.total-f h4 {
    font-size: 30px;
    text-transform: uppercase;
}

.total-box .sum li span {
    margin-left: 60px;
}

.total-f span {
    margin-left: 71px;
}


.cart-paypal-box {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    background: #fff;
}

.cart-paypal-box p {
    display: block;
    width: fit-content;
    margin: auto;
    background-color: #fff;
    padding: 4px 20px;
    margin-top: -43px;
    margin-bottom: 20px;
    border: 1px solid #c4c4c4;
    color: #000;
    font-family: 'Montserrat';
    letter-spacing: 5px;
}

.pd-12-110 {
    padding: 12px 110px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-minus-60 {
    margin-top: -60px;
}

.cart-main-sec {
    padding: 80px 0;
}

.checkout-bttn a {
    color: #fff;
    display: block;
    background: #c1272d;
    text-transform: uppercase;
    border-radius: 10px;
    border-color: unset;
    font-size: 18px;
    font-family: 'Montserrat';
    height: 70px;
    padding: 20px;
}

.cart_btn {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0% auto;

    color: #fff;

    font-size: 20px;

    text-transform: uppercase;

    height: 50px;

    width: 250px;

    background: #53171d;

    border-radius: 100px;

    font-family: 'Bebas Neue';
}

.cart_btn:hover {
    color: black;
}

.product-cart img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.product-cart figure {
    /* padding: 10px; */
    margin: 0;
    /* background-color: #eaeaea; */
    /* border-radius: 3px; */
    /* border: 1px solid #c8c8c8; */
}

th:first-child {
    border-radius: 10px 0 0 10px;
}

th:last-child {
    border-radius: 0 10px 10px 0;
}

/* CART PAGES CSS:END */

/*-------------------------------------------------------- Inner Cart End --------------------------------------------------------------------*/


/*--------------------------------------------------------  Checkout Page Start --------------------------------------------------------------------*/

.billing_form h3 {
    color: #131211;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.billing_form label {
    font-size: 15px;
    font-family: 'Roboto';
    color: #7c7c7c;
    font-weight: 600;
}

.radiosss p {
    color: #000;
    font-size: 12px;
    font-family: "Montserrat";
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #cfcfcf;
    margin-bottom: 20px;
    padding-left: 15px;
    background: transparent;
    border-radius: 0;
}

.billing_form input::placeholder {
    color: #7c7c7c;
    font-family: "Montserrat";
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #000;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 28px;
    text-transform: uppercase;
    color: #000;
    opacity: 80%;
}

.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: "Roboto", 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: "Roboto", 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: "Roboto", 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: "Roboto", 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: "Roboto", 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;
}

.check_menu ul li.purp {
    color: #700ea3;
}

p.p-same-p {
    font-size: 13px;
    font-family: 'Montserrat';
    background: #fffcf3;
    line-height: 23px;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}

.cart_sidebar h3 {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cart_sidebar .h-sub {
    color: #000000;
    font-size: 28px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    text-transform: uppercase;
    opacity: 80%;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.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: 14px;
    font-family: 'Montserrat';
    font-weight: 400;
    color: #000;
}

.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 #000;
    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: "Roboto", 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: "Poppins", 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: 20px;
    border: none;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #000;
    border-radius: 0;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.checkout_btn:hover {
    color: white;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    color: #000;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.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: #cb0e2c;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page.all-section.all-side {
    padding: 100px 0;
}

span.chk-price {
    color: #000;
}

.cart_sidebar a.theme-btn-1 {
    width: 100%;
}

.cart_sidebar .siteBtn:hover {
    background: #000;
    transform: translate(0px, -2px);
}

.cart_sidebar .siteBtn {
    display: inline-block;
    text-align: center;
    font-family: "Montserrat";
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background: #c1272d;
    padding: 11px 188px;
    transition: 0.9s;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px #4444442b;
}

.billing_form {
    padding: 40px 25px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}

/*--------------------------------------------------------   Checkout Page End --------------------------------------------------------------------*/


/*--------------------------------------------------------  Blog Section Start  --------------------------------------------------------------------*/

.blog-txt h4 {
    font-size: 25px;
    text-transform: uppercase;
    margin: 10px 0;
}

.blog-txt p {
    font-family: 'Roboto';
    font-size: 14px;
    opacity: 80%;
    border-bottom: 1px solid #00000030;
    padding-bottom: 15px;
}

span.com-date {
    font-family: 'Montserrat';
    font-size: 13px;
    color: #c1272d;
    font-weight: 600;
}

.use-blog {
    display: flex;
    align-items: center;
    gap: 10px;
}

.use-blog span {
    font-size: 15px;
    font-family: 'BlenderPro';
    text-transform: uppercase;
}

.add-shar i {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #c1272d;
    border-radius: 10px;
}

.main-user {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 15px;
}

.add-shar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-txt {
    padding: 30px 30px;
    background: #eae9e8c7;
    border-radius: 20px;
    width: 80%;
    position: absolute;
    left: 60px;
    bottom: -30px;
}

.blog-main {
    position: relative;
}

section.blog-sec {
    padding: 130px 0;
}

.blog-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

section.blog-sec .row.i {
    margin-bottom: 100px;
    justify-content: center;
}

/*--------------------------------------------------------  Blog Section End  --------------------------------------------------------------------*/


/*-----------------------------------------------------  Blog Detail Section Start  -----------------------------------------------------------------*/

.blog-detail-txt p {
    font-size: 14px;
    margin-bottom: 20px;
}

.add-shar i {
    color: #ecdbbf;
}

section.blog-detail-sec {
    padding: 100px 0;
}

section.blog-detail-sec .row {
    align-items: center;
}

.blog-detail-txt h6 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-detail-txt-2 h6 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-detail-txt-2 .main-user {
    border-top: 1px solid #00000030;
    padding-top: 20px;
}


.blog-detail-txt-2 p {
    margin-bottom: 20px;
}

.blog-detail-sec-img img {
    width: 93%;
    height: 590px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 60px;
}

.blog-detail-txt h4 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main-user {
    justify-content: space-between;
}

/*------------------------------------------------------  Blog Detail Section End  ------------------------------------------------------------------*/



/* product detials page  */

section.pd-details {
    padding-top: 100px;
    position: relative;
    padding-bottom: 30px;
}

section.pd-details .pd-dt-img img {
    position: relative;
    transition: 0.5s;
    width: 100%;
}

section.pd-details .pd-dt-img {
    position: relative;
    padding-right: 20px;
}

section.pd-details .pd-dt-img img:hover {
    filter: brightness(0.6);
    cursor: pointer;
}

section.pd-details h3 {
    color: #394136;
    padding-bottom: 10px;
    font-size: 40px;
    line-height: 52px;
    text-transform: uppercase;
}

section.pd-details h3 span.price {
    float: right;
    color: #c1272d;
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
}

section.pd-details .pd-rate {
    margin-bottom: 18px;
}

section.pd-details p {
    font-size: 16px;
    line-height: 30px;
    color: #636363;
}

section.pd-details .pd-rate ul {
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 6px;
}

section.pd-details .pd-rate ul li a i {
    color: #ffba00;
    font-size: 26px;
    transition: 0.9s;
    cursor: pointer;
}

section.pd-details .pd-rate ul:hover li a i {
    color: #000;
    transform: rotate(360deg) scale(1.2);
}

section.pd-details .pd-rate ul li:last-child a i {
    color: #cccccc;
}

section.pd-details .pd-rate ul:hover li:last-child a i {
    color: #000;
}

section.pd-details .pd-rate ul li:nth-last-child(2) a i {
    color: #cccccc;
}

section.pd-details .pd-rate ul:hover li:nth-last-child(2) a i {
    color: #000;
}

section.pd-details .descp {
    margin-bottom: 30px;
}

section.pd-details .number-item {
    position: relative;
}

section.pd-details .number-item li h5 {
    font-family: 'BlenderPro';
    text-transform: capitalize;
    font-weight: 500;
    color: #394136;
    margin-right: 40px;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 0;
    text-transform: uppercase;
}

section.pd-details .number-item li.inc {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0px 0px;
    color: #000;
    font-size: 16px;
}

section.pd-details .number-item li.inc input.input-number {
    border: 2px solid #e5e5e5;
    margin: 0px auto;
    padding: 10px 0px;
    text-align: center;
    width: 100px;
}

section.pd-details .number-item li.inc::placeholder {
    font-weight: 600;
}

section.pd-details .number-item li.inc span {
    border: 1px solid #d6d6d6;
    font-weight: 500;
    font-size: 20px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 45px;
}

section.pd-details .number-item li.inc span:hover {
    background-color: #ca1c00;
    color: #fff;
    cursor: pointer;
    border-color: transparent !important;
}

section.pd-details .number-item ul {
    margin-bottom: 40px;
}

section.pd-details ul.product-tage {
    position: relative;
}

section.pd-details ul.product-tage li {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 11fr;
    align-items: center;
}

section.pd-details ul.product-tage li span {
    color: #636363;
    line-height: 30px;
}

section.pd-details .pd-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0px auto;
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
}

section.pd-details .pd-gallery img {
    transform: scale(1.2);
    transition: 0.5s;
}

section.pd-details .colLeft {
    position: relative;
}

section.pd-details .pd-gallery img:hover {
    transform: unset;
    filter: brightness(0.5);
    cursor: pointer;
}

section.pd-detail .pd-dt-content {
    padding-left: 20px;
}

section.pd-details .pd-dt-content {
    padding-left: 30px;
}

.product-disc {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.product-disc .nav-tabs .nav-link {
    padding: 20px 50px;
    border: 0px;
    color: #383838;
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;
    background-color: #f1f1f1;
    letter-spacing: 1px;
    border-radius: 10px !important;
    transition: 0.9s;
    font-family: 'BlenderPro';
    text-transform: uppercase;
}

.product-disc .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background-color: #c1272d;
    color: #fff;
}

.product-disc .nav-tabs .nav-link:hover {
    background-color: #222222 !important;
    color: #fff;
    transform: translate(0px, -10px);
}

.product-disc .nav-tabs li.nav-item {
    margin-bottom: 34px;
}

.product-disc .tab-content p {
    padding-top: 20px;
    color: #616161;
    line-height: 30px;
    font-size: 16px;
}

.product-disc .nav-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #e3e3e3;
}

/* reives */

.tab-content input[type="text"] {
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px #e7e6e6;
    border-radius: 5px;
    color: var(--black-color);
    font-size: 14px;
    line-height: 24px;
    padding: 16px 20px;
    border: 0px;
    margin-bottom: 20px;
}

.tab-content textarea {
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px #e7e6e6;
    border-radius: 5px;
    color: var(--black-color);
    font-size: 14px;
    line-height: 24px;
    padding: 16px 20px;
    border: 0px;
    margin-bottom: 20px;
}

.tab-content h6 {
    margin-top: 30px;
    color: var(--black-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'BlenderPro';
    text-transform: uppercase;
}

.rating:not(:checked)>input {
    position: absolute;
    appearance: none;
}

.rating>input:checked~label {
    color: var(--secondary-color);
}

.rating:not(:checked)>label:before {
    content: "\f006 ";
    font-family: "fontawesome";
    font-size: 30px;
    margin: 0px 8px;
}

.rev-btn {
    margin-top: 20px;
}

.rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 50px;
    color: #666;
    font-family: "Roboto", sans-serif;
}

div#reviews button.btn-1.tabs-btn {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 26px;
    padding: 14px 60px;
    text-align: center;
    transition: 0.5s;
    box-shadow: 0px 0px 2px 1px #e7e5e6;
    background-color: #eee8da;
    color: #000;
    border: 0px;
    font-weight: 500;
}

div#reviews button.btn-1.tabs-btn:hover {
    background-color: #000;
    color: #fff;
}

.description .tab-content textarea::placeholder {
    color: #9e9e9e;
    font-family: "Poppins";
}

.buttn.my-2 a.p-btn {
    display: inline-block;
    padding: 14px 40px;
}

.buttn.my-2 a.p-btn span {
    display: inline-block;
}

section.pd-details ul.product-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: absolute;
    bottom: -70px;
    right: 0;
    left: 0;
}

section.pd-details ul.product-gallery li a {
    display: block;
    position: relative;
    transition: 1.2s;
}

section.pd-details ul.product-gallery li a img {
    position: relative;
    transition: 0.9s;
    cursor: pointer;
}

section.pd-details ul.product-gallery li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 98%;
    background: #222222;
    top: 2px;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    transition: 0.9s;
    opacity: 0;
    display: table;
    margin: 0px auto;
}

section.pd-details ul.product-gallery li a:hover:before {
    width: 0%;
    opacity: 1;
}

section.pd-details ul.product-gallery li a:after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background: transparent;
    top: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    transition: 0.9s;
    display: table;
    outline: 9px solid #ffba00;
    outline-offset: -10px;
    opacity: 0;
    margin: 0px auto;
}

section.pd-details ul.product-gallery li a:hover:after {
    width: 100%;
    opacity: 1;
}

section.pd-details ul.product-gallery li a:hover {
    transform: translate(0px, -6px);
}

/* product detials page  */


/*Product page Start*/
section.productdetail {
    padding: 100px 0px;
}

section.productdetail .dd-button {
    margin-bottom: 20px;
    font-family: 'BlenderPro';
    background: #c1272d;
    border: 0;
    text-transform: uppercase;
    padding: 14px 10px 14px 30px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px;
}

section.productdetail .dd-button h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 34px;
    letter-spacing: 1px;
    margin: 0;
}

ul.ul1prodetail h3 span {
    float: inline-end;
}

ul.ul1prodetail h3 span a i {
    color: #000;
}

.ul1prodetail li {
    font-family: "Poppins";
    font-size: 14px;
    color: #000;
}

/* Dropdown */

.dropdown {
    width: 100%;
    margin-bottom: 40px;
}

.dd-menu li:last-child {
    border-bottom: 0px !important;
}

.dd-input {
    display: none;
}

section.productdetail .row.conts {
    align-items: center;
    margin-top: 11px;
    margin-bottom: 50px;
}

.dd-menu {
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    list-style-type: none;
}

.dd-input+.dd-menu {
    display: none;
}

.dd-input:checked+.dd-menu {
    width: 100%;
    margin: 0px auto;
    display: inline-block;
    position: unset;
    margin-top: 20px;
}

.dd-menu li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 10px;
    transition: 0.9s;
    cursor: pointer;
    border-radius: 15px;
    font-family: 'Montserrat';
    font-size: 16px;
}

.dd-menu li:hover {
    background-color: #f6f6f6;
}

.dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
}

select#categories {
    padding: 17px 20px;
    border: none;
}

select#categories option {
    padding: 17px 20px;
}

ul.ul2prodetail h3 {
    margin-bottom: 20px;
    font-family: 'BlenderPro';
    background: #c1272d;
    border: 0;
    text-transform: uppercase;
    padding: 14px 10px 14px 30px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px;
    color: #fff;
}

ul.ul2prodetail li a input {
    display: none;
}

ul.ul2prodetail li a {
    color: #222222;
    font-size: 18px;
}

ul.ul2prodetail li span {
    font-family: "poppins";
    color: #222222;
    font-size: 18px;
}

ul.ul2prodetail li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 10px;
    transition: 0.9s;
    cursor: pointer;
    border-radius: 15px;
    font-family: 'Montserrat';
    font-size: 16px;
}

.prod-sec-prod-pg {
    margin-top: 30px;
}

section.productdetail .pd-box {
    margin-bottom: 50px;
}

.heading-prd {
    position: relative;
}

.heading-prd h5 {
    font-size: 25px;
    line-height: 35px;
    margin: 0;
    font-family: 'BlenderPro';
    text-transform: uppercase;
}

.sort p {
    font-family: 'Montserrat';
    color: #666666;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    font-weight: 400;
    text-align: right;
}

ul.view-pd {
    display: flex;
    justify-content: flex-end;
    margin: 0px;
    gap: 20px;
    align-items: center;
}

ul.view-pd li span {
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    font-family: "Poppins";
    font-weight: 400;
}

/*Product page End*/


.product-main {
    border: 1px solid #0000002b;
    border-radius: 15px;
    margin-bottom: 30px;
}

.product-txt {
    padding: 10px 20px;
}

.rate-product i {
    color: #ffa800;
    font-size: 12px;
}

.rate-product span {
    font-family: 'Montserrat';
    font-size: 12px;
}

.product-txt p {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #0000003d;
}

.final-prod-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.add-pro:hover a i {
    color: #c1272d;
}

.add-pro:hover a h6 {
    color: #c1272d;
}


.add-pro a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-pro h6 {
    font-family: 'Montserrat';
    font-size: 14px;
    text-transform: uppercase;
    border-right: 1px solid #94918e;
    padding-right: 50px;
    color: #94918e;
}

.final-prod-add h4 {
    font-family: 'BlenderPro';
    font-size: 25px;
    color: #c1272d;
}

.add-pro i {
    color: #94918e;
}

.menuSec a.theme-btn {
    height: 45px;
}

.productdetailportion img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.productdetailsmallportion img {
    width: 100%;
    height: 100px;
    object-fit: scale-down;
}

.productdetailnav {
    margin-top: -70px;
}

.productdetailsmallportion {
    background: #fff;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    padding: 0 5px;
}

.slick-slide {
    opacity: 1;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.about-sec-img:hover img {
    transform: scale(1.1);
}


.service-img:hover img {
    opacity: 1;
}

img.banner-img:hover {
    animation: bounceIn 0.6s ease forwards;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

img.im {
    height: 500px;
}

.rev-btn button {
    border: unset;
    background: red;
    padding: 12px 30px;
    border-radius: 10px;
    color: #fff;
}