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

/***** General CSS *****/
:root {
    --theme1: #d3ff53;
    --theme2: #034b48;
}

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", 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: 400;
    line-height: 25px;
    font-size: 14px;
    color: #ffffffb5;
}


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

/***** 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: 0 12px 0 20px;
    color: #fff;
    z-index: 1;
    background: transparent;
    position: relative;
    font-size: 14px;
    box-shadow: 3px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 50px;
    gap: 13px;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: var(--theme1);
    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: #000000;
}

.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 {
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 23vw;
    line-height: 1.1;
    color: var(--theme1);
    font-weight: 900;
    margin: 0 0 17px;
    text-transform: uppercase;
}

h2 {
    font-family: "Oswald", sans-serif;
    font-size: 86px;
    line-height: 1.2;
    color: var(--theme2);
    font-weight: 700;
    margin: 0 0 30px;
    text-transform: uppercase;
}

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

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", 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: 10px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.menuSec li:hover ul {
    opacity: 1;
    visibility: visible;
}


.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #ffffffba;
    font-size: 13px;
    font-weight: 400;
    transition: 0.5s;
    text-transform: uppercase;
}

.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: var(--theme1);
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #fff;
    left: 0;
    width: 240px;
    text-align: left;
    opacity: 0;
    transition: 0.2s ease-in-out;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    box-shadow: 0 0 10px #ccc;
    column-count: 2;
    display: flex;
    padding: 10px 0;
    visibility: hidden;
    top: 60px;
}

.menuSec li:hover ul {
    transition: 0.2s ease-in-out;
    top: 60px;
    z-index: 999;
}

.menuSec li>ul:after {
    position: absolute;
    content: "";
    background: #606060;
    width: 20px;
    height: 20px;
    top: -20px;
    left: 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 999;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    /* color: #fff !important; */
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

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

.menuSec li:hover li {
    float: none;
    width: 100%;
}

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

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

.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;
}


/* Tabs  */

/* HOME */
header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 10px;
    z-index: 9999;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
}

/*.cart {
    height: 50px;
    width: fit-content;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    border-radius: 40px;
    text-transform: uppercase;
}*/

/*.cart:hover {
    background: #d3ff53;
}*/

.search {
    caret-color: transparent;
    position: relative;
    height: 50px;
}

.search .input {
    font-weight: 400;
    background-color: transparent;
    border: 0;
    color: #fff;
    border-radius: 65px;
    font-size: 18px;
    padding: 15px;
    height: 50px;
    width: 65px;
    transition-property: width, color, box-shadow;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
    position: absolute;
    right: 0;
    bottom: -70px;
}

.search .btn {
    position: static;
    top: 0;
    left: 0;
    color: #fff;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    height: 50px;
    width: 50px;
    transition-property: transform, background-color;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
}

.btn:focus,
.input:focus {
    outline: none;
}

.search.active .input {
    width: 260px;
    color: #fff;
    box-shadow: inset 0px 0px 10px #d3ff53;
}

.search.active .input::placeholder {
    color: #fff;
}

.search.active .btn {
    background-color: color(rec2020 0 0 0 / 0);
}

.product-body img.img-fluid {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

.container-fluid {
    padding: 0 5%;
}

.banner_text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 30px 20px;
}

.banner_text ul li {
    width: 50%;
}

.banner_text ul li p {
    margin: 0;
    width: 50%;
}

.theme_btn span {
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 30px;
}

.banner_text ul li:last-child a {
    margin: 0 0 0 auto;
}

img.man-img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99;
    bottom: 0;
    width: auto;
    height: 53vw;
}

.carousel-indicators {
    z-index: 999;
    width: fit-content;
    margin: 0 0 0 auto;
    margin-bottom: 40px;
    margin-right: 100px;
}

.carousel-indicators [data-bs-target] {
    background: transparent;
    width: 50px;
    height: 20px;
    text-indent: 0px;
    z-index: 999;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff6e;
}

