@font-face {
  font-family: "Cormorant_Garamond";
  src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Medium.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Cormorant_Garamond";
  src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Regular.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Cormorant_Garamond";
  src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Bold.ttf");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "Cormorant_Garamond", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #ccc;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

@media (max-width: 900px) { 
.conact-us-page::after { 
Content: "";
Width: 100%;
Height:100%;
Background-color: rgba( 255, 255, 255, .5);
Position: absolute;
Top:0;
Left:0;
Z-index: -1;
}
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 33px;
  height: 3px;
  background-color: rgba(226, 214, 193, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  transform: translateY(0px);
  width: 50px;
  height: 50px;
  border: 0px;
  border: 1px solid rgba(11, 24, 58, 0.2);
  background-color: rgba(11, 24, 58, 0.1);
  bottom: 0;
  border-radius: 0px;
  overflow: hidden;
}
.swiper-button-next::before, .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.3s linear;
}
.swiper-button-next::after, .swiper-button-prev::after {
  position: absolute;
  width: 15px;
  height: 15px;
  top: calc(50% - 7.5px);
  left: calc(50% - 7.5px);
  z-index: 9;
  background: url("../images/icons/arrow.svg") center/contain no-repeat;
  color: transparent;
  filter: var(--primary-filter);
}
.swiper-button-next:hover::before, .swiper-button-prev:hover::before {
  height: 100%;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
  filter: var(--light-filter);
}

.swiper-button-prev {
  left: calc(50% - 55px) !important;
  right: unset !important;
}

.swiper-button-next {
  left: unset !important;
  right: calc(50% - 55px) !important;
}
.swiper-button-next::after {
  transform: scaleX(-1);
}

.swiper-wrapper {
  padding: 20px 0px 90px;
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg) scale3d(1, 1, 1);
  }
  100% {
    transform: rotate(10deg) scale3d(1.5, 1.5, 1.5);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px) rotate(-90deg);
  }
  50% {
    transform: translateY(-2px) rotate(-90deg);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #0B183A;
  --secondary-color: #14264C;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --danger-color: #E92E2E;
  --primary-filter: invert(14%) sepia(11%) saturate(4798%) hue-rotate(145deg) brightness(101%) contrast(105%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

.general-section {
  width: 100%;
  padding: 90px 0px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .general-section {
    padding: 40px 0px;
  }
}

.heading {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 992px) {
  .heading {
    margin-bottom: 35px;
  }
}
.heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  text-transform: capitalize;
  margin: 0px;
}
@media (max-width: 992px) {
  .heading h1 {
    font-size: 25px;
  }
}

.product-box {
  width: 100%;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s linear;
}
.product-box .product-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .product-box .product-img {
    height: 150px;
  }
}
.product-box .contain {
  width: 100%;
  padding: 20px 10px 0px;
}
@media (max-width: 992px) {
  .product-box .contain {
    padding: 10px 5px 0px;
  }
}
.product-box .contain .flex-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.product-box .contain .flex-contain h2 {
  width: calc(100% - 20px);
  font-size: 25px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .product-box .contain .flex-contain h2 {
    font-size: 13px;
  }
}
.product-box .contain .flex-contain .see-more {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.product-box .contain .flex-contain .see-more img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scaleX(-1);
}
.product-box .contain p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 5px 0px 0px;
}
@media (max-width: 992px) {
  .product-box .contain p {
    font-size: 10px;
  }
}
.product-box:hover {
  transform: translateY(-10px);
}
.product-box:hover h2 {
  color: var(--secondary-color) !important;
}

.custom-btn {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
}
.custom-btn.large-btn {
  width: 250px;
}
.custom-btn::after, .custom-btn::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 100%;
  background-color: var(--secondary-color);
  top: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.custom-btn::after {
  left: 0;
}
.custom-btn::before {
  right: 0;
}
.custom-btn span {
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
  text-transform: capitalize;
}
.custom-btn:hover::after, .custom-btn:hover::before {
  width: 55%;
}

