/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Claudia Layout 03 ( Iphone Collection )
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header-con
3. Banner  /.banner-con
4. Features  /.features-con
5. Products /.our-product-con
6.Top Selling Products /.top-selling-products-con
7. Recommended  /.recommended-con
8. Newsletter  /.newsletter-con
9. Partners /.partners-con
11. Footer  /.footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]


*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy: "Inter", sans-serif;
Heading: "Inter", sans-serif;
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
}

:root {
    --primary--color: #ff005a;
    --secondary--color: #ffffff;
    --accent--color: #000000;
    --text--color: #000000;
    --grey--color: #f8f8f8;
    --black--color: #000000;
    --rust--color: #ff005a;
    --border--color: #9c9c9c;
    --light--bg--color: #fdf6ed;
    --light--grey--color: #f9f9f9;
    --yellow--color: #fbab2a;
    --border--color: #d7d7d7;
    --green--color: #76a22c;

    /*  */
    --bg--sky--color: #c8e8ff;
    --bg--sky--color2: #f0f5ff;
    --bg--sky--color3: #f0f9ff;
    --bg--pestal--pink--color: #fff4f4;
    --bg--pestal--pink--color2: #fff5f5;
    --bg--grey--color: #f4f4f4;
    --bg--pestal--green--color: #e5f3f4;
    --bg--beige--color: #fff5e6;
    --parrot--color: #5ace32;
    --grey--color2: #777777;
}


figure {
    margin-bottom: 0;
}

h1 {
    font-size: 100px;
    line-height: 100px;
    font-weight: 500;
    color: var(--black--color);
}

h1.sub-heading1 {
    font-size: 72px;
    line-height: 74px;
    font-weight: 500;
    color: var(--black--color);
}

h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    color: var(--black--color);
}

h3 {
    font-size: 36px;
    line-height: 38px;
    font-weight: 500;
    color: var(--black--color);
}

h4 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    color: var(--black--color);
}

h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black--color);
}

h6 {
    font-size: 19px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black--color);
}

.pink-text {
    color: var(--primary--color);
}

p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text--color);
    word-break: break-word;
}

.text-size-18 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text--color);
}

.text-size-16 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--text--color);
}

.text-size-14 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text--color);
}

.inter-font {
    font-family: "Inter", sans-serif;
}

.special-text {
    color: var(--primary--color);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.primary_btn {
    font-size: 14px;
    min-width: 160px;
    padding: 0;
    height: 50px;
    line-height: 50px;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    position: relative;
    display: inline-block;
    background-color: var(--primary--color);
    color: var(--secondary--color);
    transition: all 0.6s ease-in-out;
    text-transform: uppercase;
}

.primary_btn:hover {
    color: var(--secondary--color);
    background-color: var(--accent--color);
    transition: all 0.6s ease-in-out;
}

.secondary_btn {
    font-size: 13px;
    min-width: 160px;
    padding: 0;
    height: 50px;
    line-height: 47px;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    position: relative;
    display: inline-block;
    background-color: transparent;
    color: var(--accent--color);
    border: 2px solid var(--accent--color);
    transition: all 0.6s ease-in-out;
    text-transform: uppercase;
}

.secondary_btn:hover {
    color: var(--secondary--color);
    background-color: var(--accent--color);
    transition: all 0.6s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

.all_row {
    display: flex;
    flex-wrap: wrap;
}

.all_column {
    display: flex;
}

.all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.padding-top {
    padding-top: 108px;
}

.padding-bottom {
    padding-bottom: 113px;
}


.heading-title-con {
    margin-bottom: 65px;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-500 {
    font-weight: 500;
}

.text-black {
    color: var(--black--color);
}

.background-black {
    background-color: var(--accent--color);
}

.background-sky {
    background-color: var(--bg--sky--color);
}

.background-primary {
    background-color: var(--primary--color);
}


.background-grey {
    background-color: var(--light--grey--color);
}

.background-pestal-green {
    background-color: var(--bg--pestal--green--color);
}

.background-pestal-beige {
    background-color: var(--bg--beige--color);
}

.background-pestal-blue {
    background-color: var(--bg--sky--color2);
}

.background-pestal-pink {
    background-color: var(--bg--pestal--pink--color);
}

.background-pestal-pink2 {
    background-color: var(--bg--pestal--pink--color2);
}

.background-pestal-grey {
    background-color: var(--bg--grey--color);
}

.spacer {
    float: left;
    width: 100%;
    height: 50px;
}

body {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black--color);
}

.font-weight-700 {
    font-weight: 700 !important;
}

/* SEARCH FORM */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    display: none;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: rgb(255, 255, 255);
    background: transparent;
    border-top: none;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    outline: none;
    padding: 10px;
}

#search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    content: "\f00d";
    background-image: url('../images/close.png');
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #fff;
}