.carousel-indicators .active {
    font-size: 35px;
    color: #fffffff0;
}

span.dash-sldier {
    font-size: 25px;
    color: #ffffff87;
    padding-top: 10px;
    width: 10px;
}
img.img-fluid {
    width: 100%;
}
ul.social-icons {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 15px;
    margin: 0;
    color: #7f807e;
    position: absolute;
    bottom: 40px;
    left: 6%;
    margin-left: 10px;
}

ul.social-icons li a {
    background: transparent;
    color: #7f807e;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    border: 1px solid #7f807e;
}

ul.social-icons li a:hover {
    background: var(--theme1);
    border: 1px solid #fff;
    color: #000;
}

.theme_btn.btn2 {
    border: 1px solid #034b48;
    color: #034b48;
    font-weight: 500;
    box-shadow: 0px 5px 0px 1px #034b48;
}

.theme_btn.btn2 span {
    background: var(--theme2);
}

.theme_btn.btn2 span img {
    filter: invert(1);
}

section.products {
    padding: 80px 0;
}

.top-head {
    margin-bottom: 50px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    position: relative;
}

.top-head h2 {
    margin: 0;
}

.top-head .row {
    align-items: center;
}

.top-head a {
    margin: 0 0 0 auto;
}

.top-head:before {
    position: absolute;
    content: '';
    background: var(--theme2);
    width: 30%;
    bottom: -2px;
    height: 3px;
}

section.products ul#myTab {
    border: 0;
    justify-content: right;
}

section.products .nav-tabs .nav-link {
    font-size: 15px;
    color: #141313;
    text-transform: uppercase;
    font-weight: 600;
    border: 0;
}

section.products .nav-tabs .nav-link.active {
    font-size: 15px;
    color: #141313;
}

.tabs-names {
    margin-bottom: 40px;
}

.tabs-names h3 {
    font-size: 15px;
    margin: 0;
    text-transform: uppercase;
}

.prd-card {
    border: 1px solid #f3eeee;
    padding: 20px 10px 10px;
    transition: 0.5s;
}

.prd-card h3 {
    font-size: 15px;
    color: #333333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.prd-card img {
    border: 1px solid #f5f5f5;
    margin-bottom: 10px !important;
    width: 100% !important;
    height: 30vw !important;
    object-fit: cover !important;
}

.prd-card ul li span b {
    font-size: 16px;
    color: #888989;
    display: block;
}

