@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&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;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin: 0 0 50px 0;
}

/***** 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: "fontspring-medium";
  src: url("../fonts/fontspring-light.otf");
}

@font-face {
  font-family: "PPHattonMedium";
  src: url("../fonts/PPHattonMedium.otf");
}

@font-face {
  font-family: "PPHattonThine";
  src: url("../fonts/fontspring-light.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 95px;
  background-color: #000;
  border: 2px solid #0000;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  border: 2px solid #fff;
  border-radius: 5px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  background-color: #0f261c;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover::before {
  height: 100%;
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-family: "PPHattonThine";
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.theme1 span.theme1-icon-ex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon-ex {
  height: 20px;
  width: 20px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon-ex img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%)
    hue-rotate(70deg) brightness(108%) contrast(108%);
}

/* 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: "fontspring-medium";
  font-size: 37px;
  line-height: 45px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "PPHattonMedium";
  font-size: 39px;
  line-height: 1;
  color: #fff;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

h3 {
  font-family: "Poppins", Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Poppins", Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Poppins", Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Poppins", Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 16px;
  line-height: 25px;
  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 {
  padding: 30px 20px;
  background-color: #0f261c;
}
.menuSec {
  padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* gap: 10px; */
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-family: "Arimo", sans-serif;
  font-weight: 300;
  color: #fff;
  z-index: 0;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 0 0 auto;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::before {
  width: 100%;
  margin: 0 auto 0 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* .menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 0;
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
} */

/* .menu-box ul li a:hover::after {
  height: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
} */

.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 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-menu-list {
  display: none;
}