#search .close:hover {
    color: var(--primary--color);
    cursor: pointer;
    text-shadow: none;
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--primary--color);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 100px;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#button:hover {
    transform: translateY(-5px);
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(213 142 111 / 40%)
    }

    to {
        box-shadow: 0 0 0 35px rgba(115, 0, 209, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(213 142 111 / 40%)
    }

    to {
        box-shadow: 0 0 0 35px rgba(115, 0, 209, .01)
    }
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--primary--color);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--primary--color);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.owl-item,
.item,
.owl-stage {
    display: flex;
}

.owl-item {
    flex: 1 0 auto;
    /* natural width retain */
}

/* HEADER SECTION */
/* Home Page */

.top-bar-con .top-bar-box {
    padding: 15px 0;
    border-bottom: 1px solid var(--border--color);
}

.top-bar-con .top-bar-info p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: var(--text--color2);
}

.top-bar-con .top-bar-info p span {
    color: var(--rust--color);
}

.other_list {
    margin-right: 0;
    z-index: 20;
}

.other_list .other_list_item {
    margin-right: 4px;
}

.other_list .country-selector {
    z-index: 9;
    position: relative;
}

.other_list .country-selector {
    font-size: 14px;
    width: 110px;
    font-weight: 400;
    margin-right: 10px;
    color: var(--black--color) !important;
    transition: all 0.8s ease-in-out;
    height: 38px;
    line-height: 36px;
    border: 1px solid var(--black--color);
    text-align: center;
    border-radius: 19px;
}

.other_list .country-selector>div.caption {
    margin-left: 0;
}

.other_list .country-selector>div.caption img {
    position: relative;
    top: -1px;
    margin-right: 6px;
}

.other_list div.country-selector>div.list {
    position: absolute;
    width: 110px;
    display: none;
    left: 0;
    top: 42px;
    background-color: var(--secondary--color);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    text-align: left;
}

.other_list div.country-selector>div.list>div.item {
    padding: 10px;
}

.other_list div.country-selector>div.list>div.item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--text--color2);
    /* font-family: "Plus Jakarta Sans", sans-serif; */
    transition: all 0.3s ease-in-out;
}

.other_list div.country-selector>div.list>div.item:hover a {
    color: var(--rust--color);
}

.other_list div.country-selector>div.list>div.item img {
    position: relative;
    top: -1px;
    margin-right: 6px;
}

.other_list div.country-selector>div.caption,
div.country-selector>div.list>div.item {
    cursor: pointer;
}

.header-con {
    padding: 18px 0px;
    position: relative;
    z-index: 5;
}

.navbar-collapse .navbar-nav {
    text-align: center;
    align-items: center;
    display: inherit;
}

.navbar-expand-lg {
    position: relative;
    z-index: 1;
}

.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav li {
    margin: 0 28px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar-nav li:first-child {
    margin-left: 0;
}

.navbar-nav li:last-child {
    margin-right: 0;
}

.navbar-nav .nav-item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black--color) !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item a:hover {
    color: var(--primary--color) !important;
    background-color: transparent;
}

.navbar-nav .active>a {
    color: var(--primary--color) !important;
}

/* .navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
} */

.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 50px;
    min-width: 212px;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 10%);
    background-color: var(--secondary--color);
}

.navbar-nav .drop-down-pages li {
    margin: 0;
    border-bottom: 1px solid var(--secondary--color);
}

.navbar-nav .drop-down-pages .nav-item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 10px 20px;
    text-transform: uppercase;
    color: var(--text--color) !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}

.navbar-nav .drop-down-pages li:first-child a::before {
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../images/nav-node.png);
    top: -12px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .drop-down-pages li:first-child a:hover::before {
    background-image: url(../images/nav-node-hover.png);
}