span.prdt {
    color: #888989;
    text-align: center;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

.prd-card ul li span h5 {
    font-size: 10px;
    color: #121313;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

.prd-card:hover {
    background: linear-gradient(190deg, #086f6d 20%, #023a39e6 63%);
}

.prd-card:hover * {
    color: #fff;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #ff9600;
    margin: 10px 0 20px;
}

a.cart.cart2 {
    background: var(--theme2);
    border-radius: 0;
    width: 100%;
    font-size: 12px;
}

.prd-card ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

.prd-card ul li:first-child {
    width: 39%;
}

.prd-card ul li:last-child {
    width: 59%;
}

footer {
    background: #272727;
    padding: 0;
    padding-bottom: 30px;
    position: relative;
}

footer ul.social-icons {
    position: unset;
    justify-content: start;
}

.left-text ul li a i {
    color: #fff;
    font-size: 23px;
    padding-right: 20px;
    margin-bottom: 28px;
}

.left-text ul li a {
    display: flex;
    gap: 10px;
}

.left-text ul li p {
    font-size: 14px;
    color: #ffffff85;
    font-weight: 400;
}

.middle-text p {
    color: #ffffff9e;
    font-size: 13px;
    width: 100%;
    margin-bottom: 20px;
}

footer h6 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Oswald';
}

.double-links ul {}

.right-text ul li a {
    color: #fff;
    font-size: 13px;
    margin-bottom: 7px;
    display: block;
    text-transform: uppercase;
}

.bottom-footer p,
.bottom-footer a {
    color: #ffffff8f;
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
}

.bottom-footer {
    border: 1px solid #3d3d3d;
    padding: 10px 10px;
    background: #232323;
}

.left-text h6 {}

.right-text {
    width: 80%;
    margin: 0 auto;
}

.ftr-bottom {
    padding: 70px 0 0;
    position: relative;
}


.ftr-l img {
    width: 12%;
}

.bottom-footer .row {
    align-items: center;
}

.bottom-footer img {
    margin: 0 0 0 auto;
    display: block;
}

.ftr-inp form input::placeholder {
    color: #fff;
}

.ftr-bottom:before {
    position: absolute;
    content: '';
    background: #3d3d3d;
    width: 1px;
    height: 100%;
    top: 0;
    left: 25%;
}

.ftr-bottom:after {
    position: absolute;
    content: '';
    background: #3d3d3d;
    width: 1px;
    height: 100%;
    top: 0;
    right: 25%;
}

/* Testimonial Section Start */

.testimonial-sec {
    position: relative;
    z-index: 9;
    padding: 80px 0;
}

.testi-head {
    width: 80%;
    margin: 0 auto 0;
    text-align: center;
}

.testi-head h2 {
    margin: 0;
}

.rating-astt {
    margin: 0 0 5px;
}

.rating-astt {
    font-size: 14px;
    color: #fd8f00;
}

.testi-box {
    position: relative;
    background: #f2f2f2;
    padding: 50px 10px;
    border-radius: 0;
    height: 300px;
    transition: 0.5s all;
    border: 1px solid #ddd;
    padding-left: 30px;
}

.testi-box p {
    color: #000;
    font-size: 14px;
}

ul.testi-imag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 0;
}

ul.testi-imag img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px;
    object-position: left;
}

ul.testi-imag h5 {
    font-size: 23px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 7px;
    color: #222222;
    font-family: 'Oswald';
    text-transform: uppercase;
}