.header-links-main {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.header-links,
.header-menu-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  padding: 10px;
  cursor: pointer;
  /* overflow: hidden; */
  z-index: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.header-links:hover,
.header-menu-icon:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-links::before,
.header-menu-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #0000;
  height: 130%;
  width: 120%;
  z-index: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-links:hover::before,
.header-menu-icon:hover::before {
  border: 1px solid #fff;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.header-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.header-links a img,
.header-menu-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/*Header Css Ends */

/*Banner Css Starts */

section.banner-sec {
  height: 99vh;
  overflow: hidden;
  position: relative;
}

section.banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0f261c;
  opacity: 0.4;
  z-index: 1;
}

.banner_slider .slick-slide {
  margin: 0;
  outline: none !important;
}

.banner_slider .slick-active {
  opacity: 1;
}

.banner_slider .slick-slide {
  opacity: 1;
}

.banner-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

/*Banner Css Ends */

/*Discover Sec Css Starts */

section.discover-sec {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

section.discover-sec .container-fluid,
section.discover-sec .row,
section.discover-sec .col-12 {
  height: 100%;
}

.discover-slid {
  position: relative;
  height: 100%;
  width: 100%;
}

.discover-txt-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  padding: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-color: #0f261c;
  will-change: transform, opacity;
}

.discover-txt-wrap.slide-1 {
  background-image: url("../images/discover-bg1.jpg");
}

.discover-txt-wrap.slide-2 {
  background-image: url("../images/discover-bg2.jpg");
}

.discover-txt-wrap.slide-3 {
  background-image: url("../images/discover-bg3.jpg");
}

.discover-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.discover-txt p {
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.discover-heading h2 {
  position: relative;
  padding-left: 45px;
  color: #fff;
}

.discover-heading h2 span {
  position: absolute;
  bottom: -50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discover-heading h2 span img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/*Discover Sec Css Ends */

/*About Us Sec Css Starts */

section.about-sec {
  background-image: url("../images/about-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0;
}

section.about-sec .container-fluid {
  width: 90%;
  margin: 0 auto;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  width: 95%;
  margin: 0 auto 0 0;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.about-txt h2 {
  font-size: 24px;
  position: relative;
  padding-left: 30px;
}

.about-txt h2 span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-txt h2 span img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.about-txt p {
  color: #fff;
}

.about-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 375px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.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;
}

.products_slider .slick-active {
  opacity: 1;
}

.products_slider .slick-slide {
  margin: 0 5px;
}

/*About Us Sec Css Ends */

/*Products Sec Css Starts */

section.products-sec {
  background-color: #000;
}

.products-heading h2 {
  font-size: 31px;
  position: relative;
  padding-left: 65px;
}

.products-heading h2 span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-heading h2 span img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.products-heading p {
  color: #fff;
}

.products-card-txt h4 {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  font-family: "PPHattonMedium";
  text-transform: uppercase;
}

.products-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  height: 840px;
  width: 100%;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-card-main:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.products-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.products-card-img a img {
  transition: ease-out;
  transition-duration: 0.5s;
}

.products-card-main:hover .products-card-img img {
  scale: 1.1;
  transition: ease-out;
  transition-duration: 0.5s;
}

.products-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.products-card-img a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.products-card-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

/*Products Sec Css Ends */

/*Footer Sec Css Starts */

footer {
  background-color: #000;
  padding: 60px 0;
}

.footer-news-box {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/footer-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.footer-main .container-fluid {
  width: 90%;
  margin: 0 auto;
}

.footer-txt h2 {
  font-family: "PPHattonThine";
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 300;
}

.footer-txt h3 {
  font-family: "Arimo";
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 200;
}

.footer-news-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  width: 89%;
}

.footer-txt-main {
  width: 100%;
}

.footer-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-news-input-main {
  width: 100%;
}

.footer-news-input {
  width: 85%;
}

.footer-news-input input {
  height: 50px;
  border-radius: 100px;
  padding: 0 20px 0 30px;
  width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 1;
  font-family: "Arimo";
  border: 1px solid #0000;
}

.footer-news-input input::placeholder {
  font-family: "Arimo";
  font-weight: 400;
  text-transform: uppercase;
  border: 1px solid #0000;
  color: #cdcaca;
  font-size: 14px;
}

.footer-img {
  position: absolute;
  top: -25%;
  left: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 500px;
}

.footer-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer-link-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
  text-align: center;
  width: 95%;
  height: 100%;
  margin: 0 auto;
}

.footer-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-link-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.footer-link-txt h6 {
  color: #fff;
  font-family: "Arimo";
  font-size: 12px;
  line-height: 25px;
  text-transform: uppercase;
}

.footer-link-txt p {
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  font-family: "Arimo";
}

.footer-heading h5 {
  font-size: 23px;
  line-height: 30px;
  color: #fff;
  font-family: "fontspring-medium";
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 200;
}

.footer-heading h5 span {
  font-family: "PPHattonMedium";
}

.footer-heading p {
  color: #fff;
}

.footer-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.footer-link ul li a {
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Arimo";
  z-index: 0;
}

.footer-link ul li a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: 0;
}

.footer-link ul li a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-address-main {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-radius: 100px;
  overflow: hidden;
}

.footer-address-main form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.footer-address-main form .footer-address-input {
  width: 80%;
  height: 100%;
}

.footer-address-main form .footer-address-input input {
  height: 100%;
  width: 100%;
  border: 1px solid #0000;
  font-size: 11px;
  line-height: 1;
  color: #000;
  font-weight: 600;
  padding: 0 20px 0 0;
}

.footer-address-main form .footer-address-input input::placeholder {
  font-size: 11px;
  line-height: 1;
  color: #535353;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-address-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 25%;
}

.footer-address-btn button {
  font-size: 11px;
  line-height: 1;
  color: #535353;
  padding: 0;
  background-color: #0000;
  border: 1px solid #0000;
  height: 100%;
  width: 100%;
  font-family: "Arimo";
  text-transform: uppercase;
  font-weight: 600;
}

.footer-address-btn button:hover {
  color: #1f6345;
}

/*Footer Sec Css Ends */