.navbar-nav .drop-down-pages .active:first-child>a::before {
    background-image: url(../images/nav-node-hover.png);
}

.navbar-nav .drop-down-pages li:last-child {
    margin: 0;
    border: none;
    display: block !important;
}

.navbar-nav .nav-item .dropdown-item:hover {
    color: var(--secondary--color) !important;
    background-color: var(--primary--color) !important;
}

.navbar-nav .drop-down-pages .active>a {
    color: var(--secondary--color) !important;
    background-color: var(--primary--color) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--secondary--color) !important;
    background-color: var(--primary--color) !important;
}

.navbar-nav .drop-down-pages .active>a:hover {
    color: var(--secondary--color) !important;
    background-color: var(--primary--color) !important;
}

.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}

.header-con .last_list {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.header-con .last_list a {
    position: relative;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
}

.header-con .last_list a:first-child {
    margin-left: 0;
}

.header-con .last_list a:last-child {
    margin-right: 0;
}

.header-con .last_list .cart span {
    font-size: 12px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    right: -6px;
    bottom: -4px;
    text-align: center;
    border-radius: 100%;
    color: var(--secondary--color);
    background-color: var(--primary--color);
    transition: all 0.3s ease-in-out;
}

.header-con .last_list a img {
    filter: brightness(0);
    transition: all 0.3s ease-in-out;
}

.header-con .last_list a:hover img {
    filter: none;
}


/* 404 page styling start here */
.coming-soon-con,
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-image: linear-gradient(to right, rgba(60, 176, 242, 0.2) 0%, rgba(125, 100, 248, 0.2) 100%); */
    /* background-image: url(../images/login-signup-bg.png); */
    /* color: rgb(60, 176, 242);
    color: rgb(125, 100, 248); */
}

.error-con {
    position: relative;
    z-index: 2;
}

.error-con h2 {
    font-size: 170px;
    line-height: 165px;
    margin-bottom: 30px;
    color: var(--accent--color);
}

.error-con h2 i {
    font-size: 130px;
    line-height: 130px;
    color: var(--primary--color);
    border-radius: 100%;
}

.error-con h4 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 18px;
    color: var(--black--color);
}

.error-con p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 30px;
    color: var(--text--color);
}

.error-con .primary_btn {
    min-width: 220px;
}

.error-banner,
.coming-soon-con {
    flex-grow: 1;
}

/* COMING SOON PAGE */
.coming-soon-con .new-logo {
    margin-bottom: 35px;
}

.coming-soon-con h1 {
    margin-bottom: 30px;
    font-size: 85px;
    line-height: 95px;
    text-transform: uppercase;
    color: var(--accent--color);
}

.coming-soon-con h3 {
    margin-bottom: 22px;
    font-size: 36px;
    line-height: 28px;
    display: inline-block;
    color: var(--primary--color);
}

/* coming soon countdown timer styling */
.compaign_countdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.compaign_countdown ul li {
    float: left !important;
    width: auto;
    margin: 0;
    text-align: center;
    margin: 0 13px;
    min-height: 133px;
    min-width: 133px;
    background-color: var(--primary--color);
    padding: 20px 16px;
    color: var(--secondary--color);
    font-size: 22px;
    font-weight: 400;
    border-radius: 20px;
}

.compaign_countdown ul li:first-child {
    margin-left: 0;
}

.compaign_countdown ul li:last-child {
    margin-right: 0;
}

.compaign_countdown ul li span.days,
.compaign_countdown ul li span.hours,
.compaign_countdown ul li span.minutes,
.compaign_countdown ul li span.seconds {
    display: block;
    color: var(--secondary--color);
    width: auto;
    font-size: 60px;
    line-height: 65px;
    border-radius: 10px;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
}

.compaign_countdown {
    margin: 0 auto;
    width: 70%;
}

.coming-soon-con {
    flex-grow: 1;
    min-height: 100vh;
}

/* Login Form Page Style  */

