@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=Cormorant:wght@300;400;500;600;700&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* 
font-family: 'Cormorant', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Playfair Display', serif;
font-family: 'Roboto', sans-serif;
*/

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    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 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}


/***** 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
}


/***** 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: 15px 25px;
    border: unset;
    border-radius: 0;
    color: #ffffff;
    z-index: 1;
    background: #73c7c7;
    position: relative;
    font-size: 19px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    font-family: 'Montserrat';
    font-weight: 500;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 0;
    background-color: #28396f;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.theme_btn:hover {
    color: #fff;
}

.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: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', 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: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.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;
    /* padding: 10px 23px; */
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    /* padding: 5px 10px !important; */
}


.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: #28b16d;
}

.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: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: end;
    /* background: rgba(0, 0, 0, 0.1); */
    z-index: 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;
}


/* Tabs  */



/* ---------------------------- Home Page ------------------------ */
/* Header */
header.main_haider {
    /* background: #28396f; */
    padding: 20px 35px;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    width: 100%;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-field input {
    width: 65px;
    background: transparent;
    border: none;
    color: #fff;
}

.search-field input::placeholder {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.search-field i {
    color: #fff;
    font-size: 15px;
}

.favList ul {
    background: #fff;
    border-radius: 25px;
    gap: 0px;
    height: 40px;
    align-items: center;
    justify-content: unset;
    padding: 0 5px;
}

.favList ul li {
    padding: 0 15px;
    height: 100%;
    position: relative;
}

.favList ul li:nth-child(2) {
    border-left: 1px solid;
    border-right: 1px solid;
}

.favList ul li a {
    height: 100%;
    display: flex;
    align-items: center;
}
header .container-fluid {
    padding: 0;
}
.search-field button {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}
.favList ul li span {
    position: absolute;
    background: #73c7c7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.44px;
    top: 3px;
    right: 4px;
}
.menuSec ul#menu li a:hover {
    color: #fff;
    background: #73c7c7;
    border-radius: 35px;
}

.menuSec ul#menu li a {
    padding: 5px 10px !important;
}
/* Header */


/* Banner */
section.main_slider {
    position: relative;
}

span.blue-bg {
    position: absolute;
    content: "";
    height: 100%;
    width: 37%;
    background-color: #28396f;
    z-index: 1;
}

span.white-bg {
    position: absolute;
    content: "";
    left: 37%;
    height: 100%;
    width: 38%;
    background-color: #fff;
    z-index: 1;
}
span.skyblue-bg {
    position: absolute;
    content: "";
    left: 75%;
    height: 100%;
    width: 25%;
    background-color: #73c7c7;
    z-index: 1;
}
.menuSec ul li:nth-child(3) a, .menuSec ul li:nth-child(4) a, .menuSec ul li:nth-child(5) a {
    color: #000;
}
.banner_text {
    position: relative;
    /* z-index: 1; */
    display: flex;
    justify-content: end;
}
.main-image {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 80%;
    overflow: hidden;
}

.girl-image {
    position: absolute;
    width: 64%;
}
.banner-heading h1 {
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 85px;
    /* position: absolute; */
    /* bottom: 170px; */
    margin-left: -15px;
    margin-bottom: 20px;
    line-height: 1.1;
}
.banner-heading h1 span {
    display: block;
    margin-left: -102px;
    position: relative;
}

.banner-heading {
    position: relative;
}
.banner-heading h3 {
    font-size: 23px;
    color: #73c7c7;
    margin-left: 85px;
    font-weight: 500;
    margin-bottom: 40px;
}
.main-image2 {
    margin-left: 85px;
    width: 54%;
    display: flex;
    position: relative;
    align-items: end;
    justify-content: start;
}
.girl-image2 {
    position: absolute;
    width: 66%;
    left: 7%;
}
.main-image2::before {
    position: absolute;
    /*content: "New Collection";*/
    background: #28396f;
    height: 100%;
    width: 25%;
    right: -1px;
    writing-mode: tb-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display';
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 5px;
    word-spacing: 1px;
}
.banner_img {
    /* margin-bottom: 23%; */
    position: relative;
}
.main-image::before {
    position: absolute;
    /*content: "New Collection";*/
    width: 100%;
    height: 100%;
    color: #abdddd;
    display: flex;
    align-items: start;
    justify-content: end;
    writing-mode: tb-rl;
    z-index: 3;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-size: 55px;
    letter-spacing: 5px;
}
section.main_slider::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 8px;
    height: 85%;
    bottom: 0;
    left: 0;
    z-index: 2;
}

section.main_slider::after {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 85%;
    top: 0;
    right: 0;
    z-index: 2;
}
.follow-icons {
    position: absolute;
    height: 80%;
    width: 14%;
    left: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 25px;
}

