@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

span.txt-color {
  color: #ff451b;
}

/***** 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: "hudson";
  src: url("../fonts/hudson.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;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 40px;
  background-color: #ff451b;
  border: 3px solid #0000;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  border: 3px solid #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  z-index: 1;
  border-radius: 100px;
  background-color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover::before {
  border-radius: 0;
  height: 100%;
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  font-family: "hudson";
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  color: #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-ex-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-ex-icon {
  height: 20px;
  width: 20px;
  z-index: 9;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-ex-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover::before {
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  font-size: 14px;
  line-height: 20px;
  font-family: "hudson";
  color: #fff;
  text-transform: uppercase;
}

.theme3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1px solid #0000;
  font-size: 14px;
  line-height: 1;
  font-family: "hudson";
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-txt {
  color: #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 15px;
  background-color: #000;
  border: 1px solid #0000;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-icon {
  background-color: #fff;
  border: 1px solid #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-icon i {
  color: #fff;
  font-size: 12px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-icon i {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 40px;
  background-color: #000;
  border: 3px solid #0000;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4:hover {
  border: 3px solid #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 100px;
  background-color: #fff;
  z-index: 2;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4:hover::before {
  border-radius: 0;
  height: 100%;
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 span.theme4-txt {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  font-family: "hudson";
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4:hover span.theme4-txt {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 span.theme4-ex-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4:hover span.theme4-ex-icon {
  height: 20px;
  width: 20px;
  z-index: 9;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 span.theme4-ex-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: ease-in;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.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: "hudson";
  font-size: 92px;
  line-height: 80px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 10px;
}

h2 {
  font-family: "hudson";
  font-size: 80px;
  line-height: 85px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "hudson";
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "hudson";
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "hudson";
  font-size: 50px;
  line-height: 1;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "hudson";
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 25px;
  opacity: 0.7;
  font-family: "Poppins", serif;
  font-weight: 400;
  margin: 0;
}

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 Starts */

header {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 95%;
  max-width: 1800px;
  margin: 20px auto 0 auto;
  overflow: hidden;
}
.menuSec {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  border-right: 1px solid #0000001f;
}

.header-logo a {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
  width: 100%;
}

.header-logo a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 80%;
  object-fit: cover;
}

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 80px;
}

.menu-box ul li {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "hudson";
  color: #000;
  font-weight: 400;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menu-box ul li a:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 0;
  background: linear-gradient(
    0deg,
    rgba(255, 69, 27, 0) 0%,
    rgb(255 69 27 / 28%) 100%
  );
  transition: ease-in;
  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  margin: 0 auto;
  background-color: #ff451b;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menu-box ul li a:hover::before {
  height: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a:hover::after {
  height: 3px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li.active a::before {
  height: 100%;
}

.menu-box ul li.active a::after {
  height: 3px;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menu-box 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;
}

.header-search-link-box {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  width: 95%;
  height: 50px;
  border-left: 1px solid #0000001f;
  padding: 0 0 0 20px;
}

.header-search-main {
  width: 65%;
  height: 100%;
}

.header-search-main form {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  height: 100%;
}

.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.header-search input {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0 35px 0 0;
  border: none;
  border-bottom: 1px solid #00000069;
  outline: none;
  font-size: 14px;
  line-height: 1;
  color: #000;
}

.header-search input::placeholder {
  font-size: 14px;
  line-height: 1;
  font-family: "hudson";
  color: #000;
}

.header-icon {
  position: absolute;
  top: 20%;
  right: 2%;
}

.header-icon button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: #0000;
  border: none;
  border-radius: 100px;
  overflow: hidden;
  padding: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.header-icon button:hover {
  background-color: #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-icon button i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 14px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.header-icon button:hover i {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-search-link-main {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
  width: 35%;
}

.header-search-txt a {
  font-size: 14px;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  font-family: "hudson";
  transition: ease-in;
  transition-duration: 0.5s;
}

.header-search-txt a:hover {
  color: #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-search-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #0000001f;
  transition: ease-in;
  transition-duration: 0.5s;
}

.header-search-link a:hover {
  border: 1px solid #0000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-search-link a:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-search-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  margin: 0 auto;
  border-radius: 100px;
  background-color: #ff451b;
  transition: ease-in;
  transition-duration: 0.5s;
}

.header-search-link a:hover::before {
  height: 100%;
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-search-link a i {
  color: #000;
  font-size: 14px;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.header-search-link a:hover i {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Header Css Ends */

/*Banner Css Starts */

section.main_slider {
  width: 97%;
  margin: 120px auto 0 auto;
  border-radius: 40px;
  overflow: hidden;
  height: 95vh;
}

.main-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  top: 52%;
  right: 65%;
  left: unset;
  height: 30px;
  width: 200px;
}

.carousel-indicators [data-bs-target] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  margin: 0px !important;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 100px;
  overflow: hidden;
}

.carousel-indicators [data-bs-target]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 5px;
  background-color: #7d7b7a;
  border-radius: 100px;
}

.carousel-indicators .active {
  border: 1px solid #ff451b;
  background-color: #0000;
}

.carousel-indicators .active::before {
  background-color: #ff451b;
}

.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;
}

.banner_text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 90%;
}