.login-form {
    min-height: 100vh;
    /* background-image: url(../images/login-signup-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}

.login-form .login-form-title {
    margin-bottom: 30px;
}

.login-form .login-page-logo {
    margin-bottom: 25px;
}

.login-form .login-form-box {
    width: 450px;
    margin: 0 auto;
    position: relative;
}

.login-form .login-card {
    padding: 30px;
    margin-bottom: 30px;
    line-height: 0.8;
    border-radius: 20px;
    background: var(--accent--color);
}

.login-form .login-card label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 13px;
    color: var(--secondary--color);
}

.login-form .login-card .input-field {
    font-size: 16px;
    font-weight: 500;
    height: 54px;
    width: 100%;
    line-height: 16px;
    padding: 0 21px;
    border-radius: 100px;
    background: transparent;
    color: var(--secondary--color);
    /* border: 1px solid rgb(255 255 255 / 50%); */
    border: 1px solid var(--primary--color);
}

.login-form .login-card .input-field:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--secondary--color);
}

.login-form .login-card .form-group {
    margin-bottom: 16px;
}

.login-form .login-card .btn-primary {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 20px 15px;
    margin-bottom: 16px;
    width: 100%;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    color: var(--secondary--color);
    background-color: var(--primary--color);
    transition: all 0.8s ease-in-out;
}

.login-form .login-card .btn-primary:hover {
    background-color: var(--secondary--color);
    color: var(--black--color);
}

.login-form .login-card .forgot-password {
    color: var(--secondary--color);
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
}

.login-form .login-card .forgot-password:hover {
    text-decoration: underline;
    color: var(--primary--color);
}

.login-form .login-form-box .join-now-outer a {
    font-size: 16px;
    line-height: 18px;
    color: var(--black--color);
    text-decoration: none;
}

.login-form .login-form-box .join-now-outer a:hover {
    text-decoration: underline;
    color: var(--accent--color);
}

.login-form .login-card .select-option option {
    font-size: 16px;
    color: black;
}

.login-form .form_style::placeholder {
    color: var(--secondary--color);
    opacity: 1;
}

.login-form .form_style:-ms-input-placeholder {
    color: var(--black--color);
}

.login-form .form_style::-ms-input-placeholder {
    color: var(--primary--color);
}

/* Join-Now Form Page Style */

.sign-up-form {
    padding: 70px 0;
}

.sign-up-form .login-form-box {
    width: 700px;
}

.sign-up-form .login-card label small {
    font-size: 14px;
}

.sign-up-form .login-card .select-option {
    padding: 0 40px 0 21px;
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 96.5% 24px !important;
    background-image: url('../images/dropdown-arrow1.png') !important;
}

.sign-up-form .login-card .select-option:focus {
    outline: none;
    box-shadow: none;
}

/* THANKYOU PAGE */
.thank-you-con .thankyou-content-con figure {
    width: 166px;
    height: 166px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary--color);
    margin: 0 auto 57px;
    box-shadow: 0 2px 67px rgb(0 0 0 / 5%);
}

.thank-you-con .thankyou-content-con h1 {
    margin-bottom: 30px;
}

.thank-you-con .thankyou-content-con p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}

.thank-you-con .primary_btn {
    min-width: 201px;
}

/* Footer */

.footer-con .middle_portion {
    padding: 97px 0 50px;
}

.footer-con .middle_portion .footer-logo {
    margin-bottom: 35px;
}

.footer-con .social-icons li {
    margin: 0 4px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.footer-con .social-icons a {
    margin-left: 0 !important;
}

.footer-con .social-icons i {
    font-size: 14px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 100px;
    text-align: center;
    color: var(--black--color);
    background-color: var(--secondary--color);
    transition: all 0.3s ease-in-out;
}

.footer-con .social-icons i:hover {
    transform: translateY(-5px);
    color: var(--secondary--color);
    background-color: var(--primary--color);
}

.footer-con .social-icons li:first-child {
    margin-left: 0;
}

.footer-con .social-icons li:last-child {
    margin-right: 0;
}

.footer-con .middle_portion h5 {
    margin-bottom: 27px;
    color: var(--secondary--color);
}


.footer-con .middle_portion li {
    margin-bottom: 5px;
    line-height: 25px;
}

.footer-con .middle_portion li:last-child {
    margin-bottom: 0 !important;
}

.footer-con .middle_portion li a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: none;
    color: var(--secondary--color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.footer-con .middle_portion li a:hover {
    color: var(--primary--color);
}

.footer-con .middle_portion .icon {
    padding-left: 30px;
}

.footer-con .middle_portion .icon .text {
    position: relative;
    margin-bottom: 11px;
    padding-left: 30px;
    display: inline-block;
}

.footer-con form input {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    padding: 10px 16px;
    height: 50px;
    width: 316px;
    position: relative;
    color: var(--black--color);
    background-color: var(--secondary--color);
    border-radius: 6px;
    border: none;
    overflow: visible;
    outline: none;
    margin-bottom: 20px;
}

.footer-con form input::placeholder {
    color: var(--black--color);
}

.footer-con form button {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    width: 160px;
    height: 50px;
    padding: 10px 20px;
    color: var(--secondary--color);
    background-color: var(--primary--color);
    border-radius: 6px;
    position: relative;
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
}

.footer-con form button:hover {
    background-color: var(--secondary--color);
    color: var(--primary--color);
}

.footer-con .middle_portion .icon i {
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    left: 0;
    top: 6px;
    color: var(--primary--color);
}

.footer-con .middle_portion .icon a {
    margin-left: 0 !important;
}

.footer-con .copyright {
    padding: 44px 0;
    border-top: 1px solid rgb(255 255 255 / 15%);
}

.footer-con .copyright .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-con .copyright p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--secondary--color);
}

