@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --white: #fff;
    --black: #000;
    --primary: #2F528F;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}


/* How to add New font */

@font-face {
    font-family: "MICROGBE";
    src: url("../fonts/MICROGBE.TTF");
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "MICROGBE";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* loader */


/* btn css */

.themeBtn {
    background: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5em;
}

.themeBtn:hover {
    background: var(--black);
    color: var(--white);
}


/* btn css */


/* navigation css */

.leftNav ul {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

header {
    background: var(--primary);
    position: relative;
    z-index: 99;
}

.leftNav ul li a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.leftNav ul li .TopLogo {
    background: #fff;
    width: 276px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(12% 0, 88% 0, 100% 100%, 0% 100%);
    margin: 0 0 -4rem -7rem;
    position: relative;
    z-index: 9;
}

.ScondBar {
    background: #fff;
    padding: 14px 0;
}

.ScondBar ul {
    display: flex;
    gap: 7px;
    align-items: center;
}

.ScondBar ul li span {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
    margin-right: 12px;
}

.ScondBar ul li a {
    background: rgb(47 82 143 / 20%);
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
}

.ScondBar ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

.headrSearch {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: end;
}

.headrSearch form input {
    border: unset;
    background: transparent;
    font-size: 14px;
    box-shadow: unset;
}

.headrSearch form input::placeholder {
    color: #B8B8B8;
}

.headrSearch form a {
    background: rgb(255 255 255 / 10%);
    border: 1px solid var(--primary);
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--primary);
}

.headrSearch form {
    display: flex;
    align-items: center;
}

.headrSearch .themeBtn {
    font-size: 1rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.navbar-nav {
    align-items: center;
    gap: 1rem;
    padding: 14px 0;
}

.navbar-nav li+li {
    border-left: 1px solid var(--white);
    padding-left: 1rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 15px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 824px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.homeSlider .slide-inner:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 55%;
    height: 630px;
    border-radius: 50%;
    bottom: -20rem;
    z-index: -1;
    right: 0;
}

.mainHead {
    font-size: 6.25rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    line-height: 0.8;
}

.slideOne h1 span {
    display: block;
    font-size: 2.1875rem;
    font-family: 'Poppins';
    margin-bottom: 1.5rem;
}

.subHead {
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
}

.slideOne p {
    color: var(--white);
    line-height: 1.8;
    padding-bottom: 12px;
}

.banImg {
    margin: 18rem 0 0 -6rem;
}


/* slider css */


/* Search Sec Css Start */

.searchSec {
    padding-bottom: 5rem;
}

.searchSec h2 {
    font-size: 2.8125rem;
    color: var(--black);
    text-align: center;
}

.searchBox {
    background: #F9F9F9;
    padding: 3rem 6rem 5rem 6rem;
    margin-top: -3.5rem;
}

.searchTabs ul {
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 0 1.5rem 0;
}

.searchTabs ul li a {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--primary);
    border-radius: unset !important;
    padding: 12px 1em;
    min-width: 200px;
    justify-content: center;
    font-weight: 500;
}

.searchTabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: var(--primary);
}

.searchForm select {
    height: 70px;
    width: 100%;
    border: 1px solid #E8E8E8;
    background: var(--white);
    font-size: 0.875rem;
    color: #B8B8B8;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.searchForm .themeBtn {
    width: 100%;
    border: unset;
    height: 70px;
    justify-content: center;
    font-size: 1.375rem;
}


/* Search Sec Css End */


/* Product Sec Css Start */

.productSec {
    background: #F9F9F9;
    padding: 5rem 0 7rem 0;
}

.secHeading span {
    display: block;
    font-size: 1.375rem;
    color: #2F2F2F;
    font-family: 'Poppins';
    font-weight: 500;
}

.secHeading {
    font-size: 4.375rem;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
}