.follow-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
}
.follow-icons::after {
    position: absolute;
    content: "";
    background: #a9b0c5;
    height: 300px;
    width: 3px;
    top: 30%;
}
.follow-icons::before {
    position: absolute;
    content: "Follow Us";
    top: 73%;
    font-family: 'Playfair Display';
    color: #fff;
    writing-mode: tb-rl;
    transform: rotate(180deg);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.carousel-control-prev, .carousel-control-next {
    width: 25%;
    height: 60px;
    display: flex;
    justify-content: end;
    bottom: 0;
    top: unset;
    opacity: 1;
}

.carousel-control-next-icon {
    background-image: url(../images/next.png);
    background-size: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28396f;
    height: 100%;
    width: 95px;
    opacity: 1;
}
.disc-link a {
    font-size: 15.7px;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 500;
}

.disc-link {margin-left: 39%;margin-bottom: 10%;margin-top: 10%;}

.carousel-control-prev, .carousel-control-next::before {
    position: absolute;
    content: "";
    background: #c7e9e9;
    width: 128%;
    height: 3px;
    top: -3px;
    right: 0;
}
span.blue-bg::before {
    position: absolute;
    content: "";
    background: #fff;
    left: 0;
    top: 0;
    width: 35%;
    height: 5px;
}
.slide_counter {
    position: absolute;
    top: 0;
    right: 0;
}

.slide_counter h2 {
    color: #fff;
    font-family: 'Playfair Display';
    font-weight: 400;
}

.slide_counter h2 span {
    font-size: 54px;
}

.slide_counter h2 sub {
    font-size: 33px;
}
.carousel-indicators {
    right: 0;
    left: unset;
    margin-right: 8%;
    margin-left: 0;
    bottom: unset;
    top: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.carousel-indicators [data-bs-target] {
    width: 2px;
    height: 85px;
    margin: 0 !important;
    background-color: #ffffffa6;
}

.carousel-indicators .active {
    background-color: #fff;
    width: 4px;
}
.indicator-number1 {
    position: absolute;
    right: -10px;
    top: -14%;
    writing-mode: tb;
    font-size: 22px;
    font-family: 'Montserrat';
    color: #fff;
}

.indicator-number3 {
    position: absolute;
    right: -10px;
    bottom: -15%;
    writing-mode: tb;
    font-size: 22px;
    font-family: 'Montserrat';
    color: #fff;
}
.follow-icons a:hover {
    background: #73c7c7;
}
.disc-link a:hover {
    background: #28396f;
    color: #fff;
    padding: 5px 10px;
}
/* Banner */


/* Category */
.cat-bg {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: end;
}

.cat-fg {
    position: absolute;
    left: -50%;
    bottom: -55%;
}
.sec-head h2 {
    font-size: 57px;
    font-family: 'Playfair Display';
    color: #000;
    font-weight: 400;
}

section.category-sec .sec-head h2 {
    font-size: 69px;
}
.cat-box img {
    width: 90%;
}
.cat-box.cat-2 .cat-images {
    display: flex;
    justify-content: end;
}
.cat-title h2 {
    font-size: 41px;
    font-family: 'Playfair Display';
    color: #000;
    font-weight: 400;
}

.cat-box.cat-2 .cat-title h2 {
    font-size: 28px;
    margin-left: 30px;
}

.cat-box.cat-3 .cat-title h2 {
    font-size: 26px;
    margin-top: 64%;
    margin-left: -50%;
}
.cat-images {
    position: relative;
}

/*.cat-images::before {*/
/*    position: absolute;*/
/*    content: "20% OFF EVERYTHING";*/
/*    font-family: 'Montserrat';*/
/*    color: #73c7c7;*/
/*    writing-mode: vertical-lr;*/
/*    display: flex;*/
/*    align-items: end;*/
/*    justify-content: center;*/
/*    height: 100%;*/
/*    transform: rotate(180deg);*/
/*    font-weight: 500;*/
/*    letter-spacing: 3px;*/
/*}*/

.cat-box.cat-1 .cat-images::before {
    font-size: 27px;
    right: 15px;
}

.cat-box.cat-2 .cat-images::before {
    font-size: 20px;
    right: -24px;
}

.cat-box.cat-3 .cat-images::before {
    font-size: 19px;
    right: 6px;
}
.cat-box {
    position: relative;
}

.cat-num {
    position: absolute;
    display: inline-block;
    font-size: 92px;
    font-family: 'Roboto';
    color: #fff;
    -webkit-text-stroke: 1px #0000009c;
    top: -15px;
    transition: 0.5s ease-in-out;
}

.cat-box.cat-1 .cat-num {
    right: 0;
}

.cat-box.cat-2 .cat-num {
    right: -30px;
}

.cat-box.cat-3 .cat-num {
    right: -3px;
}
.cat-box:hover .cat-num {
    z-index: 2;
    color: #73c7c7;
}
section.category-sec .sec-head {
    margin-bottom: 25px;
}
.exp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #73c7c7;
    width: 85px;
    height: 300px;
    position: absolute;
    bottom: -100px;
    right: 115px;
}

.exp-btn a {
    writing-mode: vertical-rl;
    font-family: 'Playfair Display';
    font-size: 25px;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
}
section.category-sec {
    padding: 150px 0;
}
.cat-images img:hover {
    filter: drop-shadow(2px 4px 6px #73c7c7);
}
/* Category */

/* Stylish Medi */
section.stylish-medi {
    background: url(../images/styl-banner.jpg);
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /*height: 730px;*/
    display: flex;
    align-items: center;
}
.heading-box {
    background: #28396fd6;
    width: 52%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    overflow-y: hidden;
    margin-bottom: 60px;
}

.heading-box h2 {
    font-size: 60px;
    font-family: 'Playfair Display';
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    width: 120%;
}
.styl-txt a.theme_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.styl-txt a.theme_btn i {
    font-size: 25px;
}
/* Stylish Medi */


/* Shop Men */
.nav-tabs {border: none;display: flex;justify-content: end;}

.nav-tabs .nav-link {
    font-size: 18px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #a4a4a4;
    padding: 8px 20px;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    border: none;
    background: #28396f;
    color: #fff;
    border-radius: 25px;
}
section.shop-products .container-fluid {
    padding: 0;
}
section.shop-products .container-fluid {
    padding: 0;
    margin-left: 11%;
}section.shop-products .container {
    padding-left: 9%;
}
.pro-txt ul.title-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.pro-txt ul.title-price li:first-child {
    font-family: 'Montserrat';
    font-size: 15.4px;
    color: #000;
    font-weight: 600;
    border-left: 3px solid #199dc5;
    padding-left: 8px;
}

.pro-txt ul.title-price li:last-child {
    color: #73c7c7;
    font-family: 'Montserrat';
    font-size: 18.9px;
    font-weight: 500;
}

.pro-txt h4 {
    font-size: 19.5px;
    font-family: 'Playfair Display';
    color: #000;
    margin-bottom: 10px;
}

.pro-txt h5 {
    font-size: 17.17px;
    font-family: 'Montserrat';
    font-weight: 400;
    color: #000;
}
.size input[type="radio"] {
    display: none;
}

.size input[type="radio"]:checked+label {
    border: solid 1px #73c7c7;
    background: #73c7c7;
    color: #fff;
}

.size input[type="radio"]+label {
    border: solid 1px #73c7c7;
    background-color: #fff;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 50px;
    border-radius: 4px;
}

.size input[type="radio"]+label:hover {
    background: #73c7c7;
    color: #fff;
}

.color-variation input[type="radio"] {
    display: none;
}

.color-variation input[type="radio"]:checked+label {position: relative;display: flex;align-items: center;justify-content: center;}

.color-variation input[type="radio"]+label {
    border: solid 1px #D1D1D1;
    background-color: #fff;
    color: #7c7c7c;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.color-variation input[type="radio"]+label:hover {
    /* border: 5px solid #FF78B0; */
    /* width: 35px; */
    /* height: 35px; */
    transition: 0.5s ease-in-out;
}

.color-variation li:first-child input[type="radio"]+label {
    background-color: #1013bf;
}

.color-variation li:nth-child(2) input[type="radio"]+label {
    background-color: #c7292a;
}

.color-variation li:nth-child(3) input[type="radio"]+label {
    background-color: #099226;
}

.color-variation li:nth-child(4) input[type="radio"]+label {
    background-color: #d89413;
}
.color-variation li:nth-child(5) input[type="radio"]+label {
    background-color: #7071b3;
}
.color-variation li:nth-child(6) input[type="radio"]+label {
    background-color: #b39c70;
}
.color-variation input[type="radio"]:checked+label::before {
    position: absolute;
    content: "";
    height: 140%;
    width: 140%;
    border-radius: 100%;
    border: 1px solid #000;
}
.color-variation input[type="radio"]:checked+label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.color-variation input[type="radio"]:checked+label::after {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    color: #fff;
    font-size: 12px;
}
.blog_img {
    position: relative;
    display: flex;
    overflow: hidden;
}

.hover-txt {
    position: absolute;
    bottom: -38%;
    background: #28396fb5;
    width: 100%;
    padding: 20px 0;
    transition: 0.5s ease-in-out;
}

.blog_img img {
    width: 100%;
}

.hover-txt ul {
    display: flex;
    margin-bottom: 0;
    gap: 8px;
    justify-content: start;
    flex-wrap: wrap;
    width: 84%;
    margin: 0 auto;
}

.hover-txt ul li a {
    font-size: 13.4px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 45px;
    height: 40px;
    border-radius: 3px;
}

.hover-txt > a {
    text-align: center;
    font-size: 21px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hover-txt > a i {
    font-size: 27px;
}.blog_img:hover .hover-txt {
    bottom: 0;
}
.add-to-fav {
    position: absolute;
    right: 0;
    margin-right: 25px;
    margin-top: 15px;
}

.add-to-fav a.heart {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 40px;
    height: 40px;
    font-size: 25px;
    border-radius: 50%;
}

.add-to-fav a i {
    transition: 0.5s ease-in-out;
}

.add-to-fav a:hover i {
    color: #e31b23;
    font-weight: 700;
}
.slick-active {
    opacity: 1;
}
.blog_img:hover {
    cursor: pointer;
}
.slick-prev:before {
    position: absolute;
    content: '';
    background: url(../images/prev.png);
    background-size: contain;
    width: 71px;
    height: 54px;
}
section.shop-products.men .slick-prev {
    left: -115px;
}
.slick-next:before {
    position: absolute;
    content: '';
    background: url(../images/next-icon.png);
    background-size: contain;
    width: 71px;
    height: 54px;
}
section.shop-products.men .slick-next {
    right: unset;
    left: -133px;
}
section.shop-products.men .slick-prev, section.shop-products.women .slick-prev {
    top: 35%;
}

section.shop-products.men .slick-next, section.shop-products.women .slick-next {
    top: 47%;
}
section.shop-products.women .nav-tabs {
    justify-content: start;
}
section.shop-products.women .sec-head {text-align: end;}
section.shop-products.women .container-fluid {
    margin-left: -11%;
}
section.shop-products.women .container {
    padding-left: 0;
    padding-right: 9%;
}

section.shop-products.women {
    border-top: 1px solid #0000008a;
    padding: 50px 0 0 0;
}

section.shop-products.men {
    padding: 0 0 50px 0;
}
section.shop-products.women .slick-next {
    left: unset;
    right: -35px;
}

section.shop-products.women .slick-prev {
    right: -45px;
    left: unset;
}
/* Shop Men */



/* Testimonials */
.test-slider-box {
    background: #73c7c7;
    padding: 30px 25px;
    border-bottom-right-radius: 35px;
    position: relative;
}

.testi-header h3 {
    font-size: 24px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
}

.testi-header h4 {
    font-family: 'Roboto';
    font-size: 16.3px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.testi-header ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.testi-header ul li i {
    color: #fff;
    font-size: 13px;
}

.testi-body p {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

.testi-header {
    padding-bottom: 15px;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
    position: relative;
}
.testi-slider .slick-slide {
    margin: 40px 40px;
}
section.testi_sec .container-fluid {
    padding: 0;
}
.test-slider-box::before {
    position: absolute;
    content: "";
    background: #73c7c7;
    width: 10px;
    height: 105%;
    top: 0;
    left: -20px;
    filter: drop-shadow(-20px 27px 0 #E5f1f1);
}

.test-slider-box::after {
    position: absolute;
    content: "";
    background: #73c7c7;
    height: 10px;
    width: 75%;
    bottom: -20px;
    left: -20px;
    border-bottom-right-radius: 10px;
    filter: drop-shadow(-10px 20px 0 #E5f1f1);
}
.testi-header::before {
    position: absolute;
    content: "";
    background: #fff;
    height: 10px;
    width: 15px;
    left: -47px;
    top: 12px;
}
.quote-mark {
    display: inline-block;
    padding: 13px 25px;
    background: #73c7c7;
    margin-bottom: 10px;
    border-top-right-radius: 30px;
}

.quote-mark i {
    color: #fff;
    font-size: 35px;
}
.slick-slide {
    opacity: 1;
}
.testi-slider .slick-prev {
    left: unset;
    right: 15%;
}

.testi-slider .slick-next {
    right: 8%;
}

.testi-slider .slick-prev, .testi-slider .slick-next {
    top: -20%;
}
section.testi_sec {
    margin: 100px 0;
}
/* Testimonials */


/* newsletter start */
section.newsletter h4 {font-family: 'Montserrat';font-weight: 500;color: #fff;font-size: 30px;margin-bottom: 10px;}

section.newsletter h6 {font-family: 'Poppins';font-size: 14px;font-weight: 400;color: #fff;margin-bottom: 0;}

section.newsletter {background: #202020;display: flex;align-items: center;height: 150px;}

section.newsletter ul {display: flex;gap: 35px;align-items: center;margin-bottom: 0;}

.sub-box {position: relative;}

.sub-box .btn.btn-submit {position: absolute;top: 0;right: 0;background: #73c7c7;color: #fff;font-family: 'Roboto';border-radius: 0;}

.sub-box input {padding: 14px 35px;border-radius: 0;}
/* newsletter end */



/*main_footer*/

.main_footer {
    position: relative;
    background: #272727;
    margin-top: 0;
    /* padding-left: 70px; */
    /* padding-right: 50px; */
    padding: 80px 0;
}

.footer_desc p {
    margin-top: 30px;
    line-height: 25px;
    margin-bottom: 0;
    color: #ffffff;
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 400;
}
.main_footer ul li a {
    line-height: 30px;
    color: #d2d2d2;
    font-size: 13px;
    font-family: 'Poppins';
    font-weight: 400;
    text-transform: capitalize;
}
.main_footer ul li a i {
    width: 30px;
}
.main_footer .footer_social {
    display: flex;
    /* margin-top: 30px; */
    margin-bottom: 0;
}
.main_footer .footer_social li {
    margin-right: 15px;
}
.main_footer .footer_social li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 40px;
    width: 37px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}
.footer_bottom {
    /* margin-top: 30px; */
    border: 1px solid #d2d2d2;
    height: 80px;
    display: grid;
    align-content: center;
    margin: 0 4%;
    padding: 0 2%;
    background: #272727ba;
}
.footer_bottom p {
    color: #fff;
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;
    font-weight: 400;
    font-family: 'Roboto';
}
.footer_bottom img {
    float: right;
}
footer h4 {
    font-family: 'Playfair Display';
    font-weight: 500;
    font-size: 25px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 40px;
}
ul.link-list {
    margin-bottom: 13px;
}
ul.link-list li {
}
.cntct-fot ul li a {
    display: flex;
    align-items: center;
    gap: 6%;
    line-height: 45px;
    /* margin-bottom: 10%; */
    font-size: 13px;
    font-weight: 400;
    font-family: 'Poppins';
}
li.sle {
    padding-left: 9% !important;
}
.cntct-fot ul li a img {
    width: auto;
}
.footer_contact {
    padding-left: 30px;
    margin-bottom: 30px;
}
.cntct-fot i {
    font-size: 24px;
    color: #fff;
}
.footer_social li:nth-child(1) a i {
    /* background: #3b5998; */
}
.footer_social li:nth-child(2) a i {
    /* background: #0e76a8; */
}
.footer_social li:nth-child(3) a i {
    background: #2296f9;
}
.footer_social li:nth-child(4) a i {
    background: #cd1f29;
}
.cntct-fot ul {
    margin-bottom: 0;
}

.footer_contact ul {
    margin-bottom: 0;
}

.quick_links ul {
    margin-bottom: 0;
}
.border-right {
    border-right: 1px solid #d2d2d2;
}
.quick_links {
    padding-left: 30px;
    margin-bottom: 30px;
}

.cntct-fot {
    padding-left: 30px;
}
.footer_desc {
    margin-bottom: 30px;
}
ul.footer_social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 40px;
    width: 37px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    border: 1px solid #fff;
}
ul.footer_social li a:hover {
    background: #73c7c7;
    filter: drop-shadow(2px 4px 6px #73c7c7);
}
.main_footer ul li a:hover {
    color: #73c7c7;
    padding-left: 8px;
}
/*main_footer*/
/* ---------------------------- Home Page ------------------------ */



section.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: end;
    height: 652px;
}

.menuSec.inner-menu ul li a {
    color: #000;
    font-weight: 500;
}

.menuSec.inner-menu .search-field input {color: #000;}

.menuSec.inner-menu .search-field input::placeholder {
    color: #000;
    font-weight: 500;
}

.menuSec.inner-menu .search-field i {
    color: #000;
}

section.inner-banner h1 {
    font-size: 65px;
    font-family: 'Playfair Display';
    color: #000;
    margin-bottom: 125px;
    text-transform: capitalize;
}

/* Products */
.showinglist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    padding-left: 20%;
}

.showinglist select {
    border: none;
    padding: 0 0 0 10px;
    color: #666666;
    font-size: 18px;
    font-weight: 500;
    font-family: 'aveBook';
}

.showinglist span {
    color: #666666;
    font-size: 18px;
    font-weight: 500;
    font-family: 'aveRoman';
}

.prod-heading h4 {
    font-family: 'minM';
    font-weight: 500;
    font-size: 25.4px;
    color: #000;
}

.catogeriesbox h4 {
    color: #000;
    font-size: 30px;
    padding-bottom: 25px;
    font-family: 'Playfair Display';
}

.row.paddingbottom {
    padding-bottom: 25px;
}

.frequently-list ul li a {
    color: #000;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Roboto';
    display: block;
    margin: 5px 0;
    padding: 10px 0 10px 18px;
}
section.productsec.product-page-sec.fruit {
    padding: 6% 0;
}
.frequently-list ul {
    margin-bottom: 70px;
}
.frequently-list ul li {
    display: flex;
    border-bottom: 1px solid #00000021;
    gap: 10px;
    align-items: center;
    padding-left: 15px;
}
ul.prices li a {
    word-spacing: 20px;
}
.select-box select {
    border-radius: 35px;
    padding: 15px 15px;
    border: 2px solid #73c7c7;
    font-size: 24px;
    font-family: 'Playfair Display';
    color: #000;
    background-image: url(../images/down.png);
    background-size: auto;
}
/* Products */



/*PRODUCT DETAIL PAGE CSS*/

.product-body img {
    /* height: 100%; */
    object-fit: cover;
}

.top-section h2 {
    font-size: 26px;
    line-height: 30px;
    color: #000;
    font-family: 'Playfair Display';
}

.price_rev h3 {
    color: #73c7c7;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 0px;
    font-family: 'Montserrat';
}

.price_rev ul {
    text-align: right;
}

.price_rev ul li {
    display: inline-block;
    color: #ffc007;
}

.price_rev ul li span {
    color: #8C8C8C;
    margin-left: 10px;
}

.product-content hr {
    border-top: 2px solid #73c7c7;
    margin: 5px;
}

.flexEnd {
    display: flex;
    align-items: flex-end;
}

.brand {
    margin: 20px 0px;
}

.brand li {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Roboto';
}

.brand li:not(:last-child) {
    margin-bottom: 7px;
}

.brand li small {
    color: #73c7c7;
    display: inline-block;
    margin-left: 6px;
}

.product-content p {
    font-size: 13px;
    color: #636363;
    line-height: 20px;
    font-family: 'Roboto';
}

.addtocart a {
    color: #fff !important;
    padding: 10px 40px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 17px;
    background-color: #28396f;
    display: block;
    border-radius: 35px;
}

.addtocart a:hover {
    background-color: black;
}

.functionality-box ul {
    display: flex;
    align-items: center;
}

.functionality-box ul li {
    display: inline-block;
}

.functionality-box ul li:not(:last-child) {
    margin-right: 20px;
}

.functionality-box ul li .heart-button a i {
    border: 1px solid #9C9C9C;
    font-size: 21px;
    color: #73c7c7;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.social-icon-detail {
    margin-top: 20px;
}

.social-icon-detail ul li {
    display: inline-block;
}

.social-icon-detail ul li a i {
    width: 40px;
    height: 40px;
    font-size: 22px;
    border: 1px solid #bebebe;
    color: #d50000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-detail ul li a i:hover {
    background-color: #d50000;
    color: #fff;
    transform: rotate(360deg);
    transition: 0.3s ease-in-out;
}

.product-body {
    /* height: 100%; */
    /* border: 2px solid #8C8C8C; */
    /* background: #F4F4F4; */
}

.prod_description h4 {
    color: #000;
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Playfair Display';
}

.prod_description p {
    font-size: 14px;
    color: #9C9C9C;
    line-height: 20px;
}

.related_heading h2 {
    font-size: 70px;
    line-height: 75px;
    font-family: 'Oswald', sans-serif;
    color: #000;
    margin-bottom: 50px;
}

.product-content .top-bar-right ul {
    justify-content: flex-start;
    margin-top: 30px;
}

.product-content .top-bar-right ul i {
    /* color: #ee4d7a; */
    /* border: 1px solid #9F9F9F; */
}

.product-content .top-bar-right ul a:hover i {
    /* background: #EE4D7A; */
    /* color: white; */
    /* border: #EE4D7A; */
}


/* skin 2 */

.skin-2 .num-in {
    background: #06040400;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    height: 40px;
    width: 110px;
    float: left;
    border: 1px solid #9C9C9C;
    border-radius: 35px;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
    background: #9c9c9c00;
    color: #9C9C9C;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #9C9C9C;
    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: 40px;
    border: none;
    text-align: center;
    background: transparent;
    color: #9c9c9c;
}


/* / skin 2 */

section.product-detail {
    background: #ffffff;
}

section.recently-view.prdct-dtl {
    background: #FD6565;
}
ul.size {
    display: flex;
    gap: 10px;
}
.top-bar-right ul {
    display: flex;
    gap: 10px;
}

.top-bar-right ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #73c7c7;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #73c7c7;
    font-size: 17px;
}
.product-content {
    padding-left: 35px;
}
section.product-detail {
    margin: 100px 0;
}
.heading h2 {
    font-family: 'Playfair Display';
    font-size: 57px;
    color: #000;
}

section.related-products {
    margin-bottom: 90px;
}
h6.color-txt {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Roboto';
}

h6.size-txt {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Roboto';
}

h6.size-txt span {
    color: #73c7c7;
}

h6.color-txt span {
    color: #28396f;
}
/* Product Details Css End */



/*conatct page start*/

.contact-us {
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-box {
    padding: 40px 25px;
    background: #28396f;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.contact-box p {
    font-weight: 400;
}

.contact-box a {
    display: block;
}

.con_icos {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    background: #28396f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 5px 12px #00000038;
}

.contact-box h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 300;
    font-family: 'Playfair Display';
    margin-top: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-box p {
    color: #ffffff;
    font-family: 'Roboto';
    font-size: 15px;
    line-height: 20px;
    font-weight: 100;
}

section.contact-us .line {
    line-height: 20px;
    width: 60px;
    height: 2px;
    border-right: 5px;
    background: #fff;
    margin: 0% auto;
    margin-top: 30px;
    text-align: center;
}

.contact-form {
    padding: 50px 0px 0 0;
}

.contact-box a {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Roboto';
    font-weight: 300;
}

.contact-form h2 {
    font-size: 40px;
    font-family: 'trajan';
    color: #000000;
    text-align: center;
    text-transform: uppercase;
}

.contact-form span {
    font-size: 64px;
    font-weight: 400;
    color: #000000;
}

.contat-form input {
    width: 100%;
    height: 60px;
    border: 1px solid #a9a9a996;
    padding-left: 15px;
    border-radius: 5px;
}

.contat-form textarea {
    width: 100%;
    border: 1px solid #a9a9a99c;
    padding: 15px;
    border-radius: 5px;
}

.contat-form label {
    font-size: 16px;
    font-family: 'Roboto';
    color: #5d5d5dd9;
}

.contact-box ul {
    text-align: center;
    margin-top: 20px;
}

.contact-box ul li {
    display: inline-block;
    margin-right: 8px;
}

.contact-box ul li i {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-size: 22px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contat-form button {
    font-size: 16px;
    font-family: 'Montserrat';
    text-transform: capitalize;
    font-weight: 300;
    background-color: #28396f;
    border: none;
    color: #fff;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 164px; */
    margin: 0 auto;
    /* height: 63px; */
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 35px;
}

.related_heading.text-center {
    position: relative;
    margin-bottom: 5%;
}

.contact-form-1 {
    position: relative;
    margin-top: 5%;
}

.contact-form-1 h2 {
    text-align: center;
    color: #000000;
    /* text-transform: uppercase; */
    font-family: 'Playfair Display';
    line-height: 80px;
    font-size: 50px;
}

.related_heading.text-center h2 {
    text-align: center;
    color: #000000;
    /* text-transform: uppercase; */
    font-family: 'Playfair Display';
    line-height: 80px;
    font-size: 50px;
}

.banner-text h4::Selection {
    background: #ffffff24;
}

.banner-text h3::Selection {
    background: #ffffff24;
}


/*conatct page end*/



/*CHECKOUT PAGE*/
.billing_form h3{
    font-family: 'Playfair Display';
    font-size: 27px;
    color: #28396f;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  .billing_form label{font-size: 12px;font-family: 'Roboto';color: #7C7C7C;}
  
  .radiosss p {
  color: #7C7C7C;
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 400;
  }
  
  .billing_form  input{width: 100%;height: 45px;border: 1px solid #C4C4C4;margin-bottom: 20px;padding-left: 15px;}
  .billing_form  input::placeholder{
  color: #7C7C7C;
  font-family: 'Roboto';
  }
  
  .cart_sidebar .cart_lst li:not(:last-child){
  margin-bottom: 15px;
  }
  .cart_sidebar .cart_lst li{
  font-size: 14px;
  color: #7c7c7c;
  font-family: 'Roboto', sans-serif;
  }
  .cart_sidebar .cart_lst li span{
  float: right;
  }
  .cart_sidebar .cart_lst li:last-child{font-size: 18px;font-weight: 400;color: #000;font-family: 'Playfair Display';}
  .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;
  }
  
  
  .cart_sidebar{padding: 40px 25px;border: 1px solid #C4C4C4;border-radius: 0;}
  .cart_sidebar h3{font-size: 18px;color: #000;margin-top: 0px;margin-bottom: 20px;text-transform: capitalize;font-family: 'Playfair Display';line-height: normal;}
  .cart_sidebar .h-sub{font-weight: 500;color: #000000;font-family: 'Playfair Display';font-size: 18px;padding-bottom:15px;border-bottom: 1px solid #dbdbdb;margin-bottom: 20px;line-height: 0;padding-bottom: 30px;padding-top: 20px;}
  .cart_sidebar h5 span{
  float: right;
  }
  .cart_sidebar h4{font-size: 18px;color: #000000;font-weight: 400;font-family: 'Playfair Display';margin-bottom: 30px;line-height: normal;padding-top: 0;}
  
  .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-family: 'Roboto', sans-serif;font-weight: 400;color: #333333;}
  
  .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 #73c7c7;
  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-family: 'Roboto';
   font-size: 17px;
   border: none;
   border-radius: 0;
   font-weight: 500;
   border: 2px solid transparent;
   background-color: #73c7c7;
  }
  
  .checkout_btn:hover{
    color: white;
  }
  
  
  
  ul.shipping-ul {
  border-bottom: 1px solid #dbdbdb;
  margin: 0;
  padding-bottom: 30px;
  }
  
  h6.payment-h {
  font-weight: 600;
  color: #000;
  font-family: 'Playfair Display';
  font-size: 18px;
  margin-bottom: 30px;
  }
  
  
  
  
  .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: #73c7c7;}
  
  
  
  .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;
  }
  .billing_form {
      border: 1px solid #8080806e;
      padding: 15px 25px;
  }
  span.chk-price {
    color: #000;
}
  /*checkout end*/



  /*Login*/

/*login */
section.login {
    padding: 80px 0px;
}
.log-in-bg {
    background-image: url("../images/log-in-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.text-blue {
    color: rgb(16, 12, 108);
}

.text-black {
    color: rgb(0, 0, 0) !important;
}

.log-in-wrap {
    padding: 60px 35px;
    border: 1px solid rgb(225, 225, 225);
    background-color: rgb(253, 253, 253);
    border-radius: 4px;
}

.log-in-wrap h2 {
    margin: 0px 0px 40px;
    color: rgb(54, 29, 50);
    font-size: 40px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: inherit;
    font-family: 'Playfair Display';
    padding-left: 25px;
}

.width-100 {
    width: 100% !important;
}

.log-in-page-main .form-check label.form-check-label {
    font-size: 14px;
    font-family: MyRiadRegular, sans-serif;
    font-weight: 500;
    color: #b6b5b5;
}

.log-in-page-main .form-check,
.forgot-pass {
    /* display: inline-block; */
}

.forgot-pass {
    /* width: 72%; */
    text-align: right;
}

.forgot-pass a {
    font-size: 14px;
    font-family: MyRiadRegular, sans-serif;
    margin: 20px 0px;
    font-weight: 500;
    color: #b6b5b5;
}

.agree-text {
    font-size: 15px;
    font-family: 'Roboto';
    margin: 20px 0px;
    font-weight: 400;
    color: #b6b5b5;
}

.term-condition {
    font-weight: 500;
    margin-left: 10px;
    border-bottom: 2px solid rgb(116 199 199);
    font-family: Poppins, sans-serif;
    color: rgb(116 199 199) !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.account-form input[type="text"],
.account-form input[type="password"],
.account-form select,
.account-form input[type="email"],
.account-form input[type="url"],
.account-form input[type="number"],
.account-form textarea,
.account-form input[type="tel"] {
    border: 1px solid #eaeaea;
    background-color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 20px;
    
    height: 55px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0px 15px;
    border-radius: 0px;
    box-shadow: none;
    font-family: Poppins;
}
.account-form textarea {
    padding: 10px;
    height: 167px;
}
.account-form input[type="text"]::placeholder,
.account-form input[type="password"]::placeholder,
.account-form input[type="email"]::placeholder,
.account-form input[type="url"]::placeholder,
.account-form input[type="number"]::placeholder,
.account-form textarea::placeholder,
.account-form input[type="tel"]::placeholder {
    font-family: MyRiadRegular, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgb(193, 193, 193) !important;
}
.primary-btn.dark-bg {
    color: rgb(255, 255, 255);
    background: #28396f;
    padding: 14px 50px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 0px;
    margin-bottom: 30px;
    border: #ff5f1f;
}
.primary-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: all 0.5s ease-in-out 0s;
    transform: translateX(100%);
}
.primary-btn.dark-bg:hover {
    color: rgb(255, 255, 255);
    background: rgb(116 199 199);
    border-radius: 0px;
    border-color: rgb(116 199 199) !important;
}
button.primary-btn.dark-bg.width-100.mb-15 {}
.form-check-input[type="checkbox"] {
    border-radius: 0px;
    border: 2px solid #74c7c7;
}
/*Login end*/

/* Cart CSS */

.add-to-cart thead {
    background: #74c7c7;
    color: rgb(255, 255, 255);
}

.add-to-cart .table>thead>tr>th {
    border-bottom: 0px;
    padding-left: 30px;
    padding-bottom: 25px;
    padding-top: 25px;
}

.add-to-cart thead tr th {
    font-size: 18px;
    font-weight: 400;
    line-height: 17px;
    text-transform: uppercase;
    font-family: 'Playfair Display';
}

.table-space h3 {
    font-size: 17px;
    color: #000000;
    margin-bottom: 5px;
    font-family: 'Roboto';
    line-height: 25px;
    margin-top: 15px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.table-space span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-family: 'Roboto';
}

.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart input {
    width: 100%;
    text-align: center;
    height: 59px;
    border-radius: 6px;
    border: 1px solid #adacac;
    font-size: 23px;
    color: rgba(0, 0, 0, 0.68);
    font-weight: 500;
    margin-top: 24px;
    font-family: Poppins;
    background-color: #f4f4f4;
}

.add-to-cart a {
    font-size: 17px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.add-to-cart h4 {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    margin-top: 40px;
    font-family: 'Roboto';
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

tr.space {
    border-bottom: 1px solid rgb(204, 204, 204);
}

a.remove {
    background: #0d0d0d;
    color: rgb(255, 255, 255);
    font-size: 33px;
    padding: 13px 18px;
    border: #0d0d0d;
    margin-top: 25px;
}

.proceed a {
    color: #d90c1e;
    text-align: left;
    font-size: 19px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Playfair Display';
}

.proceed i {
    margin-left: 10px;
    color: #d90c1e;
}

.proceed .checkout-btn {
    background: #74c7c7;
    border: none;
    padding: 20px;
    width: 80%;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    font-family: 'Playfair Display';
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    /* border-radius: 36px; */
    margin: 0px 0px 0px auto;
}

.all-section-inner {
    padding: 80px 0px;
}

.or-amazon {
    position: relative;
    border: 1px solid rgb(0, 0, 0);
    padding: 30px 50px;
    border-radius: 5px;
    width: 80%;
    margin: 50px 0px 0px auto;
    background: #f9f9f9;
}

.or-amazon p {
    font-size: 13px;
    position: absolute;
    background: rgb(255, 255, 255);
    top: -18px;
    left: 0;
    padding: 0px 20px;
    color: #333333;
    display: block;
    text-transform: uppercase;
    border: 1px solid;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    right: 0;
    width: 60%;
    margin: auto;
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.total-section {
    border: 1px solid rgb(229, 229, 229);
    padding: 27px 20px 5px;
    background-color: #f9f9f9;
    margin-left: 20px;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 20px;
    color: #333333;
    font-family: 'Roboto';
    font-weight: 400;
}

li.color-change {
    color: #000;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0px;
}

.total-section li span {
    float: right;
}

.ship-estimate {
    background-color: #f9f9f9;
    padding: 10px 20px;
    border: 1px solid rgb(229, 229, 229);
    margin-left: 20px;
    margin-top: 165px;
}

.ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 50px;
}

.ship-estimate li {
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}

.ship-estimate .grey-style {
    color: #b7b7b7;
    font-size: 18px;
    font-family: 'Roboto';
    font-weight: 400;
    text-transform: capitalize;
}

.proceed {
    /* display: flex; */
}

.add-to-cart .table-space {
    display: flex;
    align-items: center;
}

.table-space span:last-child {
    color: rgb(0, 0, 0);
}

.add-to-cart tbody td {
    padding: 25px 0px;
}

.product-img img {
    width: auto;
    height: 100%;
}

.total-section .color-change span {
    font-weight: 500;
    font-size: 23px;
}

.add-to-cart thead tr th:first-child {
    /* border-top-left-radius: 36px; */
    /* border-bottom-left-radius: 36px; */
}

.add-to-cart thead tr th:last-child {
    /* border-top-right-radius: 36px; */
    /* border-bottom-right-radius: 36px; */
}
.number input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 47%;
    border: unset;
    /* text-align: center; */
    background: transparent;
    height: unset;
    margin: 0;
}
.cart .table > :not(:last-child) > :last-child > * {
    border-bottom-color: aliceblue;
    background: #fbe7e7;
}
.cart .coupan {
    padding: 20px 25px 0;
}
.cart .coupan ul li {
    display: flex;
}
.cart .coupan ul {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #80808033;
    padding-bottom: 15px;
}
.cart .coupan ul li a {
    margin-left: 10px;
    color: #000;
    font-weight: 400;
    border: 1px solid #7b7b7bcc;
    padding: 10px;
    cursor: pointer;
}
.sub-total span.colr-pric {
    color: #000;
}

.number span {
    border: 1px solid #000000;
    cursor: pointer;
    border-radius: 20px;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number {
    background: #fafafa;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    border-radius: 11px;
    border: 1px solid #ececec;
}
section.add-to-cart {
    position: relative;
}

section.add-to-cart:before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    background-image: url(../images/cloud4.jpg);
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}
section.add-to-cart:after {
    position: absolute;
    content: '';
    background-image: url(../images/blue-line.jpg);
    background-repeat: no-repeat;
    width: 100px;
    height: 221px;
    right: 0;
    bottom: 138px;
}

/* Cart CSS */
.primary-btn::before {
    display: none;
}



.header-logo-home {
    background: #fff;
}