/* BANNER SECTION */
/* Banner */


/* CURRENCY DROPDOWN */
.other_list .currency-selector {
    z-index: 9;
    position: relative;
    font-size: 14px;
    width: 93px;
    font-weight: 400;
    color: var(--black--color) !important;
    transition: all 0.8s ease-in-out;
    height: 38px;
    line-height: 36px;
    border: 1px solid var(--black--color);
    text-align: center;
    border-radius: 19px;
}

.other_list .currency-selector>div.caption {
    margin-left: 0;
    cursor: pointer;
}

.other_list .currency-selector>div.caption img {
    position: relative;
    top: -1px;
    margin-left: 6px;
}

.other_list div.currency-selector>div.list {
    position: absolute;
    width: 91px;
    display: none;
    left: 0;
    top: 42px;
    background-color: var(--secondary--color);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    text-align: left;
}

.other_list div.currency-selector>div.list>div.item {
    padding: 10px;
    cursor: pointer;
}

.other_list div.currency-selector>div.list>div.item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--text--color2);
    transition: all 0.3s ease-in-out;
    display: block;
}

.other_list div.currency-selector>div.list>div.item:hover a {
    color: var(--rust--color);
}

/* BENEFITS SECTION */
.benefits-con {
    padding: 23px 0;
    background-color: var(--bg--sky--color3);
}

.benefits-con .benefits-box {
    display: flex;
    align-items: center;
    transition: ease-in-out 0.6s
}

.benefits-con .benefits-box img {
    margin-right: 10px;
}

.benefits-con span {
    font-size: 16px;
    font-weight: 500;
    color: var(--black--color);
}

/* breadcrumb */
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: var(--primary--color);
}

.breadcrumb-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
}

.breadcrumb {
    padding: 0;
    transition: ease-in-out 0.6s;
    border-radius: 0;
    justify-content: center;
    background-color: transparent;
    line-height: 27px
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--accent--color);
}

.breadcrumb-item a:hover {
    color: var(--primary--color);
}


.breadcrumb-item+.breadcrumb-item::before {
    color: var(--black--color);
    content: "~";
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    padding: 0 5px;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0 !important;
}

/* SUB BANNER SECTION */
.sub-banner-con {
    padding-top: 90px;
    padding-bottom: 95px;
}

.sub-banner-con h1 {
    color: var(--black--color);
    margin-bottom: 32px;
}

/* ABOUT US SECTION */
.about-us-content-con {
    padding-left: 9px;
}

.about-us-content-con p {
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 35px;
}

.about-us-content-con .secondary_btn {
    min-width: 170px;
}

.about-us-content-con h2 {
    margin-bottom: 22px;
}

.about-us-img-con figure img {
    border-radius: 15px;
}

/* OUR MISSION SECTION */

.our-mission-con::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    /* width: 960px; */
    width: 50%;
    height: 100%;
    background-image: url(../images/mission-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.our-mission-con .mission-inner-con {
    padding-right: 100px;
}

.our-mission-con .mission-inner-con h2 {
    margin-bottom: 22px;
}

.our-mission-con .mission-inner-con p {
    line-height: 30px;
}

/*  */

.privacy-policy-content-con h4 {
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--black--color);
}