.productBox figure {
    border: 1px solid #C9C9C9;
    border-radius: 20px;
    background: var(--white);
    text-align: center;
    padding: 4rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.productBox figure img {
    transition: 0.5s ease-in-out;
}

.productBox figure:hover img {
    transform: scale(1.1);
}

.prodcutContent {
    margin-top: 1.5rem;
}

.prodcutContent h6 {
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1.5;
}

.prodcutContent .price {
    text-transform: uppercase;
    color: #2F2F2F;
    display: inline-flex;
    gap: 1rem;
}

.prodcutContent .price span {
    font-weight: 500;
}

.prodcutContent p {
    font-size: 10px;
    color: #2F2F2F;
    padding-top: 10px;
}

.prodcutContent .themeBtn {
    font-size: 1rem;
}


/* Product Sec Css End */


/* Categories Sec Css Start */

.categoriesSec {
    padding: 5rem 0 7rem 0;
}

.categoriesBox {
    text-align: center;
}

.categoriesBox figure {
    position: relative;
}

.categoriesBox figure:before {
    content: "";
    position: absolute;
    border: 1px dashed var(--primary);
    width: 435px;
    height: 534px;
    border-radius: 100px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.categoriesBox figure img {
    border-radius: 100px;
}

.categoriesContent h3 {
    font-size: 1.5625rem;
    text-transform: uppercase;
    color: var(--black);
}

.categoriesContent {
    margin-top: 3.5rem;
}

.categoriesContent .price {
    color: #2F2F2F;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.categoriesContent .price span {
    font-weight: 500;
}

.catBg {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
}


/* Categories Sec Css End */


/* Shop Sec Css Start */

.shopSec {
    background: url(../images/shopbg.jpg) center/cover no-repeat;
    padding: 6rem 0;
}

.shopContent h1 span {
    display: block;
    font-size: 1.375rem;
    font-family: 'Poppins';
}

.shopContent h2 {
    background: var(--primary);
    width: fit-content;
    padding: 0 0.875rem;
}

.shopContent h1 {
    line-height: 1;
}

.shopContent p {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.8;
}

.shopContent .themeBtn {
    border: 1px solid var(--white);
}

.featureSec .row+.row {
    padding-top: 4rem;
}

.prodBg {
    position: absolute;
    bottom: 0;
}


/* Shop Sec Css End */


/* Insta Sec Css Start */

.insta-section h2 {
    font-size: 60px;
}

.insta-section {
    padding: 5rem 0 1rem 0;
}

.instaSlider .swiper-slide {
    transition: 0.5s ease;
    cursor: pointer;
    user-select: none;
}

.instaSlider .swiper-slide img {
    width: 100%;
    height: 490px;
    object-fit: cover;
}

.instaSlider {
    margin: -1rem -12rem 0;
}

.instaSlider .swiper-slide-prev,
.instaSlider .swiper-slide-active,
.instaSlider .swiper-slide-next {
    transform: scaleX(0.9) scaleY(0.8) translateY(-2rem);
}

.insta-section p {
    text-align: center;
    font-size: 1.375rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: -2rem;
}


/* Insta Sec Css  */


/* Footer Css Start */

footer {
    background: #030504;
    padding-top: 6rem;
}

footer ul li a:hover {
    color: var(--primary);
}

footer h3 {
    font-size: 1.5625rem;
    color: var(--white);
    padding-bottom: 1.2rem;
}

.links li a {
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.links li+li {
    border-top: 1px dashed rgb(255 255 255 / 50%);
    padding-top: 10px;
    margin-top: 10px;
}

.contactInfom li a {
    color: var(--white);
}

.contactInfom li a span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 3px;
}

.contactInfom li+li {
    border-top: 1px dashed rgb(255 255 255 / 50%);
    padding-top: 12px;
    margin-top: 12px;
}


/* .mapSec {
    display: flex;
}

.mapSec .pin {
    background-color: #2F528F;
    width: 250px;
    height: 250px;
    border-radius: 50%;
} */

.socialLinks li a {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--white);
}

.socialLinks li a span {
    text-decoration: underline !important;
}

.socialLinks li a i {
    background: rgb(255 255 255 / 20%);
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.25rem;
}

.socialLinks li+li {
    border-top: 1px dashed rgb(255 255 255 / 50%);
    padding-top: 0.875rem;
    margin-top: 0.875rem;
}

.copyRight p {
    margin: 0;
    color: var(--white);
}

.copyRight {
    border-top: 1px solid rgb(223 223 224 / 50%);
    margin-top: 2rem;
    padding: 1.2rem 0;
}

.footerPara {
    margin: 2.5rem 0 0;
    color: var(--white);
}

.socialLinks li a:hover,
.links li a:hover,
.contactInfom li a:hover {
    color: var(--primary);
}

.socialLinks li a:hover i {
    background: var(--primary);
    color: var(--white);
}


/* Footer Css End */


/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 77px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.innerBan {
    position: relative;
}

.innerBan .banImg {
    margin-bottom: 7rem;
}


/* 
.innerBan:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 59%;
    height: 631px;
    border-radius: 50%;
    bottom: -20rem;
    z-index: -1;
    right: 0;
} */

.categoriesBox.catbox2 figure:before {
    width: 713px;
    height: 774px;
    right: -1.5rem;
}

section.categoriesSec.categoriInner {
    padding-top: 8rem;
    padding-bottom: 0;
}

section.categoriesSec.categoriInner .row {
    margin-bottom: 9rem;
}

.categoriesContent p {
    font-size: 18px;
    color: #828282;
    line-height: 2;
}

.contactForm .form-group .form-control {
    height: 38px;
    width: 271px;
    border: 1px solid #C0C0C0;
    border-radius: unset;
}

.sideList {
    border: 1px solid #C9C9C9;
    border-radius: 20px;
    padding: 3rem 12px;
    background: #fff;
}

form.contactForm .themeBtn {
    width: 170px;
    font-size: 16px;
    font-weight: 500;
}

.formsec2 {
    margin-top: 3rem;
}

.formsec1 {
    margin-top: 2rem;
}

.formsec2 h5 {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
}

.formsec1 h5 {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
}

form.contactForm select {
    height: 38px;
    width: 271px;
    border: 1px solid #C0C0C0;
    margin-bottom: 1rem;
}

.sideList h4 {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sideList .form-check-label {
    font-size: 13px;
    color: #979797;
    margin-bottom: 9px;
}

section.productSec.proinner .productBox {
    margin-bottom: 6rem;
}


/*Contact Page CSS Start*/

.cntctSec .form-group {
    position: relative;
    display: flex;
    border: 1px solid #efefef;
    background-color: #F5F5F5;
    margin-bottom: 2rem;
}

.cntctSec .form-group i {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.25rem;
    background-color: #2F528F;
    width: 58px;
    height: 58px;
}

.cntctSec .form-group .form-control {
    border-radius: 0;
    background-color: #F5F5F5;
    height: 58px;
    border: 0;
    font-size: 16px;
    color: var(--black);
    transition: 0.4s ease-in-out;
    line-height: 1;
}

.cntctSec .arvlHead h2 {
    color: #fff;
    font-size: 3.125rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.cntctSec .arvlHead p {
    color: #fff;
    text-align: center;
    padding-bottom: 2rem;
}

.cntctSec .form-group textarea.form-control {
    height: 180px;
    padding-top: 1rem;
    background: #F5F5F5;
}

.cntctSec .arvlHead .sectionHeading {
    margin: 0 0 0;
}

.cntctLst i {
    color: #fff;
}

.mapSec {
    padding: 0;
}

section.contctPage {
    padding: 5rem;
}

section.mapSec {
    filter: grayscale(1);
}

section.cntctSec {
    padding: 5rem 0;
}

.contactBox {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contactBox figure {
    background: #2F528F;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 100%;
    box-shadow: 0 0 0px 10px rgb(47 82 143 / 51%);
}

.contactInformations {
    width: calc(100% - 120px);
}

.contactInformations a {
    color: var(--black);
}

.contactInformations h4 {
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
}

section.cntactForm {
    padding: 6rem 0 2rem 0;
}

.contactInformations span {
    color: #000;
}

.contactInformations a {
    color: #000;
}

section.cntctSec h2 {
    font-size: 60px;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
    text-transform: uppercase;
}


/*Contact Page CSS End*/

.Proreview {
    background: #F9F9F9;
    padding-bottom: 1rem;
    padding: 5rem;
}

.reviewImg {
    display: flex;
    align-items: center;
    margin: 4rem 0;
}

.content-wraper h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
}

.content-wraper {
    margin-left: 2rem;
}

.content-wraper h4 {
    margin: 0.9rem 0;
    font-size: 1rem;
    color: #726f6f;
    font-weight: 600;
}

.content-wraper span {
    margin-left: 10px;
    font-size: 0.95rem;
    color: #A4A4A4;
    font-weight: 600;
}

.content-wraper p {
    font-size: 1rem;
}

.Proreview .row+.row {
    margin: 5rem 0;
}

.reviewSec textarea {
    width: 100%;
    height: 160px;
    padding: 1rem;
    background: #F8F8F8;
    border-color: #EBEBEB;
}

.wishlistPro {
    background: #f8f6f6;
    padding-top: 0;
}

.detailPage,
.myswiper {
    overflow: hidden;
    height: 500px;
    width: 100%;
}

.productNav {
    background: #F9F9F9;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
}

.productNav figure {
    background: #fff;
    border-radius: 10px;
    padding: 3rem;
    margin: 0.7rem 0;
    border: 1px solid #F3F3F3;
    text-align: center;
}

ul.stckst li {
    background: #fff;
    border-bottom: 1px solid #C9C9C9;
    font-size: 1.25rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.2rem 0;
    padding-left: 1rem;
}

.productNav figure:hover {
    /* border: 1px solid var(--primary); */
}

.rating-box {
    background: #fff;
    border-bottom: 1px solid #C9C9C9;
    display: flex;
    align-items: center;
    padding-left: 0.4rem;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    cursor: pointer;
    font-size: 2.2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: gold;
}

.rating-box span {
    font-size: 1.3rem;
    color: #747474;
    font-weight: 500;
    padding-left: 0.5rem;
}

.prodtl-txt p {
    font-size: 1.125rem;
    color: #7e7e7e;
    background: #fff;
    border-bottom: 1px solid #C9C9C9;
    padding: 0.8rem 0;
    padding-left: 0.4rem;
}

.pspecification {
    /* padding: 3rem 0rem; */
    background: #fff;
    border: 1px solid #C9C9C9;
}

.quantitySec {
    background: #fff;
    display: flex;
    justify-content: space-evenly;
    padding: 2rem 0;
}

.quantitySec h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.quantitySec .number {
    padding: 0.7rem;
    font-size: 1rem;
    width: fit-content;
}

.quantitySec .number .minus {
    padding: 0.5rem;
}

.quantitySec .number .plus {
    padding: 0.5rem;
}

.quantitySec .number input {
    width: 100px
}

.number {
    background: #F7F6FB;
    padding: 1rem 0;
    border: 1px solid #CCCCCC;
    border-radius: 7px;
    width: 100%;
    color: #282828;
}

.number input {
    background: #F7F6FB;
    border: none;
    height: 2rem;
    width: 50px;
    text-align: center;
}

.number .minus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.number .plus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.proddesc {
    position: relative;
    background: #fff;
    padding: 3rem;
    border-top: 5px solid #2F528F;
    /* border-right: 25px solid #2F528F; */
    height: 800px;
    overflow-y: scroll;
}

.proddesc::-webkit-scrollbar {
    width: 20px;
}

.proddesc::-webkit-scrollbar-track {
    background: #2F528F;
}

.proddesc::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: #fff;
}

.proddesc::-webkit-scrollbar-thumb:hover {
    background: #fff;
}


/* .scroll {
    position: absolute;
    top: 50%;
    right: 14.7%;
    border-radius: 25px;
    padding: 2.2rem 0.5rem;
    background-color: #fff;
    z-index: 1;
} */

.proddesc p {
    font-size: 14px;
}

.proddesc p span {
    color: #000;
    font-weight: bold;
}

section.Proreview figure {
    /* border: 1px solid #C9C9C9; */
}

.swiper.myswiper figure img {
    border: 1px solid #C9C9C9;
    border-radius: 20px;
    padding: 19px 10px;
    background: #fff;
}

.swiper.myswiper {
    margin-top: 2rem;
}

.Proreview .swiper-pagination-bullet {
    height: 27px;
    width: 27px;
    display: inline-block;
    opacity: 1;
    border: 1px solid transparent;
    background: transparent;
    position: relative;
}

.Proreview .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    right: 0;
    background: #000000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 1.5rem;
}

.bdr {
    border: 1px solid #70707066;
    margin-top: 7rem;
}

.categoriesContent.abtcat {
    margin-left: 2rem;
}

.cart {
    padding: 4rem 0;
    background: #F9F9F9;
}

.cart-pro {
    padding: 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #DCDCDC;
    margin: 2rem 0;
}

.cart-pro .cart-des {
    padding: 2rem 0;
    padding-right: 22rem;
    padding-left: 1rem;
}

.cart-pro .cart-img {
    /* padding: 0.6rem; */
    border-right: 1px solid #DCDCDC;
}

.cart-qty {
    position: relative;
}

.cart-qty i {
    position: absolute;
    right: 0;
    top: -42px;
    font-size: 24px;
    color: #2F528F;
}

.modal-content {
    padding: 2rem;
    width: 700px;
    height: 400px;
}

.btn-order {
    width: 100%;
    justify-content: center;
}

.save {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.save input {
    background-color: #2F528F;
    color: #fff;
    /* font-size: 24px; */
    gap: 1;
    padding: 0.2rem;
    margin-right: 0.3rem;
}

.save h5 {
    font-size: 19px;
    padding: 0px;
    margin: 0;
    font-weight: 300;
}

.save p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    padding: 0px;
}


/* Revision */


/* Step 2 Css Start */

.checkOutStyle {
    padding: 4em 0px;
}

.checkOutStyle .title h4 {
    line-height: 24px;
    font-size: 24px;
    font-weight: 600;
}

.checkOutStyle .title p {
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.checkOutStyle .title p a {
    color: var(--primary);
    font-weight: 600;
}

.formStyle label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
}

.formStyle .form-control {
    height: 50px;
    margin-bottom: 20px;
}

.formStyle textarea.form-control {
    height: auto;
    resize: none;
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox input[type="checkbox"] {
    display: none;
}

.checkbox input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--black);
    cursor: pointer;
}