.banner_text h1 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ff451b;
  height: 100px;
  width: 390px;
}

.banner_text h1 span::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/banner-ex.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner_text p {
  color: #fff;
}

.banner-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.banner_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 9;
}

.banner-socials-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  width: 100%;
  position: absolute;
  bottom: 10%;
}

.banner-socials ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.banner-socials ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid #ffffff1f;
  border-radius: 100px;
  overflow: hidden;
  color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner-socials ul li a:hover {
  border: 1px solid #0000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner-socials ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  background-color: #ff451b;
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner-socials ul li a:hover::before {
  height: 100%;
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner-socials ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 16px;
  z-index: 9;
}

.banner-socials-txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 110px;
}

.banner-socials-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 1px solid #ffffff4f;
  width: 50%;
}

.banner-socials-txt h6 {
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #fff;
  top: unset;
  bottom: 10%;
}

.carousel-control-next {
  left: 95%;
}

.carousel-control-prev {
  left: unset;
  right: 6%;
}

.carousel-control-next-icon {
  background-image: url("../images/ban-right.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.carousel-control-prev-icon {
  background-image: url("../images/ban-left.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.banner-counters {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 500px;
  background-color: #ff451b;
  border-radius: 0 0 0 300px;
  overflow: hidden;
}

.counter-box h3 {
  font-size: 470px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-box p {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.counter-box .plus,
.counter-box .percent,
.counter-box .slash {
  font-size: 18px;
  font-weight: 700;
  margin-left: 2px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 576px) {
  .counter-box {
    min-width: 140px;
  }
  .counter-box h3 {
    font-size: 24px;
  }
}

/*Banner Css Ends */

/*Category Css Starts */

.category-card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #ff451b;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  width: 90%;
  margin: 0 auto 0 0;
}

.category-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid #ffffff61;
  border-radius: 10px;
}

.category-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.category-card-heading {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  height: 40px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-card-heading:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.category-card-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  border-bottom: 1px solid #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-card-heading:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.category-card-heading h5 {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
}

.category-card-txt p {
  color: #fff;
}

.category-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.category-heading-box {
  position: relative;
  width: 100%;
  height: 190px;
  border-bottom: 2px solid #ff451b52;
}

.category-heading-box::before {
  content: "";
  position: absolute;
  top: 95%;
  right: 0;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border: 1px solid #fe451b;
  border-radius: 100px;
  background-color: #fff;
  z-index: 9;
}

.category-heading-box::after {
  content: "";
  position: absolute;
  top: 98.5%;
  right: 0.8%;
  height: 7px;
  width: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background-color: #fe451b;
  border-radius: 100px;
  z-index: 9;
}

.category-heading {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: end;
  width: 100%;
  height: 100%;
}

.category-heading::before {
  content: "";
  position: absolute;
  bottom: -1%;
  right: 0;
  width: 7%;
  border-bottom: 2px solid #ff451b;
}

.category-heading h2 {
  text-align: end;
}

.category-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px 0;
  width: 75%;
}

.category-bottom-card .category-card-box {
  margin: 0;
  width: 100%;
  border-radius: 0 20px 20px 0;
}

.category-card-img {
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-card-img:hover {
  scale: 0.9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-bottom-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 445px;
  width: 100%;
}

.category-bottom-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

.category-bottom-box {
  position: relative;
  border-radius: 0 0 0 20px;
  overflow: hidden;
}

.category-bottom-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 89%) 30%,
    rgba(0, 0, 0, 0) 120%
  );
}

.category-bottom-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 0;
  height: 90%;
  width: 95%;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ffffff61;
  border-radius: 10px;
}

.category-bottom-heading {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  height: 40px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-bottom-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  border-bottom: 1px solid #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.category-bottom-heading:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.category-bottom-heading h4 {
  color: #fff;
  font-size: 24px;
  line-height: 30px;
}