.privacy-policy-content-con p,
.privacy-policy-content-con ul li {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: var(--text--color3);
}

.privacy-policy-content-con ul li {
    padding-left: 24px;
    margin-bottom: 8px;
}

.privacy-policy-content-con ul li i {
    left: 0;
    position: absolute;
    top: 6px;
    color: var(--primary--color);
    font-size: 14px;
}

/* CONTACT PAGE */
/* contact help section */
.contact-help-con .white-box {
    padding: 45px 30px;
    transition: ease-in-out 0.6s;
    border: 1px solid transparent;
    border-radius: 15px;
}

.contact-help-con .white-box:hover {
    border: 1px solid var(--primary--color);
}

.contact-help-con .white-box figure {
    transition: ease-in-out 0.6s;
}

.contact-help-con .white-box:hover figure {
    transform: translateY(-3px);
}

.contact-help-con .white-box h4 {
    margin-bottom: 16px;
    margin-bottom: 20px;
}

.contact-help-con .white-box ul li {
    font-size: 16px;
    line-height: 30px;
    color: var(--black--color);
}

.contact-help-con .white-box ul li a {
    color: var(--black--color);
    font-size: 16px;
}

.contact-help-con .white-box ul li a:hover {
    color: var(--primary--color);
    text-decoration: none;
}

.contact-help-con a:hover {
    color: var(--primary--color);
    text-decoration: none;
}

/* CONTACT FORM SECTION */

.contact-form-con #contactpage span.error {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 0;
    color: var(--rust--color);
    text-align: left;
}

.contact-form-con form ul li {
    float: left;
    width: 100%;
    margin-right: 0;
    margin-bottom: 22px;
    position: relative;
}

.contact-form-con form ul li:nth-child(3) {
    margin-right: 0;
}

.contact-form-con form ul li input {
    width: 100%;
    padding: 13px 19px;
    background-color: var(--secondary--color);
    border: 1px solid #dddddd;
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black--color);
    border-radius: 6px;
}

.contact-form-con form ul li input::placeholder,
.contact-form-con form ul li textarea::placeholder {
    color: var(--text--color);
}

.contact-form-con form ul li:last-child {
    width: 100%;
}

.contact-form-con form label {
    font-size: 16px;
    line-height: 26px;
    color: var(--black--color);
    font-weight: 400;
    text-align: left;
    float: left;
}

.contact-form-con form ul li textarea {
    height: 184px;
    padding: 13px 19px;
    background-color: var(--secondary--color);
    border: 1px solid #dddddd;
    font-size: 14px;
    width: 100%;
    color: var(--black--color);
    float: left;
    border-radius: 6px;
}

.contact-form-con form ul li textarea::placeholder {
    color: var(--black--color);
}

.contact-form-con form ul li:last-child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 28px;
}

.contact-form-con form ul li input:focus-visible,
.contact-form-con form ul li textarea:focus-visible {
    border: none;
    outline: none;

}

.contact-form-con form ul li input:focus,
.contact-form-con form ul li textarea:focus {
    /* background-color: var(--primary-color); */
    border: 1px solid var(--primary--color);
    box-shadow: 0 0px 7px 2px rgb(255 0 90 / 30%) inset;
}

.contact-form-con .primary_btn {
    background-color: var(--accent--color);
}

.contact-form-con .primary_btn:hover {
    background-color: var(--primary--color);
}

.contact-help-con .white-box figure {
    margin-bottom: 28px;
}

button.primary_btn {
    border: none;
    background-color: var(--primary--color);
}

