/** Shopify CDN: Minification failed

Line 1738:12 Expected identifier but found whitespace
Line 1738:13 Unexpected "("

**/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
  
  /* Boxicons */
  @font-face {
    font-family: boxicons;
    src: url("/cdn/shop/files/boxicons_1.ttf?v=1749759916");
  }
  
  @font-face {
    font-family: rage-italic;
    src: url("/cdn/shop/files/RAGE_1.TTF?v=1749759916");
  }
  
  /* Root Styling */
  :root {
    --c1: #5DBAE8;
    --c2: #DFF5FF;
    --f1: 'inter';
    --f2: 'poppins';
    --f3: 'rage-italic';
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  .img__contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .img__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* General Styling */
  
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: 'Roboto', sans-serif;
  }
  
  ::selection {
    background-color: var(--c1);
    color: #fff;
  }
  
  a {
    display: inline-block;
    color: #000;
    transition: all 300ms ease-in-out;
  }
  
  a:hover {
    color: #000;
  }
  
  ul,
  ol,
  dl {
    margin-bottom: 0;
    padding: 0;
  }
  
  
  p,
  li,
  a,
  span,
  input,
  input::placeholder,
  button {
    font-family: var(--f1);
  }
  
  
  .imgFluid {
    max-width: 100%;
    height: auto;
  }
  
  button {
    cursor: pointer;
    transition: all 300ms ease-in-out;
    outline: 0;
  }
  
  i.bx {
    font-family: boxicons;
    vertical-align: middle;
  }
  
  /* button style */
  
  .themebtn {
    padding: 12px 35px;
    background: var(--c1);
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px 1px var(--c1);
    z-index: 99;
    font-family: var(--f2);
  }
  
  .themebtn:hover {
    color: #000;
    box-shadow: none !important;
  }
  
  .themebtn::before {
    position: absolute;
    content: '';
  
  }
  
  .themebtn::after {
    position: absolute;
    content: '';
    width: 0;
    right: 0;
    height: 100%;
    background-color: var(--c2);
    top: 0;
    transition: 400ms ease;
    z-index: -1;
  }
  
  .themebtn:hover::after {
    width: 100%;
    left: 0;
  }
  
  .themebtn:hover span {
    animation: tada 1s;
  }
  
  @-webkit-keyframes shine {
    100% {
      left: 125%;
    }
  }
  
  @keyframes shine {
    100% {
      left: 125%;
    }
  }
  
  /* button style */
  
  
  /* header css start */
  
  .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
  }
  
  a.header__logo img {
    width: 96px;
    height: auto;
    object-fit: contain;
  }
  
  ul.header-main__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
  
  ul.header-main__nav li a {
    font-size: 17px;
    font-family: var(--f1);
    position: relative;
    text-transform: capitalize;
    font-weight: 400;
  }
  
  ul.header-main__nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--c2);
    transition: all 500ms;
  }
  
  ul.header-main__nav li a.active::after {
    width: 100%;
    left: 0;
  }
  
  ul.header-main__nav li a:hover::after {
    width: 100%;
    left: 0;
  }
  
  ul.header-main__nav li a:hover {}
  
  ul.header-main__nav li a.active {}
  
  
  /* header css end */
  
  /* baner css start */
  
  .home_banner {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    min-height: 85vh;
    margin: 0;
  }
  
  .banner_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .banner_cont {
    position: relative;
    color: #fff;
  }
  
  .banner_cont h6 {
    font-size: 26px;
    text-transform: capitalize;
    font-family: var(--f2);
    font-weight: 300;
  }
  
  .banner_cont h3 {
    font-size: 67px;
    font-family: var(--f2);
    text-transform: capitalize;
    margin: 10px 0px;
    font-weight: 600;
    line-height: 1.1;
  }
  
  .banner_cont p {
    font-size: 15px;
    width: 85%;
    margin-bottom: 25px;
  }
  
  /* baner css end */
  
  
  
  /* new css start */
  
  
  .top {
    width: 100%;
  }
  
  .search_form {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0px 0px 0px 1px gray;
    justify-content: space-between;
    padding-left: 10px;
    border-radius: 3px;

    position: relative;
  }
  
  .search_form input {
    background: transparent;
    height: 40px;
    width: 65%;
    padding: 13px;
    outline: 0;
    border: none;
    position: relative;
  }
  
  .search_form select {
    background: transparent;
    outline: 0;
    font-family: var(--f1);
    border: none;
    text-transform: capitalize;
    position: relative;
    font-size: 15px;
    padding: 9px 0px;
    font-weight: 500;
    cursor: pointer;
  }
  
  .search_form button {
    width: 45px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: var(--c1);
    outline: 0;
    border: none;
    margin-right: -2px;
  }
  
  .contact_info {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
  }
  
  .info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .info .content p {
    font-size: 13px;
    margin: 0;
  }
  
  .info .content h6 {
    margin: 0;
    font-size: 15px;
    font-family: var(--f1);
  }
  
  .content {
    line-height: 1.4;
    color: #ffffffd4;
  }
  
  .icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 37px;
    color: var(--c1);
  }
  
  .logo_main {
    text-align: center;
  }
  
  .top_bar {
    padding: 5px 0px;
    background: #000;
  }
  
  .top form::before {
    position: absolute;
    top: 50%;
    content: '';
    left: 27%;
    height: 54%;
    width: 1px;
    background: #0000002b;
    z-index: 99;
    transform: translateY(-50%);
  }
  
  .header {
    background: #DFF5FF;
  }
  
  .header_email {
    background: var(--c1);
  }
  
  .email_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
  }
  
  .email_main a {
    color: #fff;
    font-family: var(--f1);
    font-weight: 300;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .email_main select {
    background: transparent;
    outline: 0;
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: var(--f1);
    font-weight: 400;
    cursor: pointer;
  }
  
  .email_main select option {
    background: var(--c1);
  }
  
  
  .email_main a i {
    font-size: 23px;
    margin-right: 4px;
  }
  
  .email_main a b {
    font-weight: 600;
  }
  
  .banner_cont h3 span {
    font-family: var(--f3);
    font-size: 75px;
    font-weight: 200;
  }
  
  .banner_cont h5 {
    font-size: 30px;
    padding: 15px 15px;
    background: #000;
    text-align: center;
    font-family: var(--f2);
    font-weight: 400;
    border-radius: 8px;
    width: 68%;
    margin-top: 27px;
    margin-bottom: 40px;
  }
  
  .banner_btn {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .transparent {
    background: transparent;
    box-shadow: 0px 0px 0px 2px #fff;
  }
  
  .home_product {
    padding: 70px 0px;
    background: #f3f3f3;
  }
  
  .section_title h3 {
    font-size: 30px;
    text-transform: capitalize;
    font-family: var(--f2);
    font-weight: 800;
    margin: 0;
  }
  
  .section_title a {
    float: inline-end;
    font-family: var(--f2);
    font-size: 20px;
    text-decoration: underline !important;
  }
  
  .pro_cont h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 17px;
    font-family: var(--f2);
    font-weight: 700;
    margin: 0;
  }
  
  .pro_cont ul {
    display: flex;
    font-size: 10px;
    color: #FFC107;
    gap: 1px;
    margin: 6px 0px;
  }
  
  .pro_cont ul li span {
    color: gray;
  }
  
  .pro_cont h5 {
    font-size: 16px;
    font-family: var(--f2);
    font-weight: 700;
    margin-bottom: 14px;
  }
  
  .pro_cont h5 span {
    text-decoration: line-through !important;
    font-size: 13px;
    color: gray;
    margin-left: 20px;
  }
  
  .pro_cont h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 17px;
    font-family: var(--f2);
    font-weight: 700;
    margin: 0;
  }
  
  .pro_cont ul {
    display: flex;
    font-size: 10px;
    color: #FFC107;
    gap: 1px;
    margin: 6px 0px;
  }
  
  .pro_cont ul li span {
    color: gray;
  }
  
  .pro_cont h5 {
    font-size: 16px;
    font-family: var(--f2);
    font-weight: 700;
    margin-bottom: 14px;
  }
  
  .pro_cont h5 span {
    text-decoration: line-through !important;
    font-size: 13px;
    color: gray;
    margin-left: 20px;
  }
  
  .pro_cont {
    padding: 12px 10px;
    border: 1px solid #80808069;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-top: -7px;
  }
  
  .pro_cont .themebtn {
    padding: 8px 20px;
    margin: 0 auto;
    font-size: 13px;
    border-radius: 4px;
    display: block;
    text-align: center;
  }
  
  .product_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -3%;
    width: 40px;
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: transparent;
    outline: 0;
  }
  
  .product_slider .slick-next {
    right: -3%;
    left: auto;
  }
  
  .product_item {
    margin: 10px;
    overflow: hidden;
    border-radius: 14px;
  }
  
  .product_slider .slick-prev:before,
  .product_slider .slick-next:before {
    font-size: 60px;
    color: gray;
    transition: 500ms;
  }
  
  .product_slider .slick-prev:hover::before,
  .product_slider .slick-next:hover::before {
    color: var(--c1);
  }
  
  .pro_img {
    width: 100%;
    height: 155px;
    overflow: hidden;
    position: relative;
  }
  
  .pro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 500ms;
  }
  
  .section_title a:hover {
    color: var(--c1);
    letter-spacing: 1px;
  }
  
  .product_item:hover img {
    transform: scale(1.2);
  }
  
  /* timer css start */
  .countdown-box {
    background: var(--c2);
    border: 2px solid #000;
    border-radius: 10px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #000;
    box-shadow: 3px 3px 0 #000;
    font-family: var(--f2);
    font-weight: 700;
    position: relative;
  }
  
  .countdown-box img {
    width: 24px;
    margin-right: 10px;
  }
  
  .countdown-box span {
    margin: 0 5px;
  }
  
  /* timer css end*/
  
  .product_deals_main {
    padding: 50px 50px;
    background: #000;
    border-radius: 20px;
    position: relative;
  }
  
  .small_text h3 {
    font-size: 24px;
    font-weight: 500;
  }
  
  .deal_timer {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .countdown-box::before {
    position: absolute;
    content: '';
    width: 96%;
    height: 73%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid;
    border-radius: 10px;
  }
  
  .text-white a {
    color: #fff;
  }
  
  
  
  
  .deal_slider .slick-arrow {
    position: absolute;
    top: 50%;
    left: -8%;
    width: 50px;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: transparent;
    outline: 0;
    border-radius: 11px;
    background: #fff;
    transform: rotate(45deg) translateY(-50%);
  }
  
  .deal_slider .slick-next {
    right: -5%;
    left: auto;
  }
  
  .deal_slider .slick-prev:before,
  .deal_slider .slick-next:before {
    font-size: 60px;
    color: gray;
    transition: 500ms;
  }
  
  .deal_slider .slick-prev:hover::before,
  .deal_slider .slick-next:hover::before {
    color: var(--c1);
  }
  
  .deal_slider .slick-next:before {
    transform: rotate(-45deg);
  }
  
  .deal_slider .slick-prev:before {
    transform: rotate(-45deg);
  }
  
  
  .deal_pro .pro_img {
    height: 138px;
  }
  
  .deal_pro .pro_cont h4 {
    font-size: 14px;
    font-weight: 600;
    -webkit-line-clamp: 2;
  }
  
  .deal_pro .pro_cont {}
  
  .deal_pro .pro_cont h5 {
    font-size: 14px;
  }
  
  .deal_pro .pro_cont h5 span {
    font-size: 11px;
  }
  
  .deal_pro .pro_cont .themebtn {
    font-size: 10px;
    background: transparent;
    color: var(--c1);
  }
  
  .small_text a {
    font-size: 19px;
  }
  
  .product_deals_main::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 94px;
    background: #fff;
    top: 50%;
    left: 0;
  }
  
  .product_deals_main::after {
    position: absolute;
    content: '';
    width: 3px;
    height: 94px;
    background: #fff;
    top: 50%;
    right: 0;
  }
  
  .deal_pro {
    background: #fff;
  }
  
  .deal_pro .pro_cont .themebtn:hover {
    color: #fff;
  }
  
  .deal_pro .pro_cont .themebtn:hover::after {
    background: var(--c1);
  }
  
  
  .hover_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
  }
  
  .product_item:hover .hover_img {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .join_us {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 9vh;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
  
  
  .learn_how {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 9vh;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
  
  
  .join_us::before {
    position: absolute;
    content: '';
    width: 186px;
    height: 70px;
    background: url('../images/join_bubbles.png');
    top: 50%;
    left: 0;
    z-index: 9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    animation: join_bubbles 5s linear infinite;
  }
  
  .join_us::after {
    position: absolute;
    content: '';
    width: 159px;
    height: 67px;
    background: url('../images/join_bubbles2.png');
    top: 50%;
    right: 0;
    z-index: 9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    animation: join_bubbles 5s linear infinite;
  }
  
  @keyframes join_bubbles {
    0% {
      transform: scale(1) translateY(-50%);
    }
  
    50% {
      transform: scale(1.4) translateY(-50%);
    }
  
    100% {
      transform: scale(1) translateY(-50%);
    }
  }
  
  .join_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .join_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .join_cont {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .join_cont p {
    font-size: 20px;
    font-family: var(--f2);
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .join_cont a {
    font-size: 26px;
    color: #fff;
    text-decoration: underline !important;
    font-family: var(--f2);
  }
  
  .product_deals {
    padding: 70px 0px;
  }
  
  .learn_how_btn {
    font-size: 16px !important;
    font-weight: 300;
  }
  
  .bg_lightblue {
    background: var(--c2);
  }
  
  .info:hover .icon {
    animation: tada 700ms;
  }
  
  
  .slick-dots {
    bottom: 3rem;
    width: max-content;
    position: absolute;
    left: 11%;
  }
  
  .slick-dots li {
    width: auto;
    height: auto;
  }
  
  .slick-dots li button {
    width: 14px;
    height: 14px;
    background: rgba(128, 128, 128, 0.685);
    border-radius: 100%;
    box-shadow: 0px 0px 0px 1px transparent;
  }
  
  .slick-dots li button::before {
    display: none;
  }
  
  .slick-dots li.slick-active button {
    background: var(--c1) !important;
    box-shadow: 0px 0px 0px 1px #fff;
  }
  
  .bg_lightblue .themebtn:hover {
    box-shadow: 0px 0px 0px 1px gray !important;
  }
  
  
  .footer {
    padding: 20px 0 0;
    background: #000;
  }
  
  .foo_logo1 {}
  
  .foo_logo2 {
    width: 160px;
    height: auto;
    margin: 0 auto;
  }
  
  .footer_header {
    border-bottom: 1px solid #ffffff38;
    padding: 0px 0 20px;
  }
  
  .foo_news {
    font-size: 15px;
    font-family: var(--f1);
    color: #ffffff;
  }
  
  .foo_contactfield {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 0 0 0px 20px;
    border: 0;
    border-radius: 8px;
  }
  
  .foo_contactfield input {
    width: 60%;
    padding: 0;
    border: 0;
    height: 48px;
  }
  
  .foo_contactfield input:focus {
    outline: 0;
  }
  
  .foo_contactfield .themebtn {
    border: 0;
    outline: 0;
  }
  
  .foo_main {
    padding: 40px 0;
    border-bottom: 1px dashed #FFFFFF;
  }
  
  .foo_title {
    font-size: 24px;
    font-family: var(--f2);
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  
  .foo_list li a {
    font-size: 14px;
    font-family: var(--f2);
    color: #ffffff91;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    text-transform: capitalize;
    width: fit-content;
  }
  
  .foo_list li a i {
    font-size: 20px;
    color: #ffffff91;
    transition: 500ms;
  }
  
  .foo_icon i {
    color: #269FD4 !important;
  }
  
  .foo_list li a:before {
    position: absolute;
  }
  
  .foo_list li a:hover:before {
    width: 100%;
  }
  
  .copy__flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .copywrite {
    padding: 25px 0;
  }
  
  .copy__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .copy_text {
    font-size: 14px;
    font-family: var(--f1);
    color: #fff;
    margin: 0;
  }
  
  .foo_card {
    width: 200px;
    height: auto;
  }
  
  .in_season {
    padding: 70px 0;
  }
  
  .sea_crd {
    border: 1px solid #000;
    padding: 5px;
  }
  
  .sea_cont {
    padding: 20px;
  }
  
  li {}
  
  .sea_title {
    font-size: 25px;
    font-family: var(--f2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
  }
  
  .sea_title li {
    display: flex;
    align-items: center;
  }
  
  .sea_title ul {
    display: flex;
    align-items: center;
  }
  
  .sea_title ul li i {
    color: #FFB412;
    font-size: 17px;
  }
  
  .sea_title ul li:nth-child(5) i {
    color: lightgray !important;
  }
  
  .sea_title ul li:nth-child(6) {
    margin-left: 8px;
    font-size: 16px;
    font-family: var(--f1);
  }
  
  .sea_text {
    font-size: 16px;
    font-family: var(--f2);
    color: #000000f0;
    margin: 0;
  }
  
  .our_shop {
    padding: 70px 0px;
  }
  
  .shop__main {
    width: 100%;
    height: 392px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 28px;
    position: relative;
  }
  
  .shop__title {
    font-size: 41px;
    font-family: var(--f2);
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
  }
  
  .shop__cont {
    margin-left: 80px;
    position: relative;
    z-index: 1;
  }
  
  .shoip_text {
    font-size: 14px;
    font-family: var(--f2);
    color: #fff;
  }
  
  .foo_contactfield2 {
    width: 50%;
  }
  
  .foo_contactfield2 input {
    width: 62%;
  }
  
  .collection {
    padding: 70px 0;
  }
  
  .col_title {
    font-size: 20px;
    font-family: var(--f2);
    color: #222222;
  }
  
  .col_cont {
    padding: 18px;
    border-left: 1px solid #80808075;
    border-right: 1px solid #80808075;
    border-bottom: 1px solid #80808075;
    border-radius: 0px 0px 10px 10px;
  }
  
  .col_text {
    font-size: 15px;
    font-family: var(--f2);
  }
  
  .col__bt .themebtn {
    background: #fff;
    color: #000;
    padding: 7px 20px;
    font-size: 14px;
    text-transform: capitalize;
  }
  
  .col_image {
    width: 100%;
    height: 305px;
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0px 0px;
  }
  
  .col_image img {
    transition: 500ms all;
  }
  
  .collect_crd {
    border-radius: 10px;
    box-shadow: 0px 11px 15px 0px #d1d1d1;
  }
  
  .collect_crd:hover img {
    transform: scale(1.3);
  }
  
  .col_title2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .join_cont p img {
    width: 65px;
    height: auto;
  }
  
  .collec_items {
    margin: 40px 13px;
    background: #f4f4f4;
  }
  
  .foo_logo1 h3 {
    font-size: 42px;
    font-family: var(--f2);
    color: #fff;
    margin: 0;
    text-transform: capitalize;
  }
  
  .borders {
    position: relative;
  }
  
  .borders::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #ffffff54;
    left: -54px;
    top: 0;
  }
  
  .borders::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #ffffff54;
    right: 35px;
    top: 0;
  }
  
  .foo_list li a:hover i {
    color: #fff;
  }
  
  .foo_list li a:hover {
    color: #fff;
  }
  
  a.foo_icon {
    font-size: 18px !important;
    font-weight: 300;
  }
  
  a.foo_icon i {
    font-size: 26px !important;
  } 
  
  .collection_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -3%;
    width: 40px;
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: transparent;
    outline: 0;
  }
  
  .collection_slider .slick-next {
    right: -3%;
    left: auto;
  }
  
  .product_item {
    margin: 10px;
    overflow: hidden;
    border-radius: 14px;
  }
    
  .collection_slider .slick-prev:before,
  .collection_slider .slick-next:before {
    font-size: 60px;
    color: gray;
    transition: 500ms;
  }
  
  .collection_slider .slick-prev:hover::before,
  .collection_slider .slick-next:hover::before {
    color: var(--c1);
  }
  
  .col_hover_img {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
  }
  
  .collec_items:hover .col_hover_img {
      opacity: 1;
      visibility: visible;
      transform: none;
  }
  
  .shop__main::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, black, #0000004a, transparent);
      top: 0;
      left: 0;
  }
  
  section.about_us {}
  
  .about_us {
      padding: 70px 0px;
  }
  
  .about_img {
      width: 100%;
      height: 570px;
      position: relative;
  }
  
  .about_img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
  }
  
  .about_img::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: transparent;
      border: 3px solid #000000;
      left: -22px;
      top: 24px;
      z-index: -1;
      border-radius: 30px;
  }
  
  .about_cont h6 {
      font-size: 19px;
      font-family: var(--f1);
      font-weight: 500;
  }
  
  .about_cont h3 {
      font-size: 50px;
      font-family: var(--f2);
      font-weight: 700;
      text-transform: capitalize;
  }
  
  .about_cont p {
      font-size: 15px;
      line-height: 1.7;
  }
  
  .about_cont {
      padding-left: 44px;
  }
   
  .vission {
    padding: 70px 0px;
    background: #fff4f8;
    position: relative;
    overflow: hidden;
  }
  
  .vission::before {
    position: absolute;
    content: '';
    width: 250%;
    right: 66%;
    background: var(--c1);
    height: 100%;
    top: 0;
  }
  
  
  
  
  .vission_img {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .vission_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .vission_cont h6 {
    font-size: 18px;
    color: var(--c1);
    position: relative;
    border-bottom: 2px solid;
    font-weight: 500;
    font-family: var(--f1);
    text-transform: capitalize;
    margin-bottom: 5px;
    width: max-content;
  }
  
  .vission_cont h3 {
    font-size: 40px;
    margin: 0;
    font-family: var(--f2);
    color: #000;
    margin: 13px 0px;
  }
  
  .vission_cont p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 31px;
  }
  
  .vission_logo {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .vission_logo img {
    width: 100px;
  }
  
  .vission_img {
    width: 100%;
    height: 380px;
    overflow: hidden;
    padding: 0px 30px;
    position: relative;
    z-index: 1;
  }
  
  .vission_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .vission_cont h6 {
    font-size: 18px;
    color: var(--c1);
    position: relative;
    border-bottom: 2px solid;
    font-weight: 500;
    font-family: var(--f1);
    text-transform: capitalize;
    margin-bottom: 5px;
    width: max-content;
  }
  
  .vission_cont h3 {
    font-size: 40px;
    margin: 0;
    font-family: var(--f2);
    color: #000;
    margin: 13px 0px;
    font-weight: 500;
  }
  
  .vission_cont p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 31px;
  }


p#selected_category {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.cat_dropdown {
  position: absolute;
  width: 190px;
  height: auto;
  background: #000;
  left: 0px;
  top: 150%;
  z-index: 99;
  box-shadow: 0px 0px 23px 0px #ffffff;
  transition: 500ms;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
}