.category-bottom-txt {
  width: 40%;
}

.category-bottom-txt p {
  color: #fff;
  opacity: 1;
}

/*Category Css Ends */

/*Products Css Starts */

section.products-sec .container-fluid {
  width: 90%;
  margin: 0 auto;
  max-width: 1400px;
}

.products-heading-main {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  height: 120px;
  margin: 0 0 30px 0;
  border-bottom: 2px solid #ff451b26;
}

.products-heading {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  height: 100%;
  width: 100%;
}

.products-heading::before {
  content: "";
  position: absolute;
  top: 93%;
  right: 0;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border: 1px solid #ff451b26;
  border-radius: 100px;
  background-color: #fff;
  z-index: 9;
}

.products-heading::after {
  content: "";
  position: absolute;
  top: 98.5%;
  right: 0.5%;
  height: 7px;
  width: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background-color: #ff451b26;
  border-radius: 100px;
  z-index: 9;
}

.products_slider .slick-slide {
  margin: 0px 10px;
}

.products_slider .slick-active {
  opacity: 1;
}

.products-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  margin: 20px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-card-main:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.products-card-img-btn-price-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 365px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.products-card-img-btn-price-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 60%);
  z-index: 9;
}

.products-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 265px;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-card-main:hover .products-card-img {
  scale: 1.1;
  transition: ease-out;
  transition-duration: 0.5s;
}

.products-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.products-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.products-card-btn-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto 20px auto;
  gap: 10px;
  z-index: 9;
}

.products-card-btn-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 70%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  padding: 5px 5px 5px 15px;
}

.products-card-btn {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-card-price h6 {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  border-radius: 5px;
  background-color: #ff451b;
  width: 100%;
}

.products-card-price-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 30%;
}

.products-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.products-card-txt-link-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  background-color: #121212;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  padding: 10px 20px;
}

.products-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.products-card-txt h4 {
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

.products-card-review-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.products-card-review-stars ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 3px;
}

.products-card-review-stars ul li a i {
  color: #faa72c;
  font-size: 10px;
}

.products-card-review-txt {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 5px;
}

.products-card-review-txt h5 {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  height: 16px;
}

.products-card-review-txt h6 {
  color: #fff;
  font-size: 8px;
  line-height: 1;
}

/*Products Css Ends */

/*About Us Sec Css Starts */

section.about-sec {
  padding: 80px 0 140px 0;
}

section.about-sec .row {
  position: relative;
}

.about-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 680px;
  width: 65%;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  position: relative;
  width: 100%;
}

.about-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}

.about-heading::before {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 80%;
  border-bottom: 2px solid #ff451b52;
}

.about-heading h2 {
  position: relative;
  width: 100%;
  text-align: end;
}

.about-heading h2 span {
  display: flex;
  align-items: center;
  justify-content: end;
}

.about-heading h2::before {
  content: "";
  position: absolute;
  top: 78%;
  right: 18%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border: 1px solid #fe451b;
  border-radius: 100px;
  background-color: #fff;
  z-index: 9;
}

.about-heading h2::after {
  content: "";
  position: absolute;
  top: 82%;
  right: 18.9%;
  height: 7px;
  width: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background-color: #fe451b;
  border-radius: 100px;
  z-index: 9;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px;
  background-color: #ff451b;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #fff;
  z-index: 9;
}

.about-txt p {
  color: #fff;
}

/*About Us Sec Css Ends */

/*Quote Sec Css Starts */

section.quote-sec .container-fluid {
  position: relative;
  width: 97%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background-image: url("../images/quote-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 70px;
}

section.quote-sec .container-fluid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 42%,
    rgba(0, 0, 0, 0.17) 78%,
    rgba(0, 0, 0, 1) 96%
  );
  height: 100%;
  width: 100%;
}

.quote-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  position: relative;
  z-index: 9;
  width: 85%;
}

.quote-txt h2 {
  color: #fff;
}

.quote-txt h2 span::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/quote-ex.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.quote-txt h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ff451b;
  height: 100px;
  width: 231px;
}

.quote-txt p {
  color: #fff;
}

.quote-card-box {
  height: 100%;
  width: 90%;
  display: flex;
  align-items: end;
  justify-content: end;
  margin: 0 0 0 auto;
}

.quote-card-main {
  position: relative;
  z-index: 9;
}

.quote-card-main {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 150px;
  width: 100%;
  /* margin: 0 0 0 auto; */
}

.quote-card-txt-main {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
  padding: 20px 80px 20px 20px;
  border-radius: 10px;
  overflow: hidden;
  width: 70%;
  height: 100%;
}

