@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
  background: #f8f8f8;
}



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

 

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

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Ranua Trials Regular';
  src: url(../fonts/ranuatrials-regular.otf);
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5{
  margin-top: 50px;
}
.mb-5{
  margin-bottom: 50px;
}
.mt-8{
  margin-top: 80px;
}
.mt-4{
  margin-top: 40px;
}
.mt-3{
  margin-top: 30px;
}
.mt-2{
  margin-top: 20px;
}
.pt-5{
  padding-top: 50px;
}
.pb-1{
  padding-bottom: 10px;
}
.pb-2{
  padding-bottom: 20px;
}
.pb-3{
  padding-bottom: 30px;
}
.pb-4{
  padding-bottom: 40px;
}
.pb-8{
  padding-bottom: 80px;
}

.m-0{
  margin: 0 !important;
}

.p-0{
padding: 0 !important;
}
  
.pt-8{
  padding-top: 80px;
}
.pt-4{
  padding-top: 40px;
}
.pt-3{
  padding-top: 30px;
}
.pt-2{
  padding-top: 20px;
}
.all-section{
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.img-fluid{
  width: 100%;
}

.d-flex{
  display: flex;
  align-items: center;
}

.over-flow-h{
  overflow: hidden;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
 font-family: 'Ranua Trials Regular';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
 font-family: 'Ranua Trials Regular';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
 font-family: 'Ranua Trials Regular';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
 font-family: 'Ranua Trials Regular';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

p{
  color: #41ACCA;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  margin: 0px;
}

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 */
.topSec{
  position: relative;
  padding: 20px 0;
}
.topSec .row{
  align-items: center;
}
.topSec .tel{
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
.topSec img{
  margin: 0% auto;
  display: flex;
  height: 100px;
}
.topSec ul{
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.topSec ul a{
  color: #000;
  padding: 0 20px;
  font-size: 25px;
}

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 10px;
}

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

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
}

/*.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}*/

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

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

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

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

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

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */



section.main_slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    clip-path: polygon(50% 0%, 99% 0, 100% 43%, 100% 100%, 49% 100%, 49% 80%, 0 80%, 0% 43%, 0 0);
}
.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 {
    justify-content: flex-start;
    margin: 0;
    left: 9%;
    bottom: 8%;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent;
    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;
    border: 2px solid #000;
    border-radius: 0;
}
.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: #000;
  width: 15px;
  height: 15px;
}
/*banner css end*/

 /* search box css */


.top-shipping ul li {
  margin-right: 15px;
}
.top-shipping ul{
  align-items: baseline !important;
}


body.search-open {
  overflow: hidden;
}

.close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: 0;
  font-size: 50px;
  font-weight: 700;
  display: block;
  cursor: pointer;
  color: black;
  padding: 1rem 1.25rem;
  border-radius: 50%;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font: 18px;
  opacity: 1 !important;
  width: 50px;
  height: 50px;
}
.close:hover {
    background: #000;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #000000b0;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.search-box.search-elem .inner {
  width: 70%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}
.search-box.search-elem label {
  color: white;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
}
.search-box.search-elem button.submit {
  outline: none;
  position: absolute;
  top: 0;
  right: 15px;
  height: 70px;
  color: #ffffff;
  width: 171px;
  height: 55px;
  background: #000000;
  font-family: 'Poppins';
  font-size: 22px;
  cursor: pointer;
  border: 0;
}

.top-cart ul li i {
  margin-right: 13px;
  font-size: 20px;
}


.search-box.search-elem button.submit[disabled] {
  width: 171px;
  height: 55px;
  font-size: 20px;
  color: white;
  display: inline-block;
}
.search-box.search-elem input[type=text] {
  padding: 20px;
  height: 55px;
  width: 80%;
  font-size: 32px;
  font-family: 'Poppins';
  font-weight: 300;
  border: none;
  border-bottom: solid 2px #000;
  transition: border 0.3s;
  border-radius: 0;
}
.search-box.search-elem input[type=text]:focus {
  border-bottom: solid 2px #55cd6c;
  box-shadow: none;
}
.search-box.search-elem label.placeholder {
  position: absolute;
  top: 13px;
  left: 2rem;
  font-size: 25px;
  font-weight: 300;
  font-family: 'Poppins';
  color: #999;
  transition: all 0.3s;
  font-weight: 400;
  font-style: italic;
}
.search-box.search-elem label.placeholder.move-up {
  top: -35px;
  color: white;
  font-size: 20px;
  font-family: 'Poppins';
}

.search-box.search-elem.search-open {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.search-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  padding: 0 10px;
  display: inline-block;
  color:white;
}
 .material-icons {
  position: relative;
  z-index: 100;
}
 .left-arrow {
  transition: transform 0.4s ease;
  transition-delay: 0s;
  transform: translateX(-100px);
}
.js-click{
  cursor: pointer;
}

.material-icons {
  color: #000;
  font-size: 25px;
  padding-left: 20px;
}