.navbar {
  width: 100%;
  padding: 15px 0px;
  background-color: var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s linear;
}
.navbar.scrolled, .navbar.primary-nav {
  background-color: var(--gray-color);
  box-shadow: 0px 0px 10px rgba(20, 38, 76, 0.5);
  padding: 10px 0px;
}
.navbar.scrolled .brand-name img, .navbar.primary-nav .brand-name img {
  height: 50px;
}
@media (max-width: 992px) {
  .navbar.scrolled .navbar-nav, .navbar.primary-nav .navbar-nav {
    top: 80px !important;
  }
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  display: none;
}
@media (max-width: 960px) {
  .navbar .contain .hamburger {
    display: block !important;
  }
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: var(--light-color);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.navbar .contain .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .contain .hamburger.active .line:nth-child(2) {
  width: 0px;
}
.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .contain .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.navbar .contain .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.navbar .contain .brand-name img {
  width: 180px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 95px;
    left: -100%;
    gap: 0px !important;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    padding: 20px 15px;
  }
  .navbar .contain .navbar-nav.active-nav {
    left: 0px;
  }
  .navbar .contain .navbar-nav .nav-item {
    width: 100%;
    padding: 15px 0px !important;
    border-bottom: 1px solid rgba(245, 245, 245, 0.5);
  }
  .navbar .contain .navbar-nav .nav-item:last-child {
    border-bottom: 0px;
    border-bottom: 0px;
  }
  .navbar .contain .navbar-nav .nav-item .nav-link::after, .navbar .contain .navbar-nav .nav-item .nav-link::before {
    display: none;
  }
}
.navbar .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  position: relative;
  z-index: 9;
  text-transform: capitalize;
}
.navbar .contain .navbar-nav .nav-item .nav-link::after, .navbar .contain .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: var(--light-color);
  bottom: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.navbar .contain .navbar-nav .nav-item .nav-link::after {
  left: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link::before {
  right: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover::after, .navbar .contain .navbar-nav .nav-item .nav-link:hover::before, .navbar .contain .navbar-nav .nav-item .nav-link.active::after, .navbar .contain .navbar-nav .nav-item .nav-link.active::before {
  width: 55%;
}

header {
  width: 100%;
  padding: 300px 0px 200px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 992px) {
  header {
    padding: 200px 0px 100px;
  }
}
header .contain.dark-color h1 {
  color: var(--dark-color);
}
header .contain h1 {
  font-size: 50px;
  font-weight: 700;
  color: var(--light-color);
 
  text-transform: capitalize;
  margin: 0px;
}
@media (max-width: 992px) {
  header .contain h1 {
    font-size: 30px;
  }
}
header .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: justify;
  margin: 20px 0px 0px;
}
header .contain .list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
header .contain .list li a {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
header .contain .list li a .data {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
}
header .contain .list li a .name {
  font-size: 15px;
  font-weight: 900;
  color: var(--dark-color);
}
header .intro-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.features {
  width: 100%;
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.features .box {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 9;
  padding: 30px 20px;
  text-align: center;
}
.features .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  background-color: var(--secondary-color);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.features .box img {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .features .box img {
    height: 150px;
  }
}
.features .box h2 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
  text-transform: capitalize;
  margin: 0px;
}
@media (max-width: 992px) {
  .features .box h2 {
    font-size: 16px;
  }
}
.features .box:hover::after {
  height: 100%;
}

.products .heading {
  margin-bottom: 20px;
}

.smart {
  padding-top: 0px !important;
}
.smart .data-contain {
  background-color: #F0F0F0;
  padding: 30px 20px 10px;
}
@media (max-width: 992px) {
  .smart .data-contain {
    padding: 25px 20px 5px;
  }
}
.smart .data-contain .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.smart .data-contain .contain h1 {
  font-size: 50px;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0px;
}
@media (max-width: 992px) {
  .smart .data-contain .contain h1 {
    font-size: 25px;
  }
}
.smart .data-contain .contain p {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px;
  text-transform: capitalize;
}
.smart .data-contain .image-contain {
  width: 100%;
  height: 400px;
}
@media (max-width: 992px) {
  .smart .data-contain .image-contain {
    height: 250px;
  }
}
.smart .data-contain .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product {
  padding-top: 150px;
}
@media (max-width: 992px) {
  .single-product {
    padding-top: 100px;
  }
}
.single-product.catalogs .row {
  border-bottom: 1px solid var(--gray-color);
  padding: 20px 0px;
  margin-bottom: 20px;
}
.single-product.catalogs .row:last-child {
  border: 0px;
}
.single-product.catalogs .row .image-contain {
  height: 350px;
}
@media (max-width: 992px) {
  .single-product.catalogs .row .image-contain {
    height: 300px;
  }
}
.single-product.catalogs .nav {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 0px;
  border-radius: 0px;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.single-product.catalogs .nav li {
  border-radius: 0px;
  border: 0px;
}
.single-product.catalogs .nav li .nav-link {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 1px solid var(--primary-color) !important;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
  border-radius: 0px;
  background-color: transparent;
  position: relative;
  z-index: 9;
}
.single-product.catalogs .nav li .nav-link::after, .single-product.catalogs .nav li .nav-link::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0;
  background-color: var(--primary-color);
  z-index: -1;
  transition: all 0.3s linear;
}
.single-product.catalogs .nav li .nav-link::after {
  left: 0;
}
.single-product.catalogs .nav li .nav-link::before {
  right: 0;
}
.single-product.catalogs .nav li .nav-link:hover, .single-product.catalogs .nav li .nav-link.active {
  background-color: transparent;
  border-radius: 0px;
  border-color: var(--primary-color);
  color: var(--light-color);
}
.single-product.catalogs .nav li .nav-link:hover::after, .single-product.catalogs .nav li .nav-link:hover::before, .single-product.catalogs .nav li .nav-link.active::after, .single-product.catalogs .nav li .nav-link.active::before {
  width: 51%;
}
.single-product.catalogs .tab-pane.fade {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  transform: translateY(20px);
}
.single-product.catalogs .tab-pane.fade.show.active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.single-product .prodcutDetailsSwiper {
  width: 100%;
  margin-bottom: 20px;
}
.single-product .prodcutDetailsSwiper img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-product .swiper-team .swiper-wrapper {
  padding: 20px 0px 90px !important;
}
.single-product .single-video {
  width: 100%;
  height: 470px;
  position: relative;
  z-index: 9;
}
.single-product .single-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-product .single-video .open-agenda {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--primary-color);
  -webkit-clip-path: polygon(0 5%, 100% 0, 100% 93%, 0 100%);
          clip-path: polygon(0 5%, 100% 0, 100% 93%, 0 100%);
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  z-index: 9;
}
.single-product .single-video .open-agenda img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-product .image-contain {
  width: 100%;
  height: 500px;
}
@media (max-width: 992px) {
  .single-product .image-contain {
    height: 450px;
  }
}
.single-product .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-product .eventThumbsSlider {
  width: 100%;
  position: relative;
  z-index: 9;
}
.single-product .eventThumbsSlider::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000, transparent, transparent, #000);
  top: 0;
  left: 0;
  z-index: 9;
  pointer-events: none;
}
.single-product .eventThumbsSlider img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}
.single-product .eventThumbsSlider .swiper-button-next,
.single-product .eventThumbsSlider .swiper-button-prev {
  bottom: unset !important;
  top: 70% !important;
  transform: translateY(-50%) !important;
  border-color: var(--primary-color);
}
.single-product .eventThumbsSlider .swiper-button-next::after,
.single-product .eventThumbsSlider .swiper-button-prev::after {
  filter: var(--light-filter);
}
.single-product .eventThumbsSlider .swiper-button-next::before,
.single-product .eventThumbsSlider .swiper-button-prev::before {
  height: 100%;
}
.single-product .eventThumbsSlider .swiper-button-prev {
  left: 10px !important;
  right: unset !important;
}
.single-product .eventThumbsSlider .swiper-button-next {
  left: unset !important;
  right: 10px !important;
}
.single-product .eventThumbsSlider .swiper-button-next::after {
  transform: scaleX(-1);
}
.single-product .swiper-wrapper {
  margin: 0px !important;
  padding: 0px !important;
}
.single-product .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .single-product .contain {
    padding-inline-start: 150px;
  }
  .single-product .contain.padding-last {
    padding-inline-end: 150px;
    padding-inline-start: 0px;
  }
}
.single-product .contain h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .single-product .contain h1 {
    font-size: 20px;
  }
}
.single-product .contain p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px;
}