.quote-card-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 10%;
}

.quote-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: 15%;
  right: 0;
}

.quote-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.quote-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.quote-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.quote-card-txt h6 {
  font-size: 13px;
  line-height: 1;
}

.quote-card-price-review-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.quote-card-review {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.quote-card-review-star i {
  color: #faa72c;
  font-size: 14px;
}

.quote-card-review-txt h6 {
  font-size: 12px;
  line-height: 1;
}

.quote-card-price h6 {
  color: #ff451b;
}

/*Quote Sec Css Ends */

/*Products ex Sec Css Starts */

section.products-ex .products-heading-main {
  align-items: center;
  justify-content: center;
  border-bottom: none;
  height: auto;
}

section.products-ex .products-heading {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  text-align: center;
  height: 100%;
}

section.products-ex .products-heading::before {
  display: none;
}

section.products-ex .products-heading::after {
  display: none;
}

.products-nav-heading-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 30px 0;
}

.products-nav-main ul {
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.products-nav-main .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  background-color: #0000;
  font-size: 14px;
  line-height: 1;
  color: #000;
  font-family: "hudson";
  text-transform: uppercase;
  border-radius: 0 !important;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-nav-main .nav-link:hover {
  color: #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.products-nav-main .nav-link.active {
  background-color: #0000;
  border-radius: 0;
  overflow: hidden;
  color: #ff451b;
  border-bottom: 3px solid #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Products ex Sec Css Ends */

/*Disscount Sec Css Starts */

section.disscount-sec .container-fluid {
  width: 100%;
  margin: 0 auto;
  max-width: 1500px;
}

.disscount-card-left-main .category-bottom-box {
  border-radius: 20px;
}

.disscount-card-left-main .category-bottom-img {
  height: 400px;
}

.disscount-card-left-main .category-bottom-txt-main {
  width: 94%;
  gap: 10px;
}

.disscount-card-left-main .category-bottom-heading h3 {
  font-size: 44px;
  line-height: 50px;
  color: #fff;
}

.disscount-card-left-main .category-bottom-heading::before {
  display: none;
}

.disscount-card-left-main .category-bottom-txt {
  width: 50%;
}

.disscount-card-left-main .category-bottom-heading {
  height: 120px;
}

.disscount-card-mid-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background-color: #ff451b;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  height: 100%;
}

.disscount-card-mid-main::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  height: 90%;
  width: 90%;
  border: 1px solid #ffffff61;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.disscount-card-mid-tag {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;
  border-radius: 100px;
}

.disscount-card-mid-tag h5 {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.disscount-card-mid-txt h4 {
  font-size: 44px;
  line-height: 50px;
  color: #fff;
  text-transform: uppercase;
}

.disscount-card-mid-txt h5 {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  letter-spacing: 4px;
}

.disscount-card-mid-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100%; */
  width: 100%;
  gap: 10px;
}

.disscount-card-mid-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.disscount-card-mid-txt p {
  color: #fff;
}

.disscount-card-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.disscount-card-right-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.disscount-card-right-img::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  height: 90%;
  width: 90%;
  border: 1px solid #ffffff61;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.disscount-card-right-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.disscount-card-right-txt {
  position: absolute;
  bottom: 10%;
  right: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.disscount-card-right-txt h3 {
  font-size: 35px;
  line-height: 45px;
  color: #fff;
}

/*Disscount Sec Css Ends */

/* Testimonial Sec Starts */

.testimonial-card {
  padding: 50px;
  box-shadow: 0 0 0 0 #0000;
  margin: 30px 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #121212;
}

.testimonial-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: var(--g1);
  border-radius: 100px;
  margin: -75px 0 40px 0;
  display: none;
}

.testimonial-card-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.testimonial-card-txt p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  margin: 20px 0;
}

.testimonial-user-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 100px;
  object-position: 0 0;
}

.testimonial-user-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 7px;
}

.testimonial-user-txt h5 {
  color: #fff;
  font-size: 19px;
  line-height: 1;
  margin: 0;
  font-weight: 700;
}

.testimonial-user-txt h6 {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 300;
  margin: 0;
  font-weight: 500;
}

.testimonial-user-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.testimonial_slider .slick-active {
  opacity: 1;
}

.testimonial_slider .slick-slide {
  margin: 0px 10px;
}

.testimonial_slider .slick-active {
  width: 390px !important;
}

.testimonial_slider .slick-current {
  width: 450px !important;
}

.testimonial_slider .slick-current .testimonial-card {
  box-shadow: 0 0 20px 0 #00000024;
  background-color: #ff451b;
}