/* LAYOUT 03 iPHONE HOME PAGE STYLING */
/* NEWSLETTER SECTION */
.newsletter-con {
    padding: 100px 0;
    background-image: url(../images/newsletter-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.newsletter-con input {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    padding: 10px 16px;
    margin-right: 16px;
    height: 50px;
    width: 535px;
    position: relative;
    color: var(--black--color);
    background-color: var(--secondary--color);
    border-radius: 6px;
    border: 2px solid var(--accent--color);
    overflow: visible;
    outline: none;
}

.newsletter-con input:focus {
    border: 2px solid var(--primary--color);
}

.newsletter-con button {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    width: 120px;
    height: 50px;
    padding: 10px 20px;
    color: var(--secondary--color);
    background-color: var(--accent--color);
    border-radius: 6px;
    position: relative;
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
}

.newsletter-con button:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.newsletter-con p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 29px;
}

.newsletter-con h4 {
    margin-bottom: 18px;
}

/* PARTNERS SECTION */
.partners-con {
    padding: 40px 0;
}

.partners-con ul li img {
    transition: ease-in-out 0.6s;
}

.partners-con ul li:hover img {
    transform: translateY(-3px);
}

/* RECOMMENDED SECTION */
.recommended-box {
    background-color: var(--grey--color);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid transparent;
    transition: ease-in-out 0.6s;
}

.recommended-box figure {
    margin: 0 auto 35px;
}

.recommended-box h5 {
    margin-bottom: 5px;
}

.recommended-box .sale-tag {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: var(--primary--color);
    border-radius: 100px;
    top: 30px;
    left: 29px;
}

.recommended-box .new-tag {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: var(--parrot--color);
    border-radius: 100px;
    top: 25px;
    left: 25px;
}

.recommended-con .col-lg-3.col-md-6 {
    margin-bottom: 30px;
}

.recommended-con .col-lg-3.col-md-6:nth-last-of-type(-n+4) {
    margin-bottom: 0;
}

/* TOP SELLING PRODUCTS SECTION */
.top-selling-products-con .top-product-box {
    padding: 50px 45px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: ease-in-out 0.6s;
}

.inner-tp-con span {
    margin-bottom: 17px;
}

.inner-tp-con h3 {
    margin-bottom: 25px;
}

.inner-tp-con {
    grid-template-columns: 50% 50%;
    display: grid;
}

.top-selling-products-con .top-product-box img {
    position: relative;
    right: 62px;
}

/* OUR PRODUCTS SECTION */
.our-product-con .product-box {
    padding: 36px 25px 36px 35px;
    border-radius: 15px;
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
    transition: ease-in-out 0.6s;
}

.our-product-con .product-box:hover,
.top-selling-products-con .top-product-box:hover,
.recommended-con .recommended-box:hover {
    border: 1px solid var(--primary--color);
    background-color: var(--bg--pestal--pink--color);
}

.our-product-con .product-box figure {
    text-align: right;
}

.our-product-con .product-box figure.pimage2 {
    position: relative;
    right: 45px;
}

.our-product-con .product-box figure.pimage2.pimage3 {
    right: 20px;
}

.our-product-con .top-selling-content {
    position: relative;
    z-index: 1;
}

/* BANNER SECTION */
.banner-con {
    padding-top: 53px;
    padding-bottom: 53px;
}

.banner-con .banner-img-con figure {
    text-align: right;
}

.banner-con .banner-img-con .black-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--black--color);
    color: var(--secondary--color);
    border-radius: 100px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    left: 75px;
    top: -13px;
}

/* .banner-con .slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

/* Custom carousel indicators (dots + active line) */
.banner-con .custom-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0%);
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.banner-con .custom-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary--color);
    margin: 0 6px;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.banner-con .custom-indicators li:hover {
    background-color: var(--black--color);
}

.banner-con .custom-indicators li.active {
    background-color: var(--accent--color);
    width: 30px;
    height: 1px;
    border-radius: 0;
    opacity: 1;
}

.banner-con .primary_btn {
    background-color: var(--accent--color);
    margin-bottom: 70px;
}

.banner-con .primary_btn:hover {
    background-color: var(--primary--color);
}

.banner-con h1 {
    margin-bottom: 35px;
}

.banner-con h4 {
    margin-bottom: 35px;
}

/* OUR TEAM SECTION  */
.our-team-con .team-box figure img {
    border-radius: 100px;
    margin-bottom: 24px;
    transition: ease-in-out 0.6s;
}

.our-team-con .team-box {
    background-color: var(--grey--color);
    border-radius: 15px;
    padding: 35px;
    transition: ease-in-out 0.6s;
    border: 1px solid transparent;
}

.our-team-con .team-box:hover {
    border: 1px solid var(--primary--color);
}

.our-team-con .team-box:hover img {
    transform: translateY(-4px);
}

.our-team-con .team-box h5 {
    margin-bottom: 3px;
}

/* SMALL BREADCRUMB BANNER */
.smol-breadcrumb-banner {
    padding: 14px 0;
}