.sidebar-b {
  padding: 40px;
  z-index: 99;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 600px;
  background: #000000d6;
  color: white;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.sidebar-b .left-arrow {
  transform: translateX(-30px);
}
.sidebar-b .close-button {
 position: absolute;
    right: 50px;
    top: 50px;
    font-size: 40px;
    transition: 0.3s all;
}
.sidebar-b ul {
  margin-top: 20px;
  list-style: none;
  display: block;
}
.sidebar-b ul li {
    font-size: 20px;
    margin: 1.5em 0;
    display: block;
    text-align: left;
}
.sidebar-b ul li a:hover{
  color: #fff;
}
.sidebar-b ul li a{
  font-weight: 500;
  font-size: 30px;
  transition: 0.3s ease-in-out;
  color: #fff;
}

.active .sidebar-b {
  transform: none;
  transition-delay: 0.4s;
}
.sidebar-b img {
    filter: invert(1);
    margin: 0 0 0 20px;
     width: 300px;
}
.active header > .left-arrow {
  transition-delay: 0s;
  transform: translateX(-30px);
}

.banner_text{
  position: relative;
  padding-top: 200px;
}
.banner_text h2::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 5px;
  background-color: #fff;
  width: 150px;
}
.banner_text h2{
  color: #fff;
  font-size: 40px;
  letter-spacing: 4px;
  font-family: 'Ranua Trials Regular';
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.banner_text p{
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  width: 70%;
}

/*home pages section*/
  .provide-sec{
    position: relative;
    margin-top: -100px;
  }
  .provide-sec .row{
    align-items: flex-end;
  }
  .provide-sec h3{
    text-align: center;
    color: #000000;
    font-size: 35px;
    text-transform: uppercase;
    line-height: 40px;
  }
  .provide-sec h3 span{
    display: block;
  }
  .provide-sec p{
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }

  /*multip-pro-sed*/
    .multip-pro-sed{
      position: relative;
    }
    .multip-pro-sed .row{align-items: flex-end;}
    .themes-padd{
      padding: 80px 0;
    }
    .multip-box{
      background: #ebebeb;
      padding: 30px 20px;
      margin: 5px 0;
    }
    .multip-box .row{
      align-items: flex-end;
    }
    .mulit-sli .slick-slide{opacity: 1;}
    .mulit-sli .slick-dots li.slick-active button:before{opacity: 0;}
    .mulit-sli .slick-dots li.slick-active button{background: #000;}
    .mulit-sli .slick-dots li button:before{opacity: 0;}
    .mulit-sli .slick-dots li button{height: 15px;width: 15px;border:2px solid #000;transition: 0.3s ease-in-out;}
    .mulit-sli .slick-active{opacity: 1;}
    .multip-box h4{
      color: #000000;
      font-size: 23px;
      font-family: 'Ranua Trials Regular';
      font-weight: 600;
      text-transform: uppercase;
    }
    .multip-box h5{
      color: #000000;
      font-size: 18px;
      display: inline-block;
      border-bottom: 2px solid #000;
    }
    .multip-box.size::before{
      content: '';
      position: absolute;
      left: 0;
      top:20%;
      height: 80%;
      width: 100%;
       background: #ebebeb;
       z-index: -1;
    }
    .multip-box.size {
    height: 400px;
    margin-bottom: 100px;
    background-color: transparent;
    position: relative;
    }
    .multip-box.size h5{
      margin-bottom: 100px;
    }

    .mulit-sli.top-left-bot .slick-dots{
      bottom: inherit;
      top: 15%;
      left: 0;
      width: 15%;
    }
    .mulit-sli.top-right-bot .slick-dots{
      bottom: inherit;
      top: 5%;
      left: inherit;
      right: 0;
      width: 15%;
    }
  /*multip-pro-sed*/

  /*true-self-sec*/
    .true-self-sec{
      position: relative;
      margin: 40px 0;
      background-image: url('../images/true-self-sec-bg.png');
      padding: 180px 0;
      background-attachment: fixed;
      background-position: top center;
    }
    .true-self-sec h3::before{
      content: '';
      position: absolute;
      left: 0;
      bottom: -30px;
      height: 5px;
      width: 150px;
      background: #fff;
    }
    .true-self-sec h3{
      color: #fff;
      font-size: 40px;
      font-weight: 500;
      letter-spacing: 3px;
      line-height: 45px;
      margin-bottom: 50px;
      position: relative;
      text-transform: uppercase;
    }
    .true-self-sec h3 span{
      display: block;
    }
    .true-self-sec p{
      color: #fff;
      font-size: 15px;
      font-weight: 400;
      font-family: 'Poppins';
      margin-bottom: 20px;
    }
    .true-self-sec a{
      color: #fff;
      letter-spacing: 3px;
      font-size: 30px;
      display: inline-block;
      border-bottom: 2px solid #fff;
      text-transform: uppercase;
    }
  /*true-self-sec*/

  .testiomal-sec{
    position: relative;
  }
  .testiomal-sec h2{
    color: #000;
    font-size: 85px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .testiomal-sec p{
    color: #000;
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .testiomal-sec h5{
    color: #000;
    font-size: 30px;
    font-weight: 600;
    margin: 30px 0;
    text-transform: uppercase;
  }
  .testiomal-sec h5 span{
    display: block;
    font-size: 14px;
  }
  .tetsiomal-sli .slick-slide{
    opacity: 1;
    margin: 0 5px;
  }
  .tetsiomal-b::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    transition: 0.3s ease-in-out;
    opacity: 0;  
    z-index: 1;
  }
  .tetsiomal-b:hover::before{opacity: 0.5}
  .tetsiomal-b{
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  .tetsiomal-b:hover img{
    transform: scale(1.2);
  }
  .tetsiomal-b img{
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in-out;
  }

  .testiomal-sec h6{
    margin-top: 30px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
  }
  .testiomal-sec h3{
    color: #000;
    font-size: 50px;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  .testiomal-conn p{
    font-size: 18px;
    line-height: 30px;
  }
  .testiomal-conn .slick-prev, .testiomal-conn .slick-next{
    top: inherit;
    bottom: -25%;
  }
  .testiomal-conn .slick-prev{
    left: 5%;
  }
  .testiomal-conn .slick-next{
    right: inherit;
    left: 25%;
  }
  .testiomal-conn .slick-prev::before{
    content: '\f053';
  }
  .testiomal-conn .slick-next::before{
    content: '\f054';
  }
  .testiomal-conn .slick-prev::before, .testiomal-conn .slick-next::before{
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border:2px solid #000;
    color: #000;
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
  }


  /*checkour-hats-sec*/
    .checkour-hats-sec{
      position: relative;
    }
    .checkour-hats-sec h2{
      color: #000;
    font-size: 85px;
    font-weight: 600;
    text-transform: uppercase;
    }
    .checkour-hats-sec .nav-tabs{
      justify-content: center;
      padding: 15px 0;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
    }

    .checkour-hats-sec .nav-tabs .nav-link{
      border:0;
      padding: 0;
      color: #000;
      padding: 0 20px;
      transition: 0.3s ease-in-out;
    }
    .checkour-hats-sec .nav-tabs .nav-link.active{
      font-weight: 600;
    }
    .checkour-hats-sec .tab-content{
      padding-top: 40px;
    }
    .product-b{
      position: relative;
    }
    .product-b .product-img{
      overflow: hidden;
      height: 350px;
      background: #ebebeb;
      margin-bottom: 10px;
      display: grid;
      align-content: center;
      justify-content: center;
      position: relative;
    }
    .product-b .product-img h6{
      margin: 0;
      position: absolute;
      color: #000;
      background-color: #fff;
      padding: 5px 5px;
      font-size: 12px;
      font-weight: 600;
      left: 10px;
      top: 10px;
    }
    .product-b:hover .product-img img{
      transform: scale(1.2);
    }
    .product-b .product-img img{
      transition: 0.3s ease-in-out;
    }
    .product-b .product-txt h4{
      color: #000000;
      font-size: 25px;
      font-weight: 500;
      margin-bottom: 5px;
      text-transform: uppercase;
    }
    .product-b .product-txt p{
      color: #000000;
      font-size: 14px;
      font-weight: 500;
    }
    .product-b .product-txt a{
      display: inline-block;
      letter-spacing: 2px;
      color: #000000;
      font-size: 15px;
      text-transform: uppercase;
      font-weight: 600;
      border-bottom: 2px solid #000;
    }
  /*checkour-hats-sec*/

  /*news-letter-sec*/
    .news-letter-sec{
      position: relative;
      padding-bottom: 80px;
    }
    .news-letter-sec .row{
      align-items: center;
    }
    .news-letter-sec .news-box{
      background: #ffffff85;
    padding: 40px 20px;
    box-shadow: 0 0 10px 0 #00000022;
    margin-right: -100px;
    z-index: 1;
    position: relative;
    }
    .news-letter-sec .news-box h2{
      color: #000;
      font-size: 90px;
      font-weight: bold;
      text-transform: uppercase;
      line-height: 95px;
      text-align: center;
    }
    .news-letter-sec .news-box h2 span{
      display: block;
      color: #000;
      font-weight: 400;
    }
    .news-letter-sec form{
      width: 100%;
      display: flex;
      border-bottom: 5px solid #000;
    }
    .news-letter-sec form input{
      width: 75%;
      padding: 10px 15px;
      border:0;
      background: transparent;
      color: #000;
    }
    .news-letter-sec form button{
      border:0;
      width: 25%;
      color: #000;
      background-color: transparent;
      font-size: 14px;
      font-weight: 600;
      text-transform: capitalize;
    }
  /*news-letter-sec*/

  /*fotter-sec*/
    .fotter-sec{
      position: relative;
      padding-top: 70px;
      background-image: url("../images/fotter-sec-bg.png");
    }
    .fotter-sec img{
      margin: 0% auto;
      display: block;
      filter: invert(1);
      margin-bottom: 20px;
      width: 400px;
    }
    .fot-content{
      margin: 30px 0;
      padding:60px 120px;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff;
      text-align: center;
    }
    .fot-content p{
      color: #fff;
      margin: 0;
      font-size: 22px;
      line-height: 40px;
    }
    .nav-list{
      display: flex;
      justify-content: space-between;
      margin: 0;
    }
    .nav-list li a{
      color: #fff;
      font-size: 16px;
      font-weight: 500;
    }
    .socail{
      display: flex;
      justify-content: center;
      margin: 0;
    }
    .socail li{
      margin-right: 25px;
    }
    .socail li:last-child{
      margin-right: 0;
    }
    .socail li a{
      color: #fff;
      font-size: 25px;
    }
    .copy-write{
      align-items: center;
      height: 100px;
    }
    .copy-write p{
      text-align: right;
      margin: 0;
      padding: 0;
      font-size: 15px;
      color: #fff;
    }

  /*fotter-sec*/

/*home pages section*/

/*inner pages*/
.banner_text.inner {
    padding-top: 0;
}
.banner_text.inner h3{
  color: #fff;
  font-size: 70px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}
.banner_text.inner h3::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  height: 5px;
  width: 10%;
  background: #fff;
}
.provide-sec.inner {
    margin: 0;
    padding: 80px 0;
}
.provide-sec.inner .row{
  align-items: center;
}
.about-us-sec{
  position: relative;
  padding: 60px 0;
}
.about-us-sec h3{
  color: #000000;
  font-size: 95px;
  font-weight: 600;
  line-height: 100px;
}
.about-us-sec p{
  color: #000000;
  font-size: 18px;
  line-height: 35px;
}
.product-sec .product-b {
    margin-bottom: 40px;
}
/*product-detail-sec*/
.product-detail-sec{
  position: relative;
}
.product-detail-sec .d-flex i{
  color: #000;
  font-size: 25px;
  margin-right: 5px;
}
.product-detail-sec h4{
  color: #000000;
  font-size: 60px;
  line-height: 80px;
  text-transform: uppercase;
  font-family: 'Poppins';
  margin: 0;
}
.product-detail-sec h3{
  color: #000;
  font-size: 35px;
  font-weight: 600;
}
.product-detail-sec p{
  color: #000;
  font-size: 18px;
  line-height: 35px;
}
.product-detail-sec .detail-sli .slick-slide{
  opacity: 1;
  margin: 0 5px;
}
.product-detail-sec .detail-sli-conn .slick-slide{
  opacity: 1;
  margin: 10px 5px;
}

.tabs-sec {
    padding-top: 20px;
}
.tabs-sec .nav-tabs .nav-link{
  background-color: #ebebeb;
  border:0;
  padding: 12px 25px;
  transition: 0.3s ease-in-out;
  color: #000;
  font-weight: 600;
  margin: 0 10px;
  border-radius: 0;
}
.tabs-sec .nav-tabs .nav-link.active{
  background-color: #000;
  color: #fff;
}
.tabs-sec .nav-tabs {
    border-bottom: 2px solid #c6c6c6;
    padding: 25px 0;
}
.tabs-sec .tab-content{
  margin-top: 30px;
}
.tabs-sec p{
  color: #000;
  font-size: 18px;
  line-height: 35px;
}
/*product-detail-sec*/

/*CART*/
.add-to-cart{
  position: relative;
  padding: 120px 0px;
}

.add-to-cart thead {
    background-color: #000;
    color: #fff;
}
.add-to-cart .table>thead>tr>th {
    border-bottom: 0;
    padding-left: 30px;
    padding-bottom: 25px;
    padding-top: 25px;
    font-family: 'Poppins';
}
.table-space {
    display: flex;
    align-items: center;
}
.add-to-cart thead tr th {
    font-size: 20px;
    color: #fff;
    font-family: 'Marcellus Regular';
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}
.add-to-cart thead tr th:first-child{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.add-to-cart thead tr th:last-child{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.table-space h3 {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 30px;
}
.table-space span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    font-family: 'Cerebrisans Regular';
}
.product-img {
    display: inline-block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}
.no-space{
  display: block;
  margin-left: 15px;
}
.product-img img{
  width: 100%;
  border-radius: 20px;
}
.add-to-cart .product-img img{
  border-radius: 25px;
  padding: 20px;
}
.add-to-cart input {
    width: 100%;
    text-align: center;
    height: 49px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    font-size: 23px;
    color: #000;
    font-weight: 500;
    margin-top: 24px;
    background-color: #fafafa;
}
.add-to-cart a {
    font-size: 17px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 500;
    text-decoration: none;
    color: #000;
    font-family: 'Poppins';
}
.add-to-cart h4 {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-top: 40px;
    font-family: 'Poppins';
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
tr.space {
    border-bottom: 1px solid #ccc;
}
a.remove {
    background: #b7c75e;
    color: #fff;
    font-size: 29px;
    padding: 0px 15px;
    border: 1px solid #b7c75e;
    margin-top: 25px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proceed a {
    color: #000;
    text-align: right;
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 500;
    text-transform: uppercase;
}
.proceed i {
    margin-left: 10px;
}
.proceed .checkout-btn {
    background-color: #000;
    border: none;
    padding: 16px;
    border-radius: 50px;
    width: 100%;
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 500;
    margin-top: 4px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
.or-amazon {
    margin-top: 50px;
    position: relative;
    border: 1px solid #000;
    /* top: 25px; */
    padding: 30px 50px;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.or-amazon p {
    font-size: 16px;
    position: absolute;
    background: #fff;
    top: -18px;
    left: 50%;
    padding: 2px 7px;
    color: #000;
    display: block;
    text-transform: uppercase;
    font-family: 'Poppins';
    transform: translateX(-50%);
    border: 1px solid #000;
}
.or-amazon img{
  width: 80%;
}
.or-amazon a {
    text-decoration: none;
    text-align: center;
}
.total-section {
    border: 1px solid #e5e5e5;
    padding: 27px 20px;
    background-color: #f9f9f9;
}
.total-section li {
    font-size: 18px;
    padding-bottom: 20px;
    font-family: 'Poppins';
    color: #000;
    font-weight: 500;
}
li.color-change {
    color: #000;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 600;
    margin: 0;
}
.total-section li span {
    float: right;
}
.ship-estimate {
    background-color: #f9f9f9;
    padding: 10px 20px;
    margin-top: 10px;
    border: 1px solid #e5e5e5;
}
.ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 50px;
}
.ship-estimate li {
    font-size: 23px;
    color: #000;
    margin-bottom: 5px;
    font-family: 'Poppins';
    font-weight: 600;
}
.ship-estimate .grey-style {
    color: #000;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
}
/*CART END*/

/*CHECKOUT PAGE*/
.billing_form h3{
  
font-size: 32px;
  
color: #000;
  
margin: 0;
  
margin-bottom: 20px;
  
text-transform: capitalize;
  
font-family: 'Ranua Trials Regular';
  
font-weight: 500;
}
.billing_form label{
  font-size: 16px;
  color: #000;
  font-family: 'Poppins';
  margin-bottom: 5px;
  font-weight: 500;
}

.radiosss p {
  color: #7C7C7C;
  font-size: 12px;
  line-height: 25px;
  font-family: 'Poppins';
  font-weight: 400;
  background: #f8f8f8;
}

.billing_form  input{
  width: 100%;
  height: 45px;
  border: 1px solid #dddddd;
  margin-bottom: 20px;
  padding-left: 15px;
  background-color: #f8f8f8;
  color: #000;
  font-family: 'Poppins';
}
.billing_form  input::placeholder{
  color: #b0b0b0;
  font-family: 'Roboto';
}

.cart_sidebar .cart_lst li:not(:last-child){
  margin-bottom: 15px;
}
.cart_sidebar .cart_lst li{
  font-size: 14px;
  color: #7c7c7c;
  font-family: 'Poppins';
}
.cart_sidebar .cart_lst li span{
  float: right;
}
.cart_sidebar .cart_lst li:last-child{
  font-size: 18px;
  font-weight: 500;
  color: #000;
  font-family: 'Poppins';
}
.cart_sidebar .cart_lst{
  margin-top: 20px;
  margin-bottom: 40px;
}


 
.thankyou_txt{
  padding: 50px;
  border: 2px solid #b7b7b7;
}
.thankyou_txt h3{
  font-size: 35px;
  color: #000;
  font-weight: 800;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.thankyou_txt h3 i{
  font-size: 40px;
  margin-right: 15px;
}
.order_det h5{
  font-size: 20px;
  color: #7c7c7c;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}
.order_det p{
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin: 0;
}
.order_complete_detail h3{
  font-size: 22px;
  color: #000;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}
.order_detail_table{
  padding: 40px;
  border: 1px solid #b7b7b7;
}
.order_detail_table h5{
  margin-top: 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  font-family: 'Roboto', sans-serif;
}
.order_detail_table ul{
  margin-top: 20px;
  margin-bottom: 30px;
}
.order_detail_table ul li:not(:last-child){
  margin-bottom: 25px;

}
.order_detail_table ul li{
  font-size: 14px;
  color: #7c7c7c;
}
.order_detail_table ul li span{
  float: right;
}
.order_detail_table ul li:last-child{
  font-weight: 700;
  color: #000;
}
.order_detail_table h6{
  font-size: 17px;
  font-weight: 700;
  color: #000;
  font-family: 'Roboto', sans-serif;
  padding:25px 0;
  border-top: 1px solid #dbdbdb;
  margin: 0;

}
.order_detail_table h6 span{
  float: right;
}

.check_menu ul{
  text-align: center;
  margin-bottom: 40px;
}
.check_menu ul li{
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #7c7c7c;
  margin: 0 14px;
}
.check_menu ul li i{
  font-size: 18px;
}
.check_menu ul li.purp{
  color: #700ea3;
}


.cart_sidebar{
  padding: 40px 25px;
  border: 1px solid #d8d8d8;
}
.cart_sidebar h3{
  font-size: 27px;
  margin-top: 0px;
  margin-bottom: 20px;
  text-transform: capitalize;
  line-height: normal;
  font-family: 'Ranua Trials Regular';
  font-weight: 500;
}
.cart_sidebar .h-sub{
  font-weight: 500;
  color: #000;
  font-size: 24px;
  padding-bottom:15px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  font-family: 'Poppins';
}
.cart_sidebar h5 span{
  float: right;
}
.cart_sidebar h4{
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: normal;
  padding-top: 0;
  font-family: 'Poppins';
}

.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: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #b7b7b7;
}

.cart_sidebar ul li label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #b7b7b7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.cart_sidebar ul li input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cart_sidebar ul li:not(:last-child){
  margin-bottom: 15px;
}
.cart_sidebar form{
  margin-top: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #b7b7b7;
}
.cart_sidebar form h4{
  font-size: 14px;
  font-weight: 400;
  color: #b7b7b7;
  font-family: 'Roboto', sans-serif;
}
.cart_sidebar form select{
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius:0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance:auto;
  color: #b7b7b7;
}
.cart_sidebar form select option{
  color: #000;
}
.cart_sidebar form input{
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius:0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance:auto;
  color: #b7b7b7;
}
.cart_sidebar form input::placeholder{
  color: #b7b7b7;
}
.cart_sidebar form button{
  color: #000;
  font-size: 15px;
  border-radius: 0px;
  font-family: 'Poppins', sans-serif;
  padding: 10px 40px;
  background-color: #ebebeb;
  border: 2px solid #ebebeb;
}
.cart_sidebar form button:hover{
  background-color: transparent;
  transition: 0.3s ease-in-out;
}
.checkout_btn{
   padding: 12px 50px;
   display: block;
   width: 100%;
   text-align: center;
   color: #fff;
   font-family: 'Oswald', sans-serif;
   font-size: 17px;
   border: none;
   background-color: #000;
   font-weight: 500;
   border: 2px solid transparent;
   transition: 0.3s ease-in-out;
}
.checkout_btn:hover{
  background-color: #000;
  color: #fff;
  transition: 0.3s ease-in-out;
}


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

h6.payment-h {
  font-weight: 600;
  color: #000;
  font-size: 16px;
  margin-bottom: 30px;
  font-family: 'Poppins';
}




  .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: #000;
}
  
  .red{
    color: #000 !important;
  }
 

.radiosss-payments .card.card-body {
  padding: 0;
  border: 0;
  margin-left: 30px;
}

.radiosss-payments {
  border-bottom: 1px solid rgb(219, 219, 219);
}
.billing_form {
    padding: 20px;
    border: 1px solid #d8d8d8;
}


/*CHECKOUT PAGE END*/

/*PAGE: CONTACT PAGE CSS STRT*/
.contact-page {
  padding: 80px 0px;
  background-image: url('../images/contact_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.get-in-touch {
    border-radius: 0;
    padding: 30px;
    background-image: url(../images/c1.jpg);
    object-fit: contain;
    background-position: unset;
    background-repeat: no-repeat;
}

.get-in-touch h2 {
    font-size: 51.57px;
    font-family: 'Poppins';
    font-weight: 500;
    padding-bottom: 0;
    color: #fff;
    margin: 0 0 10px;
        text-transform: capitalize;
}

.get-in-touch p {
  color: #fff;
  font-size: 15px;
  line-height: 31px;
}

.contact-socail {
  padding-top: 10px;
}

.contact-socail i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    background-color: #0000008c;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    transition: 1s ease-in-out;
    margin-top: 0;
}

.contact-socail i:hover {
  transform: rotate(360deg);
}

.contact-socail h6 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 28px;
}

.contact-socail a {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

.requet-quote {
  padding: 30px 30px 42px 30px;
  background: #ebebeb;
  box-shadow: 0px 0px 6px #0000003d;
  border-radius: 0;
}
.contact-page .requet-quote:placeholder{
    color: #000 !important;
}
button.btn_theme.d-inline-flex.mt-4 {
    width: 25%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 6px;
    color: #fff;
    background: #000;
}
.requet-quote h2 {
    color: #000;
    font-size: 57.18px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
}

.requet-quote h2:before {
  content: '';
  height: 50px;
  width: 6px;
  background-color: #000;
  left: -30px;
  /*top: 8px;*/
  position: absolute;
}

.requet-quote input {
  width: 100%;
  border: 0;
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 17px;
}

.requet-quote a {
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  background-color: #ee202a;
  line-height: 120px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.requet-quote a:hover {
  padding: 10px 50px;
}

.login-forms {
  padding: 70px 0px;
  background: #f7f7f7;
}

.form-box {
  background-color: #f8f8f8;
  padding: 20px 50px;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  box-shadow: 0px 0px 20px #00000021;
}

.form-box h2 {
  color: #000000;
  font-size: 34px;
  text-align: center;
}

.form-box input {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  width: 100%;
  border-radius: 5px;
  padding: 13px 20px;
  margin-top: 20px;
}

.form-box ::placeholder {
  color: #cacaca;
  font-size: 16px;
}
.requet-quote input::placeholder {
    color: #000;
}   

.form-box label {
  color: #000000;
  font-size: 14px;
}

.f-flex-s {
  display: flex;
}

.coloum1 {
  width: 45%;
}

.coloum2 {
  width: 45%;
  margin-left: 10%;
}

.btn-form {
  color: #fff;
  background-image: linear-gradient(to right, #1cf0f5, #2f3f9b);
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  border-radius: 5px;
  display: block;
  width: 100%;
  padding: 13px 20px;
  border: 0px;
}

.social {
    display: flex;
    align-items: center;
        margin-top: 40px;
}
ul.social_link {
    display: flex;
    align-items: center;
}
.social h3 {
    font-size: 19.4px;
    color: #fff;
}

ul.social_link i {
    font-size: 20px;
    background: none;
    padding: 0;
    width: 50px;
    height: 0;
}

/*PAGE: CONTACT PAGE CSS END*/
/*inner pages*/


/*media query*/
@media only screen and (max-width: 1440px) {
  .banner_text{
        padding-top: 100px;
  }
}
@media only screen and (max-width: 1220px) {
  .banner_text h2{
    font-size: 30px;
    line-height:35px;
  }
}
@media only screen and (max-width: 1024px) {
  .menuSec ul li a{
        padding: 10px 20px;
  }
  .provide-sec{
    margin-top: -40px;
  }
  .provide-sec h3{
    line-height: 30px;
    margin-bottom: 5px;
    font-size: 25px;
  }
  .multip-box{
        padding: 10px 20px;
  }
  .multip-box.size h5 {
    margin-bottom: 0;
}
.multip-box.size::before{
  top: 0;
      height: 85%;
}
.multip-box.size{
      margin-bottom: 0;
}
.mulit-sli.top-right-bot .slick-dots{
      width: 35%;
}
.themes-padd {
    padding: 40px 0;
}
.testiomal-sec h3{
      font-size: 35px;
}
.product-b .product-img{
      height: 250px;
}
.product-b .product-img img{
  height: 130px;
      object-fit: contain;
}
.product-b .product-txt p{
      line-height: 25px;
}


}
@media only screen and (max-width: 920px) {
  .menuSec ul li a {
    padding: 10px 10px;
    font-size: 14px;
}
.banner_text {
    padding-top: 0;
}
.provide-sec img {
    margin: 0% auto;
    display: block;
}
.provide-sec h3 {
    line-height: 50px;
    margin: 15px 0;
    font-size: 40px;
}
.multip-pro-sed img {
    display: block;
    margin: 0% auto;
}
.multip-box.size{
      margin-bottom: 100px;
}
.multip-box.size::before {
    height: 100%;
}
.multip-box .row {
    align-items: center;
}
.true-self-sec{
      background-position: top right;
          padding: 100px 0;
              text-align: center;
}
.testiomal-sec {
    text-align: center;
}
.testiomal-conn .slick-next {
    right: inherit;
    left: 50%;
    transform: translate(-50%, -10px);
    z-index: 1;
}
.testiomal-conn .slick-prev {
    left: 40%;
    transform: translate(-50%, -10px);
    z-index: 1;
}
.checkour-hats-sec h2{
      font-size: 60px;
          margin: 20px 0;
}
.checkour-hats-sec .nav-tabs .nav-link.active {
    font-weight: 600;
    background: transparent;
}
.checkour-hats-sec .nav-tabs .nav-link{
      font-size: 14px;
          padding: 0 10px;
}
.product-b{
  margin-bottom: 20px;
}
.fot-content{
  padding: 50px 20px;
}
.socail{
  justify-content: flex-end;
}
.copy-write p{
  text-align: center;
}
.true-self-sec h3::before {
    content: '';
    position: absolute;
    left: 35%;
    bottom: -30px;
    height: 5px;
    width: 30%;
    background: #fff;
}
}
@media only screen and (max-width: 768px) {
  .carousel-indicators{
        bottom: 13%;
        justify-content: flex-end;
  }
  .carousel-caption{
      background: rgb(0 0 0 / 47%);
  }
  .provide-sec {
    margin-top: -25px;
}
.multip-box.size {
    margin-bottom: 100px;
    margin-top: 50px;
}
.add-to-cart .table>thead>tr>th{
      padding-left: 20px;
      font-size: 16px;
}
}
@media only screen and (max-width: 650px) {
  .news-letter-sec .news-box{
    margin-right: 0;
  }
  .news-letter-sec .news-box {
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    display: grid;
    align-content: center;
    background: #ffffff82;
}
.news-letter-sec .news-box h2{
  font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 70px;
}
.fot-content p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 35px;
}
.nav-list{
  justify-content: center;
}
.nav-list li a{
  padding: 0 10px;
}
.socail {
    justify-content: center;
    margin: 10px 0;
}
.copy-write {
    align-items: center;
    height: 100%;
}
.fotter-sec{
  padding-bottom: 10px;
}
.testiomal-sec h2{
  font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 5px;
}
.testiomal-sec p {
    color: #000;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}
.themes-padd {
    padding: 20px 0;
}
.true-self-sec{
  margin: 20px 0;
}
.true-self-sec h3{
      font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 35px;
}
.mulit-sli.top-left-bot .slick-dots {
    bottom: inherit;
    top: 16%;
    right: 0;
    left:auto;
    width: 25%;
}
.multip-box.size {
    margin-bottom: 60px;
    margin-top: 20px;
}
.provide-sec h3 {
    line-height: 35px;
    margin: 15px 0;
    font-size: 25px;
}
.provide-sec h3 span {
    display: contents;
}
img.img-fluid.home-banner {
    height: 400px;
    object-fit: cover;
    object-position: top right;
}
.banner_text p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
}
.banner_text  {
  text-align: center;
 }
 .carousel-indicators [data-bs-target] {
  border-color: #fff;
 }
 .carousel-indicators .active{
  background: #fff;
 }
 .slicknav_menu{
      background: #000;
          padding: 25px;
          display:none;
 }
 .header-logo {
      position: relative;
    top: 0px;
    width: 60%;
    left: 0px;
    margin: 0 auto;
}
 .header-logo img{
      filter: inherit;
 }
 .topSec{
  padding: 10px 0;
 }
 .topSec .tel{
  margin: 0% auto;
    display: block;
    text-align: center;
 }
 .topSec ul {
    justify-content: center;
    margin: 10px 0;
}
.sidebar-b{
  z-index: 100;
}
.slicknav_nav{
      font-size: 18px;
    line-height: 35px;
    position: absolute;
    top: 89px;
    width: 100%;
    padding: 15px 0;
    background: #000000d1;
    z-index: 99;
    left: 0;
    border-top: 2px solid #fff;
    box-shadow: 0px 12px 10px 0 #ffffff87;
}
.sidebar-b img {
    filter: invert(1);
    margin: 50px 0 0 20px;
       
}
.checkour-hats-sec h2 {
    font-size: 45px;
    margin: 20px 0;
    margin-top: 60px;
}
.testiomal-conn .slick-next {
    left: 55%;
}
.banner_text.inner h3::before {
    content: '';
    position: absolute;
    left: inherit;
    bottom: 0px;
    height: 5px;
    width: 30%;
    background: #fff;
}
.banner_text.inner h3 {
    font-size: 50px;
    line-height: 50px;
}
.tabs-sec .nav-tabs .nav-link{
  margin: 5px;
}
.table-responsive table {
    width: 1200px;
    max-width: 1200px;
}
.table-responsive {
    width: 100%;
    overflow-x: scroll;
}
button.btn_theme.d-inline-flex.mt-4{
      width: 50%;
}
.social h3 {
    font-size: 16px;
}
}
@media only screen and (max-width: 400px) {
  .testiomal-sec h3 {
    font-size: 30px;
}
.checkour-hats-sec h2 {
    font-size: 35px;
    margin: 15px 0;
    margin-top: 50px;
}
.testiomal-sec h2 {
    font-size: 40px;
}
}
@media only screen and (max-width: 350px) {}
/*media query*/


@media only screen and (min-width: 768px) and (max-width: 1025px){
button.single_add_to_cart_button.button.alt.wp-element-button{
    width:45% !important;
    float: right !important;
    margin-top: 0 !important;
}
.woocommerce .quantity .qty {
    width: 80% !important;
    text-align: center !important;
    height: 53px !important;
    font-size: 20px !important;
}
.get-in-touch {
    background-size: cover;
}
.social {
    display: block;
}
.get-in-touch h2 {
    font-size: 30px;
}
.requet-quote h2 {
    font-size: 30px;
}
button.btn_theme.d-inline-flex.mt-4 {
    width: 55%;
}
.wpcf7 .wpcf7-recaptcha iframe {
    margin-top: 30px !important;
}
}


@media only screen and (min-width: 992px) and (max-width: 1025px){
section.main_slider img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    /* clip-path: polygon(50% 0%, 99% 0, 100% 43%, 100% 100%, 49% 100%, 49% 80%, 0 80%, 0% 43%, 0 0); */
}
.banner_text {
    padding-top: 0;
}
.wpcf7 .wpcf7-recaptcha iframe {
    margin-top: 30px !important;
}
.banner_text h2 {
    font-size: 60px;
    line-height: 65px;
}
}


@media only screen and (min-width: 300px) and (max-width: 519px){
    .wpcf7 .wpcf7-recaptcha iframe {
    margin-top: 30px !important;
}
    .get-in-touch {
    background-size: cover;
}
.rc-anchor-normal .rc-anchor-pt {
    right: 40px !important;
    width: 236px !important;
}
.rc-anchor-normal .rc-anchor-content {
    height: 74px !important;
    width: 166px !important;
}
.social {
    display: block;
}
    .banner_text h2::before {
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
}

    form#mc4wp-form-1 .mc4wp-form-fields input {
        width: 100% !important;
        top: 0;
        border: 2px solid #000;
    }
    form#mc4wp-form-1 .mc4wp-form-fields input::placeholder{
        color:#000;
    }
    
    form#mc4wp-form-1 .mc4wp-form-fields {
        position: relative;
        width: 100%;
    }
    
    form#mc4wp-form-1 .mc4wp-form-fields button {
        width: 100%;
        position: relative;
        margin: 0;
    }
    img.img-fluid.inner-banner {
        height: 300px;
    }
    .about-us-sec h3 {
        font-size: 36px;
        line-height: 30px;
    }
    .provide-sec.inner {
        padding: 80px 0 0 !important;
    }
    .about-us-sec p {
        color: #000000;
        font-size: 16px;
        line-height: 25px;
    }
    .about-us-sec img {
        margin: 20px 0;
    }
    .single-product h1.product_title.entry-title {
        font-size: 2rem !important;
    }
    .woocommerce div.product form.cart .button {
        vertical-align: middle;
        /* float: left; */
        width: 50%;
        margin-top: 0;
    }
    .woocommerce div.product form.cart div.quantity {
        /* float: left; */
        margin: 0 4px 0 0;
        width: 50%;
    }
    .woocommerce div.product form.cart {
        margin-bottom: 2em;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }
    .woocommerce .quantity .qty {
        width: 60%;
        text-align: center;
        height: 50px;
        margin-top: 3px;
    }
    .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a {
        color: #666;
        font-size: 30px !important;
    }
    .product-detail-sec p {
        font-size: 16px;
        line-height: 25px;
    }
    .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title>a {
        color: #666;
        font-size: 30px !important;
    }
    span.woocommerce-Price-amount.amount {
        color: #000;
        font-size: 18px !important;
    }
    .cart_totals h2 {
        font-size: 26px;
        line-height: 50px;
        color: #000000;
        font-weight: 700;
        margin: 0;
    }
    .woocommerce form .form-row-last, .woocommerce-page form .form-row-last {
    float: none !important;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 100% !important;
    overflow: visible ;
}
.woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
    float: none !important;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    margin-bottom: 0px;
}
.woocommerce form .form-row .select2-container {
    width: 100%;
    line-height: 2em;
    height: 50px;
}
.woocommerce-additional-fields h3 {
    font-size: 20px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 20px 0 8px;
}
.get-in-touch h2 {
    font-size: 30px;
}
.requet-quote h2 {
    font-size: 36px;
}
}