.testimonial_slider .slick-next:before {
  content: "";
  background-image: url("../images/testimonial-right.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-items: center;
  height: 20px;
  width: 40px;
}

.testimonial_slider .slick-prev:before {
  content: "";
  background-image: url("../images/testimonial-left.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-items: center;
  height: 20px;
  width: 40px;
}

.testimonial_slider .slick-prev {
  left: -55px;
}

.testimonial_slider .slick-next {
  right: -5px;
}

.stars ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  position: relative;
  z-index: 9;
}

.stars ul li a i {
  color: #ffb400;
}

.testimonial_slider .slick-current .testimonial-card-icon {
  display: flex;
}

.testimonial_slider .slick-current .testimonial-card * {
  color: #fff;
}

.testimonial-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  width: 50%;
  margin: 0 auto;
}

/* Testimonial Sec End */

/* Footer Sec Starts */

.footer-main {
  background-color: #121212;
}

.footer-news-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 70px 300px;
  width: 100%;
  margin: 0 auto 50px auto;
  border-bottom: 1px solid #ffffff33;
}

.footer-news-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-news-txt h2 {
  font-size: 63px;
  line-height: 70px;
  color: #fff;
  text-transform: uppercase;
}

.footer-news-txt p {
  color: #fff;
}

.footer-news-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-news-main form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
}

.footer-news-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 55px;
}

.footer-news-input input {
  height: 100%;
  width: 100%;
  padding: 0 20px;
  background-color: #0000;
  border: 1px solid #ffffff42;
  border-radius: 5px;
  overflow: hidden;
  font-size: 11px;
  list-style: 1;
  color: #fff;
}

.footer-news-input input::placeholder {
  font-size: 11px;
  list-style: 1;
  color: #fff;
  font-family: "hudson";
  opacity: 0.7;
}

.footer-news-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 33%;
}

.footer-news-btn button {
  padding: 0 60px;
}

.footer-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-quick-links {
  width: 70%;
  margin: 0 auto;
}

.footer-txt p {
  color: #fff;
}

.footer-socials-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.footer-heading {
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ffffff33;
  width: 100%;
}

.footer-heading img {
  display: flex;
  align-items: start;
  justify-content: start;
  height: 25px;
  width: 60%;
  object-fit: contain;
}

.footer-socials-main .footer-heading {
  border: none;
}

.footer-heading h5 {
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}

.footer-socials ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.footer-socials ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff1f;
  border-radius: 100px;
  overflow: hidden;
  color: #fff;
  background-color: #ff451b;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-socials ul li a:hover {
  border: 1px solid #0000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-socials ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  background-color: #000;
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-socials ul li a:hover::before {
  height: 100%;
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-socials ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 16px;
  z-index: 9;
}

.footer-link-main {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.footer-link {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.footer-link ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.footer-link ul li a {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  opacity: 0.7;
  font-weight: 300;
  font-family: "Poppins";
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  transition: ease-in;
  transition-duration: 0.2s;
}

.footer-link ul li a:hover {
  opacity: 1;
  color: #ff451b;
  transition: ease-out;
  transition-duration: 0.2s;
}

.footer-info {
  width: 85%;
  margin: 0 auto;
}

.footer-info .footer-link-main ul {
  column-count: 2;
  display: block;
  gap: 10px;
}

.footer-info .footer-link-main ul li {
  margin: 0 0 20px 0;
}

.footer-contact .footer-link ul {
  gap: 30px;
}

.footer-botom-main {
  padding: 20px 0;
  border-top: 1px solid #ffffff33;
  margin: 50px 0 0 0;
}

.footer-botom-txt p {
  color: #fff;
}

.footer-botom-img {
  display: flex;
  align-items: center;
  justify-content: end;
}

.products_slider .slick-prev,
.products_slider .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  top: -15%;
  bottom: unset;
  /* gap: 40px; */
  height: 40px;
  width: 40px;
  background-color: #000;
  border-radius: 100px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products_slider .slick-prev:hover,
.products_slider .slick-next:hover {
  background-color: #ff451b;
  transition: ease-out;
  transition-duration: 0.5s;
}

.products_slider .slick-next {
  right: 0;
}

.products_slider .slick-prev {
  left: unset;
  right: 4%;
}

.products_slider .slick-prev:before,
.products_slider .slick-next:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.products_slider .slick-next:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-image: url("../images/arrow-right.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.products_slider .slick-prev:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-image: url("../images/arrow-left.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Footer Sec End */