ul.testi-imag h6 {
    font-size: 14px;
    color: #666666;
    line-height: 1.2;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.testi-icon i {
    font-size: 20px;
    color: #bb9087;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 50%;
}

.testi-icon {
    position: absolute;
    top: -10%;
}

.testi-slider.slick-initialized .slick-slide {
    display: block;
    margin: 30px 10px 0;
}

.testi-slider .slick-active {
    opacity: 1;
}

.testi-slider .slick-slide.slick-current .testi-box {
    border: 1px solid #ddd;
    background: #fff;
}

.testi-slider .slick-slide.slick-current.slick-active .testi-icon i {
    background: #014b47;
    color: #fff;
}

.testi-slider .slick-slide.slick-current.slick-active ul.testi-imag h5 {
    color: #014b47;
}


.testi-slider .slick-slide.slick-current .testi-box * {
    opacity: 1;
}

.testi-icon i {
    color: #014b47;
    background: #fff;
    font-weight: 700;
    box-shadow: 0 0 8px #ccc;
    margin-top: 2px;
    border: unset;
}

.testi-slider.slick-initialized .slick-current {
    width: 550px !important;
}

.testi-slider.slick-initialized .slick-track,
.testi-slider.slick-initialized .slick-list {
    height: 341px;
}

.testi-slider.slick-initialized .slick-list {
    padding-right: 200px;
}

.testi-slider .slick-slide.slick-current .testi-box p {
    font-size: 15px;
    line-height: 30px;
}

.testi-slider .slick-prev:before,
.testi-slider .slick-next:before {
    position: absolute;
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 15px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #014b47;
    background: transparent;
    color: #014b47;
    border-radius: 20px;
    box-shadow: 0px 3px 0px 1px #034b48;
}
.testi-slider .slick-prev, .testi-slider .slick-next {
    top: -126px;
    z-index: 999;
}

.testi-slider .slick-prev {
    left: unset;
    right: 130px;
}

.testi-slider .slick-next:before {
    content: '\f061';
}

.testi-slider .slick-next {
    right: 50px;
}

/* Testimonial Section End */
section.about {
    padding: 80px 0;
    background: #014b47;
    margin-bottom: 70px;
}

section.about .row {
    align-items: center;
}

.abt-img img {
    width: 94%;
    height: 77vh;
    object-fit: cover;
    margin-bottom: -140px;
}

section.about h2 {
    color: #fff;
}

.abt-text p {
    font-size: 15px;
    line-height: 30px;
}

.theme_btn.btn2.btn4 {
    border: 1px solid #fff;
    color: #fff;
    box-shadow: 0px 5px 0px 1px #fff;
}

.theme_btn.btn2.btn4 span {
    background: #fff;
}

.theme_btn.btn2.btn4 span img {
    filter: unset;
}

.theme_btn.btn2.btn4:hover {
    color: #000;
}

section.upto {
    padding: 100px 0;
    background-image: url(../images/upto.jpg);
    background-size: cover;
    background-position: top;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upto-wrap {
    text-align: center;
    background: linear-gradient(190deg, #086f6d 20%, #023a39e6 63%);
    padding: 80px 50px;
    border-radius: 20px;
    border: 1px solid #fff;
}

.upto-wrap a {
    margin: 0 auto;
}

.upto-wrap h3 {
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
}

.upto-wrap h3 span {
    font-size: 40px;
    display: block;
}

section.featurred {
    margin-bottom: 80px;
}

section.featurred .row {
    align-items: center;
}

.fea-img img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.fea-text {
    background: linear-gradient(190deg, #086f6d 20%, #023a39e6 63%);
    padding: 50px 20px;
    border-radius: 10px;
    height: 320px;
}

.fea-text h3 {
    color: #fff;
    font-size: 40px;
}

/* HOME end */
/* Inner Pages */

section.main_slider.inner-banner h1 {
    font-size: 100px;
    text-align: start;
    margin: 0;
}

section.main_slider.inner-banner .banner_img img {
    height: 500px;
    margin-bottom: -90px;
}

section.main_slider.inner-banner img.img-fluid {
    height: 580px;
    width: 100%;
}

section.main_slider.inner-banner .banner_img {
    text-align: center;
}

section.main_slider.inner-banner .carousel-caption .row {
    align-items: center;
}

section.about.inn-abt .abt-img img {
    margin: 0;
}

.miss-text {
    margin-top: 40px;
}

.miss-text h3 {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
}

ul.pagination {
    margin: 0;
    margin-top: 30px;
    justify-content: center;
    color: crimson;
}

ul.pagination .page-link {
    color: #fff;
    background: var(--theme2);
}

ul.pagination .page-link:hover {
    background: var(--theme1);
    color: #000;
}

/*PRODUCT DETAIL PAGE CSS*/

.top-section h2 {
    font-size: 40px;
    line-height: 52px;
    color: #000000;
    width: 100%;
}

.price_rev h3 {
    color: var(--theme2);
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 0px;
}

.price_rev ul {
    text-align: right;
    margin: 0;
}

.price_rev ul li {
    display: inline-block;
    color: #ffc007;
}

.price_rev ul li span {
    color: #8c8c8c;
    margin-left: 10px;
}

.product-content hr {
    border-top: 1px solid #a0d3d7;
    width: 90%;
}

.flexEnd {
    display: flex;
    align-items: flex-end;
    width: 87%;
}

.brand {
    margin: 25px 0px;
}

.brand li {
    color: #000000;
    font-weight: 500;
    font-size: 19px;
}

.brand li:not(:last-child) {
    margin-bottom: 7px;
}

.brand li small {
    color: #a2c617;
    display: inline-block;
    margin-left: 6px;
}

.product-content p {
    font-size: 11px;
    color: #636363;
    line-height: 20px;
}

.addtocart a {
    color: #fff !important;
    padding: 8px 40px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 17px;
    display: block;
    border-radius: 23px;
    background: linear-gradient(190deg, #086f6d 20%, #023a39e6 63%);
}

.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 #d5d5d5;
    font-size: 21px;
    color: #2a904c;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.product-body {
    justify-content: center;
    border: 2px solid #f2f2f2;
    border-radius: 10px;
}

.prod_description h4 {
    color: #000000;
    font-size: 35px;
    font-weight: unset;
    margin-bottom: 20px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-weight: 700;
}

.prod_description p {
    font-size: 14px;
    color: #636363;
    line-height: 14px;
    line-height: 20px;
}

.related_heading h2 {
    font-size: 55px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    margin-bottom: 50px;
}


/* skin 2 */

.skin-2 .num-in {
    background: #ffffff00;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    height: 40px;
    width: 110px;
    float: left;
    border: 1px solid #f2f2f2;
    border-radius: 23px;
}

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

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #000;
    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: #000;
}


/* / skin 2 */

section.product-detail {
    padding: 80px 0;
}

section.product-detail .container .row {
    align-items: center;
}

.price-prd {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-prd del {
    font-size: 30px;
    color: #ccc;
}

section.featured-prod-sec.inner {
    padding: 60px 0 120px 0;
}

section.featured-prod-sec.inner .slides-numbers {
    bottom: 13% !IMPORTANT;
}


/*product-detail end*/
/*Contact Us Start*/
.Contant-sec {
    padding: 100px 0;
}

.contact-form textarea {
    height: 200px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.Contant-sec ul.social-icons {
    position: unset;
    justify-content: start;
}

.get-in-touch-text h2 {
    font-size: 50px;
    margin-bottom: 3%;
}

.get-in-touch-text p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 6%;
    width: 90%;
}

.Contant-sec .row {
    display: flex;
    align-items: center;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 2px solid #b7b7b7;
    border-radius: 50px;
}

.contact-map {
    margin-top: 8%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 55px;
    border-radius: 50px;
    padding: 0 20px;
    margin-bottom: 7%;
    border: 1px solid #b7b7b7;
}

.contact-form textarea {
    margin-bottom: 20px;
    height: 190px;
    border-radius: 20px;
    padding: 10px 20px;
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27%;
    height: 60px;
    border-radius: 50px;
    background: var(--theme2);
    border: none;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.contact-social-link {
    margin-top: 6%;
}

.contact-social-link ul li a i {
    color: #333333;
    font-size: 22px;
}

.get-in-touch-text ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 4%;
}

.get-in-touch-text ul li a span {
    display: block;
    margin-top: 8px;
}

.get-in-touch-text ul li i {
    font-size: 25px;
    color: var(--theme2);
}

i.fas.fa-phone-alt {
    transform: rotate(93deg);
}

.get-in-touch-text ul li a {
    font-size: 17px;
    color: #333333;
    line-height: 20px;
}

/*Contact Us End*/
/* Inner Cart Start */
.add-to-cart thead {
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #5c5c5c;
    padding: 0 0 0;
}

.cart-page-tble tbody .quanity span {
    border-radius: 100px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    color: #000;
}

.align-items-center {
    align-items: center !important;
}

.cart-page-tble tbody .quanity span {
    border-radius: 100px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    color: #000;
}

.cart-page-tble tbody tr td input {
    /* height: 60px; */
    /* border: 1px solid #c4c4c4; */
    /* background-color: #ffffff; */
    /* color: #000; */
    text-align: center;
    height: 49px;
    border-radius: 6px;
    border: 0px solid #ebebeb;
    font-size: 23px;
    color: #0000009c;
    font-weight: 500;
    background: #fff0;
    margin: 0;
    border-radius: 5px;
    width: 100px;
}

.cart-page-tble tbody .quanity span {
    border-radius: 100px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    color: #000;
}

.inc {
    padding: 0 10px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    width: 80%;
    height: 60px;
    border-radius: 0 !important;
    background: linear-gradient(190deg, #086f6d 20%, #023a39e6 63%);
    position: relative;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    border-radius: 10px !important;
}

.input-number {
    border: none;
}

.input-number-decrement,
.input-number-increment {
    display: inline-flex;
    text-align: center;
    border: 1px solid transparent !important;
    cursor: pointer;
    background: transparent;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.input-number,
.input-number1,
.input-number-decrement,
.input-number-increment {
    border: 0;
    user-select: none;
    font-weight: 600;
    padding: 5px 5px 5px 5px;
    color: white;
    font-size: 21px;
}

a.update {
    color: #000;
}

.product-cart figure {
    /* padding: 10px; */
    margin: 0;
    /* background-color: #eaeaea; */
    /* border-radius: 3px; */
    /* border: 1px solid #c8c8c8; */
}

section.add-to-cart th:first-child {
    border-radius: 10px 0 0 10px;
}

section.add-to-cart th:last-child {
    border-radius: 0 10px 10px 0;
}

.shipping-box h4 {
    color: #d60000;
    font-family: "Montserrat";
}

.for-lin:before {
    position: absolute;
    content: "";
    left: 0;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    width: 949px;
    height: 30px;
    z-index: 9999;
    top: 10px;
}

.for-lin {
    position: relative;
}

.add-to-cart .table>thead>tr>th {
    border-bottom: 0;
    font-size: 16px;
    text-transform: capitalize;
    padding-left: 34px;
    padding-bottom: 30px;
    color: #000;
}

.table-space h6 {
    font-size: 15px;
    color: #000;
    margin-bottom: 5px;
    font-family: "Roboto";
    line-height: 25px;
    margin-top: 15px;
    font-weight: 400;
}

.table-space p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0;
    line-height: 22px;
}

.product-img {
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: 6px 6px;
    background: #165553;
    border-radius: 10px;
}

.number-item input {
    width: 100%;
    text-align: center;
    height: 050px;
    border-radius: 46px;
    border: 0;
    font-size: 23px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    margin-top: 0;
    background-color: transparent;
    color: white;
    pointer-events: none;
}

.add-to-cart a {
    margin-left: 20px;
    width: 96%;
    margin-top: 10px;
    color: #fff;
    background: var(--theme2);
}

li.quanity.product-detail {
    width: 42%;
}

li.quanity.product-detail .inc {
    margin: 0;
}

.add-to-cart h4 {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    text-align: center;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

th.text-align\:left {
    text-align: left !important;
    padding-left: 30px !important;
}

tr.space {
    border-bottom: 1px solid #5c5c5c;
}

a.remove {
    color: rgb(255, 255, 255);
    font-size: 16px;
    background: linear-gradient(190deg, #086f6d 20%, #023a39e6 63%);
    position: relative;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 40px;
    width: 40px;
}

.proceed a {
    color: #ad0d3c;
    text-align: left;
    font-size: 30px;
    text-transform: capitalize;
    font-family: "mouzambik";
}

.proceed i {
    margin-left: 10px;
}

.proceed .checkout-btn {
    border: none;
    padding: 18px 20px;
    width: 100%;
    font-size: 18px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    margin: 0 0 0 auto;
    background-image: -webkit-linear-gradient(-92deg,
            rgb(243, 159, 144) 0%,
            rgb(209, 72, 59) 100%);
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.all-section-inner {
    padding: 0px 0 80px;
}

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

.or-amazon p {
    font-size: 16px;
    position: absolute;
    background: #fff;
    top: -20px;
    left: 0;
    padding: 5px 20px;
    color: #394136;
    display: block;
    text-transform: uppercase;
    border: 2px solid #c0c0c0;
    right: 0;
    margin: 0 auto;
    width: 70%;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

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

.total-section {
    padding: 30px 40px;
    background-color: transparent;
    border: 1px solid #075e5d;
    margin-left: 20px;
    border-radius: 20px;
    position: relative;
    margin-top: 51px;
}

.total-section::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 70px;
    left: 0;
    background: -webkit-linear-gradient(90deg, rgb(5 65 64) 0%, rgb(6 69 68) 100%);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
}

.total-section::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: -webkit-linear-gradient(90deg, rgb(5 65 64) 0%, rgb(6 69 68) 100%);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    bottom: 75px;
    left: 0;
}

input#coupan {
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid #075e5d;
    background: transparent;
    color: #fff;
    margin-bottom: 20px;
}

.total-section.border-gri-top h3 {
    color: #000;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 20px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

li.color-change {
    color: #000;
    padding-bottom: 0 !important;
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-background-clip: text;
    padding-top: 1;
}

ul.p-0.check-out-side-icon {
    margin-bottom: 0;
}

.total-section li span {
    float: right;
    font-family: "Montserrat", sans-serif;
}

.ship-estimate {
    background-color: #f7f7f7;
    padding: 10px 50px;
    margin-top: 35px;
    border: 2px solid #eeeeee;
    margin-left: 20px;
}

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

.ship-estimate li {
    margin-bottom: 0px;
    color: #000;
    font-size: 30px;
    font-weight: 500;
    font-family: "yipes";
}

.ship-estimate .grey-style {
    color: #7a7a7a;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.proceed {
    display: flex;
    align-items: flex-start;
}

.add-to-cart .table-space {
    display: flex;
    align-items: center;
}

.add-to-cart .table-space .col-md-7 {
    margin-left: 20px;
}

.product-img img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

section.add-to-cart {
    padding: 100px 0px 90px;
}

.add-to-cart .table>tbody {
    vertical-align: middle !important;
}

.copen-code {
    background: -webkit-linear-gradient(90deg, rgb(5 65 64) 0%, rgb(6 69 68) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Inner Cart Ends */

/*Inner Check Out Start*/



.billing_form h3 {
    font-size: 40px;
    margin: 0;
    margin-bottom: 40px;
    line-height: 40px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--theme2);
}

.billing_form label {
    font-size: 18px;
    color: #000;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.radiosss p {
    font-size: 12px;
    line-height: 25px;

    color: #000000;
}

.billing_form input {
    width: 100%;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 15px;
    background-color: #fff0;
    border-radius: 5px;
    text-align: left;
    border: 1px solid #e1e1e1;
}




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

.cart_sidebar .cart_lst li {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

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

.cart_sidebar .cart_lst li:last-child {
    font-size: 25px;
    font-weight: 500;
    color: var(--theme2);
    margin-top: 25px;
}


.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;

}

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

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;

}

.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;

}

.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;

}

.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;

    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;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
}

.cart_sidebar h3 {
    font-size: 24px;
    color: #000;
    margin: 0;
    margin-bottom: 20px;
    line-height: 28px;
    font-weight: 500;
    text-transform: uppercase;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: var(--theme2);
    font-size: 25px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    font-family: "El Messiri", sans-serif;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--theme2);
    margin-bottom: 20px;
}

.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: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}


.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #d8d8d8;
    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: 5px;
    left: 8px;
    width: 6px;
    height: 14px;
    border: solid var(--theme2);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

.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;

}

.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 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: 14px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    background: linear-gradient(180deg, #63ab1e 60%, #4a8f2c 100%);
    text-transform: uppercase;
    border-radius: 100px;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}


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

h6.payment-h {
    font-weight: 600;
    color: var(--theme2);
    font-size: 25px;
    margin-bottom: 30px;
    margin-top: 30px;
    font-family: "El Messiri", sans-serif;
}


.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: var(--theme2);
}

.cart_sidebar a {
    background: var(--theme2);
    color: #fff;
    font-size: 22px;
    padding: 12px 0;
    margin-bottom: 15px;
    border-radius: 5px;
}

section.checkout_page {
    padding: 50px 0 80px;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 1px solid #fff;
    margin-left: 0;
    background-color: #fff0;
}

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



.billing_form {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
}


ul.testi-imag img {
    display: none;
}

ul.testi-imag {
    gap: 0;
}
/*Inner Check Out End*/

/* Inner Pages end */