.not-found {
  padding-top: 150px;
}
@media (max-width: 992px) {
  .not-found {
    padding-top: 100px;
  }
}
.not-found .contain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
  align-content: center;
}
.not-found .contain img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .not-found .contain img {
    height: 250px;
  }
}
.not-found .contain h1 {
  font-size: 25px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .not-found .contain h1 {
    font-size: 15px;
  }
}

.subproduct {
  width: 100%;
  padding-top: 150px;
}
@media (max-width: 992px) {
  .subproduct {
    padding-top: 100px;
  }
}
.subproduct .nav {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 0px;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.subproduct .nav .nav-item {
  width: calc(33.3333333333% - 0px);
  height: 50px;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
  border-inline-end: 1px solid var(--light-color);
}
.subproduct .nav .nav-item:last-child {
  border-inline-end: 0px !important;
}
.subproduct .nav .nav-item .nav-link {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  padding: 0px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  background-color: var(--primary-color);
  padding-inline-end: 30px !important;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .subproduct .nav .nav-item .nav-link {
    font-size: 10px !important;
    padding: 0px !important;
  }
  .subproduct .nav .nav-item .nav-link::after {
    display: none;
  }
}
.subproduct .nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("../images/icons/down_arrow.svg") center/contain no-repeat;
  top: calc(50% - 7.5px);
  right: 10px;
  filter: var(--light-filter);
  transition: all 0.3s linear;
}
.subproduct .nav .nav-item .nav-link.active {
  background-color: var(--light-color);
  padding: 0px;
  border-radius: 0px;
  color: var(--primary-color);
}
.subproduct .nav .nav-item .nav-link.active::after {
  transform: rotate(180deg);
  filter: var(--primary-filter);
}