.checkbox input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

.checkbox input[type="checkbox"]+label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
}

.checkbox input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.order-summery hr {
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.order-summery .applyCoupon {
    display: flex;
}

.order-summery .applyCoupon .form-control {
    width: calc(100% - 150px);
    margin: 0;
    border-radius: 5px 0 0 5px;
}

.order-summery .applyCoupon .btnStyle {
    width: 150px;
    border-radius: 0 5px 5px 0;
}

.btnStyle {
    background-color: var(--primary);
    padding: 1em 2em;
    display: inline-block;
    border-radius: 50px;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid var(--primary);
}

.btnStyle:hover {
    color: var(--white);
}

.title h2 {
    font-size: 2.25rem;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.title {
    margin-bottom: 1em;
}


/* Step 2 Css End */


#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff!important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 35px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
    float: none;
    width: auto;
}

#search input[type="search"]::-webkit-input-placeholder {
    / Chrome/Opera/Safari /
    color: #fff;
}

#search input[type="search"]::-moz-placeholder {
    / Firefox 19+ /
    color: #fff;
    opacity: 1;
}

#search input[type="search"]:-ms-input-placeholder {
    / IE 10+ /
    color: #fff;
}

#search input[type="search"]:-moz-placeholder {
    / Firefox 18- /
    color: #fff;
    opacity: 1;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}
.headrSearch .searchSet {
    font-size: 1.2rem;
    color: var(--white);
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}