.cat_dropdown a {
  padding: 10px 18px;
  border-bottom: 1px solid #ffffff69;
  width: 100%;
  color: #fff;
  font-size: 13px;
}

.cat_dropdown.show {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.cat_dropdown a:hover {
    background: var(--c1);
}

.cat_dropdown::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    top: -5px;
    left: 10%;
    transform: rotate(45deg);
    z-index: -1;
}

p#selected_category::before {
    position: absolute;
    top: 50%;
    content: '';
    right: -18px;
    height: 100%;
    width: 1px;
    background: #0000002b;
    z-index: 99;
    transform: translateY(-50%);
}





p#header_category_para {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.header_category {
  position: absolute;
  width: 190px;
  height: auto;
  background: #000;
  left: 0px;
  top: 150%;
  z-index: 99;
  box-shadow: 0px 0px 23px 0px #ffffff;
  transition: 500ms;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
}

.header_category a {
  padding: 10px 18px;
  border-bottom: 1px solid #ffffff69;
  width: 100%;
  color: #fff;
  font-size: 13px;
}

.header_category.show {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.header_category a:hover {
    background: var(--c1);
}

.header_category::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    top: -5px;
    left: 10%;
    transform: rotate(45deg);
    z-index: -1;
}

p#header_category_para::before {
    position: absolute;
    top: 50%;
    content: '';
    right: -18px;
    height: 100%;
    width: 1px;
    background: #0000002b;
    z-index: 99;
    transform: translateY(-50%);
}

.category_dropdown{
  position: relative;
}
.header_category_main{
  position: relative;
}

/* developer css */

.header {
  display: block;
}
.info .content h6 {
  color: white;
}

.banner_cont h3 {
  color: white;
}
.banner_cont h6 {
  color: white;
}
.banner_cont h5 {
  color: white;
  text-align: left;
  font-size: 28px;
}


.product_deals_main {
  padding: 40px;
}




input#NewsletterForm--template--23442088067379__cus_newsletter_sec_KcE8k9
Specificity: (1,0,1){
    width: 380px;
    margin-left: -3px;
}

button#Subscribe {
    padding: 25px 66px;
    background: var(--c1);
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px 1px var(--c1);
    z-index: 99;
    font-family: var(--f2);
    margin-left: 161px;
    margin-top: 1px;
}

.field::after, .select::after, .customer .field::after, .customer select::after, .localization-form__select::after {
    box-shadow: none !important;
}