.contact {
  padding-top: 150px;
}
@media (max-width: 992px) {
  .contact {
    padding: 100px 0px 400px !important;
  }
}
.contact .heading {
  text-align: start !important;
}
.contact .contact-img {
  width: 45%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 992px) {
  .contact .contact-img {
    width: 100%;
    height: 400px;
  }
}
.contact .form-contain .form-control {
  border-color: var(--dark-color) !important;
  color: var(--dark-color) !important;
}
.contact .form-contain .form-control::-moz-placeholder {
  color: var(--gray-color) !important;
}
.contact .form-contain .form-control::placeholder {
  color: var(--gray-color) !important;
}
@media (min-width: 960px) {
  .contact .form-contain .custom-btn {
    margin-inline-start: auto !important;
    margin-inline-end: 0px !important;
  }
}

.form-contain .form-group {
  width: 100%;
  margin-bottom: 20px;
}
.form-contain .form-group .form-control {
  width: 100%;
  height: 50px;
  background-color: transparent;
  border-radius: 0px;
  border: 0px;
  color: var(--light-color);
  border-bottom: 1px solid var(--light-color);
  resize: none;
}
.form-contain .form-group .form-control.text-area {
  height: 100px;
  padding: 20px 10px;
}
.form-contain .form-group .form-control::-moz-placeholder {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control::placeholder {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .error {
  display: none;
  align-items: center;
  align-content: center;
  margin-top: 5px !important;
  position: relative;
  z-index: 9;
  padding-inline-start: 30px;
  color: var(--danger-color);
  font-size: 16px;
  font-weight: 500;
}
.form-contain .form-group .error::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/form/error.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 0;
  z-index: -1;
}
html[dir=ltr] .form-contain .form-group .error::after {
  left: 0px;
  right: unset;
}
.form-contain .custom-btn {
  margin: 20px auto 0px;
}

.modal-dialog {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px;
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content .modal-body .form-contain {
  padding: 60px 40px;
}
.modal-dialog .modal-content .modal-body .form-contain .form-control {
  background-color: #FBFBFB;
}
.modal-dialog .modal-content .modal-body .form-contain .text-area {
  height: 140px;
}
.modal-dialog .modal-content .modal-body .form-contain .custom-btn {
  width: 100% !important;
}
.modal-dialog .modal-content .modal-body .form-contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .form-contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 20px 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .contain {
  width: 100%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}
@media (max-width: 960px) {
  .modal-dialog .modal-content .modal-body .contain {
    padding: 30px 20px;
  }
}
.modal-dialog .modal-content .modal-body .contain img {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.modal-dialog .modal-content .modal-body .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain .link {
  font-size: 15px;
  font-weight: 900;
  color: var(--primary-color);
}
.modal-dialog .modal-content .modal-body .contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px 0px;
}

input[type=file] {
  display: none;
}

.form-label-shape {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid black;
  padding: 0px 12px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  border-radius: 0px;
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 0px;
  cursor: pointer;
}
.form-label-shape::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/attach.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: calc(50% - 12px);
  left: 12px;
  filter: var(--dark-filter);
}
html[dir=ltr] .form-label-shape::after {
  right: 12px;
  left: unset;
}

.file__value {
  margin: 10px 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.file__value--text {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
}

.file__value--remove {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.file__value--remove::after {
  content: "X";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--danger-color);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 50%;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--light-color);
  font-size: 15px;
}
html[dir=ltr] .file__value--remove::after {
  left: unset;
  right: 0px;
}

footer {
  width: 100%;
  padding: 40px 0px 0px;
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
}
footer .contain {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: center;
  align-content: center;
}
footer .contain .brand-name img {
  width: 180px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
footer .contain .navbar-nav {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 992px) {
  footer .contain .navbar-nav {
    gap: 15px;
  }
}
footer .contain .navbar-nav .nav-item {
  padding: 5px 10px;
  margin: 0px;
  border-inline-end: 1px solid var(--light-color);
}
footer .contain .navbar-nav .nav-item:last-child {
  border-inline-end: 0px;
}
@media (max-width: 992px) {
  footer .contain .navbar-nav .nav-item {
    border-inline-end: 0px;
    padding: 0px !important;
  }
}
footer .contain .navbar-nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  padding: 0px;
}
footer .contain .list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
footer .contain .list li a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
footer .contain .list li a .data {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
}
footer .contain .list li a .name {
  font-size: 15px;
  font-weight: 900;
  color: var(--light-color);
}
footer .copyrights {
  width: 100%;
  margin-top: 40px;
  position: relative;
  z-index: 9;
  padding: 10px 0px;
  background-color: rgba(245, 245, 245, 0.5);
}
footer .copyrights .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 992px) {
  footer .copyrights .contain {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
  }
}
footer .copyrights .contain p, footer .copyrights .contain a {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}

.fixed-icon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
}
.fixed-icon .icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(245, 245, 245, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.fixed-icon .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
.fixed-icon .icon.whats {
  background-color: #25D366;
}
.fixed-icon .icon.phone {
  background-color: var(--primary-color);
}
.fixed-icon .icon.loaction {
  background-color: var(--secondary-color);
}

header .contain .list h3 {
    margin-bottom: 0px;
    font-size: 30px;
    font-weight: 900;
}

header .contain .list ul {
    margin-bottom: 20px;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
  .prodcutDetailsSwiper img {
    height: 250px !important;
  }
}/*# sourceMappingURL=style.css.map */