@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,800;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,500&display=swap");

@font-face {
  font-family: bahij;
  src: url(../fonts/Bahij_TheSansArabic-Plain.ttf);
}

:root {
  --body-family: bahij, sans-serif;
  --heading-family: bahij, sans-serif;
  --main-color: #f8a81b;
  --body-color: #555555;
  --heading-color: #040f28;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-size: 16px;
  --transition: all ease 0.5s;
  --border-radius: 4px;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

* {
  font-family: var(--body-family);
}

body {
  font-size: var(--font-size);
  font-family: var(--body-family);
  color: var(--body-color);
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

.owl-nav {
  display: none;
}

a {
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  color: var(--body-color);
}

a:hover {
  text-decoration: none;
  color: var(--main-color);
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-family);
  color: var(--heading-color);
  font-weight: 700;
}

h3 {
  font-size: 24px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: var(--font-size);
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

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

.form-control {
  height: 50px;
  color: var(--main-color);
  border: 1px solid #ebebeb;
  background-color: #f7f7f7;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder {
  color: #676a6a;
}

.form-control:-ms-input-placeholder {
  color: #676a6a;
}

.form-control::-ms-input-placeholder {
  color: #676a6a;
}

.form-control::placeholder {
  color: #676a6a;
}

.form-control:focus {
  color: var(--black-color);
  background-color: transparent;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: 0;
  border: 1px solid var(--main-color);
}

.form-control:hover:focus,
.form-control:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/*
Bg-color Style*/
.ebeef5-bg-color {
  background-color: #ebeef5;
}

.f5f6fa-bg-color {
  background-color: #f5f6fa;
}

/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: var(--white-color);
  padding: 15px 40px;
  line-height: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  background-color: var(--main-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--main-color);
  /* text-transform: capitalize; */
}

.default-btn:hover {
  color: var(--main-color);
  border-color: var(--main-color) !important;
  background-color: transparent;
}

/*
Read More Btn Area Style*/
.read-more {
  font-weight: 500;
  font-size: 15px;
  color: var(--heading-color);
  font-family: var(--heading-family);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 30px;
}

.read-more span {
  font-size: 13px;
  font-weight: 700;
  position: relative;
  margin-left: 5px;
  margin-bottom: 0;
  color: var(--heading-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.read-more:hover {
  color: var(--main-color);
}

.read-more:hover span {
  color: var(--main-color);
}

/*
Section Title Area Style*/
.section-title {
  max-width: 750px;
  margin: -6px auto 50px;
  text-align: center;
}

.section-title span {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
  color: var(--main-color);
}

.section-title h2 {
  /* font-size: 40px; */
  margin-bottom: 15px;
  position: relative;
}

.section-title h2:last-child {
  margin-bottom: 0;
}

.section-title.white-title span {
  color: var(--main-color);
}

.section-title.white-title h2 {
  color: var(--white-color);
}

/*
Top Header Area Style
======================================================*/
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

.top-header {
  background-color: var(--heading-color);
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
}

.top-header .header-left-content {
  padding-left: 30px;
}

.top-header .header-left-content li {
  display: inline-block;
  margin-right: 30px;
}

.top-header .header-left-content li:last-child {
  margin-right: 0;
}

.top-header .header-left-content li i {
  color: var(--white-color);
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
}

.top-header .header-left-content li a {
  color: var(--white-color);
  font-size: 15px;
}

.top-header .header-left-content li a:hover {
  color: var(--main-color);
}

.top-header .header-right-content {
  padding-right: 30px;
  float: right;
}

.top-header .header-right-content li {
  display: inline-block;
  margin-right: 15px;
}

.top-header .header-right-content li:last-child {
  margin-right: 0;
}

.top-header .header-right-content li a {
  color: var(--white-color);
  font-size: 15px;
}

.top-header .header-right-content li a i {
  color: var(--white-color);
  display: inline-block;
  font-size: 18px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.top-header .header-right-content li a:hover {
  color: var(--main-color);
}

.top-header .header-right-content li a:hover i {
  color: var(--main-color);
}

.top-header.top-header-style-two .header-left-content {
  margin-left: 230px;
}

.top-header.top-header-style-three {
  background-color: transparent;
}

.top-header.top-header-style-three .header-left-content {
  padding-right: 30px;
  padding-left: 0;
  float: right;
}

.top-header.top-header-style-three .header-right-content {
  padding-left: 30px;
  float: left;
  padding-right: 0;
}

/*
Nav Area Style
======================================================*/
.navbar-area .main-nav {
  background-color: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-area .main-nav .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.navbar-area .main-nav .navbar {
  padding: 0;
}

.navbar-area .main-nav .navbar .navbar-brand {
  font-size: 0;
  padding: 0;
  width: 180px;
}

.about-sentence a {
  font-size: 25px;
  color: var(--heading-color);
  font-weight: 600;
}

.navbar-area .main-nav nav .navbar-nav .nav-item {
  position: relative;
  padding: 0 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  /* text-transform: capitalize; */
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-left: 0;
  margin-right: 0;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  /* background-color: var(--main-color); */
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a:hover::before {
  background-color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a i {
  font-size: 22px;
  line-height: 0;
  position: relative;
  top: 4px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
  color: var(--white-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a.active:hover {
  color: var(--white-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a.active::before {
  width: 100%;
  right: auto;
  left: 0;
}

.language a {
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 98%;
  left: 0;
  padding: 0;
  opacity: 0;
  width: 250px;
  visibility: hidden;
  z-index: 99;
  display: block;
  padding: 0;
  background-color: var(--white-color);
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  padding: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 15px;
  color: var(--body-color);
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px dashed #eeeeee;
  margin-left: 0;
  margin-right: 0;
  /* text-transform: capitalize; */
  display: block;
  font-weight: 600;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  top: 12px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 20px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--white-color);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu {
  left: 100%;
  top: 0;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:last-child
  a {
  border-bottom: none;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:hover
  .dropdown-menu {
  top: -2px !important;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu {
  position: absolute;
  left: -98%;
  top: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  position: absolute;
  right: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: var(--body-color);
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover {
  color: var(--white-color);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus {
  color: var(--white-color);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: var(--white-color);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -2px !important;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:hover
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}

.navbar-area
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu:last-child
  .dropdown-menu {
  left: auto;
  right: -100%;
}

.navbar-area .main-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 98%;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: var(--white-color);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-area.is-sticky.navbar-area-style-two .main-nav .navbar .navbar-brand {
  position: absolute;
  top: 0px;
  left: 0;
  max-width: 108px;
}

.navbar-area.is-sticky.navbar-area-style-two
  .others-option.others-option-style-two {
  margin-left: 160px;
}

.navbar-area.is-sticky.navbar-area-style-two
  .others-option.others-option-style-two
  .search-box
  .form-control {
  width: 300px;
}

.navbar-area.is-sticky.navbar-area-style-three {
  background-color: var(--heading-color);
}

.navbar-area.is-sticky.navbar-area-style-three .main-nav {
  border-color: var(--heading-color);
}

.navbar-area .others-option {
  margin-left: 30px;
}

.navbar-area .others-option .search-box {
  display: inline-block;
  position: relative;
}

.navbar-area .others-option .search-box .form-control {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  height: 50px;
  width: 300px;
  border-radius: 0 50px 50px 0;
}

.navbar-area .others-option .search-box .form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid var(--heading-color);
}

.navbar-area .others-option .search-box .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--heading-color);
  border-radius: 0 50px 50px 0;
  color: var(--white-color);
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 20px;
}

.navbar-area .others-option .search-box .search-btn:hover {
  background-color: var(--main-color);
}

.navbar-area .others-option .cart-icon {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: 0;
}

.navbar-area .others-option .cart-icon a i {
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  line-height: 1;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--main-color);
  display: inline-block;
  color: var(--white-color);
  border-radius: 50px;
}

.navbar-area .others-option .cart-icon a span {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background-color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  color: var(--heading-color);
  font-size: 11px;
}

.navbar-area .others-option .cart-icon a:hover i {
  background-color: var(--heading-color);
}

.navbar-area.navbar-area-style-two .main-nav .navbar .navbar-brand {
  position: absolute;
  top: -54px;
  left: 0;
}

.navbar-area.navbar-area-style-two
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a::before {
  display: none;
}

.navbar-area.navbar-area-style-two
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a.active {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-two .main-nav nav .navbar-nav .nav-item a:hover {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-two
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a.active {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-two
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a:hover {
  color: var(--main-color);
  background-color: transparent;
}

.navbar-area.navbar-area-style-two
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-two
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-two .others-option.others-option-style-two {
  margin-left: 210px;
}

.navbar-area.navbar-area-style-two
  .others-option.others-option-style-two
  .search-box
  .form-control {
  border-radius: 0;
  width: 250px;
}

.navbar-area.navbar-area-style-two
  .others-option.others-option-style-two
  .search-box
  .search-btn {
  background-color: transparent;
  color: var(--main-color);
  line-height: 51px;
}

.navbar-area.navbar-area-style-two
  .others-option.others-option-style-right
  .sidebar-menu {
  display: inline-block;
  margin-left: 30px;
}

.navbar-area.navbar-area-style-two
  .others-option.others-option-style-right
  .sidebar-menu
  a
  i {
  font-size: 37px;
  background-color: var(--main-color);
  height: 50px;
  width: 60px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  color: var(--white-color);
}

.navbar-area.navbar-area-style-two
  .others-option.others-option-style-right
  .cart-icon {
  margin-left: 0;
}

.navbar-area.navbar-area-style-two
  .others-option.others-option-style-right
  .cart-icon
  a
  i {
  background-color: transparent;
  color: var(--heading-color);
  width: unset;
  height: unset;
  line-height: unset;
  font-size: 25px;
}

.navbar-area.navbar-area-style-two
  .others-option.others-option-style-right
  .cart-icon
  a
  span {
  background-color: var(--main-color);
  color: var(--white-color);
  top: -5px;
  right: -6px;
}

.navbar-area.navbar-area-style-three .main-nav {
  background-color: transparent;
  border-top: 1px solid #3d4456;
  border-bottom: 1px solid #3d4456;
}

.navbar-area.navbar-area-style-three .main-nav nav .navbar-nav .nav-item a {
  color: var(--white-color);
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a::before {
  display: none;
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a::after {
  display: none;
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a.active {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  a:hover {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a.active {
  color: var(--main-color);
  background-color: transparent;
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a:hover {
  color: var(--main-color);
  background-color: transparent;
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-three
  .main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover {
  color: var(--main-color);
}

.navbar-area.navbar-area-style-three .others-option .search-box {
  position: relative;
  top: -5px;
}

.navbar-area.navbar-area-style-three .others-option .search-box .form-control {
  border-radius: 0;
  border: 1px solid #636a79;
  background-color: transparent;
  color: var(--white-color);
}

.navbar-area.navbar-area-style-three .others-option .search-box .search-btn {
  border-radius: 0;
  border-left: 1px solid #636a79;
  color: var(--main-color);
  background-color: transparent;
}

.navbar-area.navbar-area-style-three
  .others-option
  .search-box
  .search-btn:hover {
  color: var(--white-color);
}

.navbar-area.navbar-area-style-three .others-option .cart-icon {
  margin-left: 30px;
  position: relative;
  top: 0;
}

.navbar-area.navbar-area-style-three .others-option .cart-icon a i {
  background-color: transparent;
  color: var(--white-color);
  width: unset;
  height: unset;
  line-height: unset;
  font-size: 25px;
}

.navbar-area.navbar-area-style-three .others-option .cart-icon a span {
  background-color: var(--main-color);
  color: var(--white-color);
  top: -3px;
  right: -6px;
}

.navbar-area.navbar-area-style-three .others-option .sidebar-menu {
  display: inline-block;
  margin-left: 30px;
  position: relative;
  top: 3px;
}

.navbar-area.navbar-area-style-three .others-option .sidebar-menu a i {
  font-size: 37px;
  display: inline-block;
  text-align: center;
  color: var(--white-color);
}

.dropdown {
  display: none;
  position: absolute;
  opacity: 0;
  /* transform: translateY(20px); */
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 180px;
}

.dropdown a {
  width: 100%;
}

li.has-dropdown:hover,
li.first-has-dropdown:hover {
  position: relative;
}

li.first-has-dropdown:hover > .dropdown {
  position: absolute;
  top: 100% !important;
  left: -43% !important;
  display: block;
  opacity: 1;
}

li.has-dropdown:hover > .dropdown {
  position: absolute;
  left: 100% !important;
  top: 0 !important;
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .about-sentence a {
    font-size: 20px;
  }
}

@media (max-width: 1160px) {
  .navbar-area .main-nav nav .navbar-nav .nav-item a {
    font-size: 14px;
  }

  .about-sentence a {
    font-size: 18px;
  }

  .dropdown {
    width: 160px;
  }
}

@media (max-width: 1080px) {
  .about-sentence a {
    font-size: 16px;
  }
}

@media (max-width: 1040px) {
  .about-sentence a {
    font-size: 14px;
  }
}

@media (max-width: 1040px) {
  .navbar-area .main-nav nav .navbar-nav .nav-item a {
    font-size: 13px;
  }
}

@media only screen and (max-width: 991px) {
  li.first-has-dropdown:hover > .dropdown,
  li.has-dropdown:hover > .dropdown {
    position: initial;
  }
}

@media only screen and (min-width: 991px) {
  li.first-has-dropdown:hover > .dropdown a,
  li.has-dropdown:hover > .dropdown a {
    padding: 10px !important;
  }
}
/*
Mobile Nav Area Style
======================================================*/
.mobile-nav {
  display: none;
}

.mobile-nav .about-sentence {
  position: absolute;
  top: 50px;
  right: 45%;
  z-index: 999;
  transform: translateX(50%);
}

.mobile-nav .about-sentence a {
  font-size: 20px;
}

@media (max-width: 500px) {
  .mobile-nav .about-sentence a {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .mobile-nav .about-sentence {
    right: 42%;
  }
  .mobile-nav .about-sentence a {
    font-size: 14px;
  }
}

/*
Hero Slider Area Style
======================================================*/
.hero-slider-item {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}

.hero-slider-item.bg-1 {
  background-image: url(../../assets/images/slider/slider-1.jpg);
}

.hero-slider-item.bg-2 {
  background-image: url(../../assets/images/slider/slider-2.jpg);
}

.hero-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 15, 40, 0.3);
}

.hero-slider-item .border-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 94, 20, 0.2);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 280px;
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  text-align: center;
}

.hero-slider-content {
  max-width: 900px;
  margin: 130px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-slider-content h1 {
  font-size: 40px;
  color: var(--white-color);
  margin-bottom: 15px;
}

.hero-slider-content p {
  color: var(--white-color);
  margin-bottom: 45px;
  font-size: 22px;
}

.hero-slider-content .hero-slider-btn .default-btn.active {
  margin-left: 30px;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  background-color: transparent;
}

.hero-slider-content .hero-slider-btn .default-btn.active:hover {
  background-color: var(--main-color);
}

.hero-slider-area .owl-item.active .hero-slider-item::before {
  -webkit-animation: 3s 0.3s fadeInUp both;
  animation: 3s 0.3s fadeInUp both;
}

.hero-slider-area .owl-item.active .hero-slider-content {
  overflow: hidden;
}

.hero-slider-area .owl-item.active .hero-slider-content.one img {
  -webkit-animation: 2s 0.2s fadeInLeft both;
  animation: 2s 0.2s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content.one h1 {
  -webkit-animation: 2s 0.2s fadeInLeft both;
  animation: 2s 0.2s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content.one p {
  -webkit-animation: 2s 0.2s fadeInRight both;
  animation: 2s 0.2s fadeInRight both;
}

.hero-slider-area .owl-item.active .hero-slider-content.one .hero-slider-btn {
  -webkit-animation: 2s 0.2s fadeInUpBig both;
  animation: 2s 0.2s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .hero-slider-content.two img {
  -webkit-animation: 2s 0.2s fadeInUpBig both;
  animation: 2s 0.2s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .hero-slider-content.two h1 {
  -webkit-animation: 2s 0.2s fadeInUpBig both;
  animation: 2s 0.2s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .hero-slider-content.two p {
  -webkit-animation: 3s 0.3s fadeInUpBig both;
  animation: 3s 0.3s fadeInUpBig both;
}

.hero-slider-area .owl-item.active .hero-slider-content.two .hero-slider-btn {
  -webkit-animation: 3s 0.3s fadeInUpBig both;
  animation: 3s 0.3s fadeInUpBig both;
}

.hero-slider-area .owl-next {
  position: absolute;
  top: 50%;
  right: 30px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.hero-slider-area .owl-next i {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  width: 60px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 26px;
}

.hero-slider-area .owl-next i:hover {
  background-color: var(--main-color) !important;
  border-color: var(--main-color);
}

.hero-slider-area .owl-prev {
  position: absolute;
  top: 50%;
  left: 30px;
  margin: 0 !important;
  border-radius: 0 !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.hero-slider-area .owl-prev i {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  width: 60px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 26px;
}

.hero-slider-area .owl-prev i:hover {
  background-color: var(--main-color) !important;
  border-color: var(--main-color);
}

.hero-slider-area .owl-theme .owl-nav {
  margin-top: 0 !important;
}

.hero-slider-area.owl-theme .owl-nav {
  margin-top: 0 !important;
}

.hero-slider-area .owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
}

.hero-slider-area.hero-slider-two .hero-slider-item {
  height: 870px;
}

.hero-slider-area.hero-slider-two .hero-slider-content {
  max-width: 950px;
  margin-top: 0;
}

.hero-slider-area.hero-slider-two .hero-slider-content img {
  width: unset;
  margin: 0 auto 35px;
}

.hero-slider-area.hero-slider-two .hero-slider-content p {
  font-size: 24px;
}

.hero-slider-area.owl-theme .owl-dots {
  margin-top: 0 !important;
  line-height: 1;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.hero-slider-area.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background: #fff;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 0;
  border-radius: 50%;
}

.hero-slider-area.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--main-color);
}

.hero-slider-area.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--main-color);
}

.banner-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 770px;
  position: relative;
  background-image: url(../../assets/img/banner-bg.jpg);
}

.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040f28;
  opacity: 0.85;
}

.banner-area .banner-content {
  max-width: 870px;
  margin: 140px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-area .banner-content h1 {
  font-size: 80px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.banner-area .banner-content h1 span {
  color: var(--main-color);
}

.banner-area .banner-content .video-btn {
  background-color: rgba(101, 48, 34, 0.9);
}

.banner-area .banner-content .video-btn::before,
.banner-area .banner-content .video-btn::after {
  -webkit-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite;
  background-color: rgba(101, 48, 34, 0.9);
}

/*
Who We Are Content Area Style
======================================================*/
.who-we-are-content .top-title {
  color: var(--main-color);
  position: relative;
  line-height: 1;
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 10px;
  font-family: var(--heading-family);
  font-size: 16px;
}

.who-we-are-content .top-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--main-color);
}

.who-we-are-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.who-we-are-content h2 span {
  color: var(--main-color);
}

.who-we-are-content .single-who-we-are {
  margin-top: 25px;
  margin-bottom: 30px;
}

.who-we-are-content .single-who-we-are i {
  color: var(--main-color);
  display: inline-block;
  margin-bottom: 25px;
  font-size: 50px;
  line-height: 1;
}

.who-we-are-content .single-who-we-are h3 {
  margin-bottom: 10px;
}

.who-we-are-content .single-who-we-are p {
  margin-bottom: 20px;
}

.who-we-are-area video {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

/*
Feathers Area Style
======================================================*/
.feathers-area {
  background-image: url(../../assets/images/features.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
}

.feathers-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  opacity: 0.8;
}

.feathers-area.feathers-area-style-two {
  background-image: unset;
}

.feathers-area.feathers-area-style-two::before {
  display: none;
}

.feathers-area.feathers-area-style-two .container {
  background-color: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  margin-top: -60px;
  position: relative;
  z-index: 1;
  padding-top: 35px;
  padding-bottom: 20px;
}

.feathers-area.feathers-area-style-two
  .col-lg-4:first-child
  .single-feathers::before {
  display: none;
}

.feathers-area.feathers-area-style-two .single-feathers {
  text-align: center;
  padding: 30px;
  position: relative;
  padding-bottom: 0;
}

.feathers-area.feathers-area-style-two .single-feathers::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 1px;
  height: 100%;
  background-color: #eeeeee;
}

.feathers-area.feathers-area-style-two .single-feathers i {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin-bottom: 25px;
}

.feathers-area.feathers-area-style-two .single-feathers i::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffdfd0),
    to(#ffffff)
  );
  background-image: linear-gradient(#ffdfd0, #ffffff);
  z-index: -1;
  border-radius: 50%;
}

.feathers-area.feathers-area-style-two .single-feathers h3 {
  color: var(--heading-color);
}

.feathers-area.feathers-area-style-two .single-feathers p {
  color: var(--body-color);
}

.single-feathers {
  position: relative;
  padding-left: 85px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 30px;
}

.single-feathers i {
  color: var(--main-color);
  font-size: 60px;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}

.single-feathers h3 {
  color: var(--white-color);
  margin-bottom: 15px;
}

.single-feathers p {
  color: var(--white-color);
}

.single-feathers:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .single-feathers {
    padding: 0;
  }
}

/*
Service Area Style
======================================================*/
.single-categories {
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 530px;
  border-radius: 5px;
}

.single-categories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  opacity: 0.5;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-categories-info {
  padding: 30px;
}

.single-categories img {
  height: 300px !important;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.single-categories p {
  margin-bottom: 17px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-categories:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.single-categories:hover::before {
  background-color: var(--main-color);
  opacity: 0.9;
  border-radius: 5px;
}

.single-categories:hover h4 {
  color: var(--white-color);
}

.single-categories:hover p {
  color: var(--white-color);
}

.single-categories:hover .read-more {
  color: var(--white-color);
  margin-top: 30px;
}

.single-categories:hover .read-more span {
  color: var(--white-color);
}

.single-categories .more {
  cursor: pointer;
}

.service-info-overlay {
  width: 50%;
  background-color: #fff;
  border-radius: 10px;
  height: 90vh;
  overflow: auto;
  position: relative;
  /* overflow-y: scroll; */
  padding: 20px;
}

.service-info-overlay::-webkit-scrollbar {
  width: 5px!important;
}

.service-info-overlay #overlay-content {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  background-color: #f9f9f9;
  object-fit: cover;
}

.service-info-overlay .service-info p {
  margin: 30px 0;
}

#overlay .service-info-overlay span.close {
  top: 15px;
  right: 15px;
}

@media (max-width: 1080px) {
  .service-info-overlay {
    width: 70%;
  }
}

@media (max-width: 500px) {
  .service-info-overlay {
    width: 90%;
  }
}

@media (max-width: 375px) {
  .service-info-overlay #overlay-content {
    width: 250px;
    height: 300px;
  }
}

/*
Team Area Style
======================================================*/

.team-area .swiper {
  height: unset !important;
}

/* .team-area .swiper-wrapper{
  display: flex;
  justify-content: center;
} */

.team-area .swiper-slide {
  opacity: unset !important;
}

.single-team-member {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 30px;
  cursor: pointer;
  width: 100%;
}

.swiper-slide .single-team-member img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  border-radius: unset;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.single-team-member .team-content {
  background-color: #e9e9e9;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 20px;
  /* margin-left: 30px; */
  /* backdrop-filter: blur(5px); */
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  /* margin-top: 30px; */
  /* border-radius: 5px; */
  width: 100%;
}

.single-team-member .team-content span {
  display: block;
  margin-bottom: 0;
  color: var(--heading-color);
  font-size: 20px;
}

.single-team-member .team-content h3 {
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 22px;
}

.single-team-member:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.single-team-member:hover .team-content {
  background-color: var(--main-color);
}

.single-team-member:hover .team-content h3,
.single-team-member:hover .team-content span {
  color: var(--white-color);
}

.team-info span,
.team-info h3 {
  color: var(--main-color);
}

.team-info span{
  font-size: 20px;
}

.team-info h3{
  font-size: 22px;
}

.team-member-info {
  width: 50%;
  background-color: #fff;
  border-radius: 10px;
  height: 90vh;
  overflow: auto;
  position: relative;
  /* overflow-y: scroll; */
  padding: 20px;
}

.team-member-info::-webkit-scrollbar {
  width: 5px!important;
}

.team-member-info #overlay-content {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  background-color: #f9f9f9;
  object-fit: cover;
}

.team-member-info .team-info p {
  margin: 30px 0;
}

#overlay .team-member-info span.close {
  top: 15px;
  right: 15px;
}

@media (max-width: 1080px) {
  .team-member-info {
    width: 70%;
  }
}

@media (max-width: 500px) {
  .team-member-info {
    width: 90%;
  }
}

@media (max-width: 375px) {
  .team-member-info #overlay-content {
    width: 250px;
    height: 300px;
  }
}

/*
Partner Area Style
======================================================*/
.partner-area {
  background-image: url(../../assets/images/clients.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  text-align: center;
}

.partner-area .owl-stage {
  display: flex;
  justify-content: center;
}

.partner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  opacity: 0.9;
  z-index: -1;
}

.partner-area .partner-item img {
  height: 150px !important;
  object-fit: cover;
  width: 200px !important;
}

/*
Testimonials Area Style
======================================================*/
.testimonials-area .testimonials-slider {
  position: relative;
}

.testimonials-area .testimonials-slider .row {
  margin-left: auto;
  margin-right: unset;
  max-width: 970px;
  direction: ltr;
}

.testimonials-area .testimonials-slider .testimonials-left-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testimonials-area .testimonials-slider img {
  border: 10px solid var(--white-color);
  height: 300px;
  width: 300px !important;
  object-fit: cover;
}

.testimonials-area .testimonials-slider.owl-theme .owl-nav {
  margin-top: 0 !important;
  position: absolute;
  bottom: -97px;
  left: 0;
  right: 0;
}

.testimonials-area .testimonials-slider.owl-theme .owl-next {
  margin: 0;
}

.testimonials-area .testimonials-slider.owl-theme .owl-next i {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  width: 60px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 26px;
  border-left: none;
}

.testimonials-area .testimonials-slider.owl-theme .owl-next i:hover {
  background-color: var(--main-color) !important;
  border-color: var(--main-color);
  color: var(--white-color) !important;
}

.testimonials-area .testimonials-slider.owl-theme .owl-prev {
  margin: 0;
}

.testimonials-area .testimonials-slider.owl-theme .owl-prev i {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  width: 60px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 26px;
}

.testimonials-area .testimonials-slider.owl-theme .owl-prev i:hover {
  background-color: var(--main-color) !important;
  border-color: var(--main-color);
  color: var(--white-color) !important;
}

.testimonials-area .testimonials-slider.owl-theme .owl-nav {
  margin-top: 0 !important;
}

.testimonials-area
  .testimonials-slider
  .owl-theme
  .owl-nav
  [class*="owl-"]:hover {
  background-color: transparent;
}

.testimonials-content .testimonials-name {
  position: relative;
  margin-bottom: 20px;
  padding-left: 70px;
}

.testimonials-content .testimonials-name i {
  font-size: 50px;
  color: var(--main-color);
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
}

.testimonials-content .testimonials-name h3 {
  margin-bottom: 5px;
}

.testimonials-all-content {
  position: relative;
}

.testimonials-all-content .testimonials-left-img {
  position: absolute;
  top: -95px;
  left: 0;
}

.testimonials-all-content .testimonials-left-img img {
  filter: grayscale(1);
}

@media (max-width: 991px) {
  .testimonials-content .testimonials-name {
    padding-left: 0;
  }
}

/*
Main Contact Area Style
=====================================================*/
.main-contact-area .contact-wrap {
  max-width: unset;
}

.main-contact-area .contact-wrap .contact-title h2 {
  margin-bottom: 20px;
  font-size: 30px;
}

.main-contact-area .contact-wrap .form-group {
  margin-bottom: 30px;
}

.main-contact-area .contact-wrap .default-btn {
  margin: auto;
  display: table;
  cursor: pointer;
}

.main-contact-area .contact-wrap .contact-form #msgSubmit {
  position: unset;
  text-align: center;
  margin-top: 20px;
}

.main-contact-area .contact-wrap .contact-form .hidden {
  display: none;
}

.main-contact-area .contact-info h3 {
  color: var(--white-color);
  font-size: 24px;
}

.main-contact-area .contact-info p {
  color: #e6e6e6;
  margin-bottom: 25px;
}

.main-contact-area .branch i {
  font-size: 30px;
  color: #f8a821;
}

.main-contact-area .branch .info p {
  line-height: 1.5rem;
}

.main-contact-area .branch .info p:nth-of-type(1) {
  font-size: 18px;
  margin-bottom: 10px;
}

.main-contact-area .branch .info p:nth-of-type(2) {
  font-size: 15px;
  margin-bottom: 20px;
  color: #777;
}

.accordion-button {
  font-size: 18px !important;
}

.main-contact-area .accordion-button:not(.collapsed) {
  color: #f8a821 !important;
}

.main-contact-area .accordion-button::after {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.list-unstyled {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}

.map-area iframe {
  height: 480px;
  width: 100%;
  border: none !important;
  display: block;
}

/*
Footer Top Area Style
======================================================*/
.footer-top-area {
  background-color: white;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget img {
  margin-bottom: 15px;
}

.single-footer-widget p {
  margin-bottom: 15px;
  color: var(--body-color);
}

.social-icon {
  line-height: 1;
}

.social-icon li {
  display: inline-block;
  margin-right: 5px;
}

.social-icon li a {
  width: 30px;
  height: 30px;
  line-height: 28px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  text-align: center;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon li a svg {
  fill: var(--main-color) !important;
}

.social-icon li a:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background-color: var(--main-color);
  color: #fff;
}

.social-icon li a:hover svg {
  fill: #fff !important;
}

.single-footer-widget h3 {
  color: var(--body-color);
  font-size: 24px;
  margin-bottom: 40px;
}

.single-footer-widget .import-link li {
  margin-bottom: 10px;
}

.single-footer-widget .import-link li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .import-link li a {
  color: var(--body-color);
}

.single-footer-widget .import-link li a:hover {
  color: var(--main-color);
}

.single-footer-widget .address .location {
  padding-left: 40px;
  position: relative;
  color: var(--body-color);
}

.single-footer-widget .address .location i {
  position: absolute;
  color: var(--main-color);
  left: 0;
  /* top: 5px; */
  font-size: 25px;
}

.single-footer-widget .address li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
  cursor: pointer;
}

.single-footer-widget .address li a {
  color: var(--body-color);
  display: block;
}

.single-footer-widget .address li a:hover {
  color: var(--main-color);
}

.single-footer-widget .address li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .address li i {
  position: absolute;
  color: var(--main-color);
  left: 0;
  /* top: 5px; */
  font-size: 25px;
}

.single-footer-widget .address li:hover a,
.single-footer-widget .address li:hover p {
  color: var(--main-color);
}

.single-footer-widget .time a {
  color: var(--body-color);
  padding: 15px;
  margin-bottom: 20px;
  background: #55948b40;
  border-radius: 10px;
  width: fit-content;
}

.single-footer-widget .time li span {
  float: right;
}

/*
Footer Bottom Area Style
======================================================*/
.footer-bottom-area {
  background-color: var(--body-color);
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom-area p {
  color: var(--white-color);
}

.footer-bottom-area p a {
  color: var(--main-color);
}

.footer-bottom-area p i {
  position: relative;
  top: 1px;
}

.footer-bottom-area .footer-bottom-menu {
  float: right;
}

.footer-bottom-area .footer-bottom-menu li {
  display: inline-block;
  margin-right: 15px;
}

.footer-bottom-area .footer-bottom-menu li:last-child {
  margin-right: 0;
}

.footer-bottom-area .footer-bottom-menu li a {
  color: var(--white-color);
}

.footer-bottom-area .footer-bottom-menu li a:hover {
  color: var(--main-color);
}

/*
Terms Conditions Area Style
=====================================================*/
.terms-conditions {
  max-width: 800px;
  margin: auto;
  margin-top: 10rem;
}

.terms-conditions .title {
  margin-bottom: 30px;
  text-align: center;
}

.terms-conditions .title span {
  color: var(--main-color);
  display: block;
  margin-bottom: 10px;
}

.terms-conditions .title h2 {
  font-size: 36px;
}

.terms-conditions img {
  margin-bottom: 30px;
}

.terms-conditions .conditions-content {
  margin-bottom: 30px;
}

.terms-conditions .conditions-content h3 {
  margin-bottom: 15px;
}

.terms-conditions .conditions-content p {
  margin-bottom: 10px;
}

.terms-conditions .conditions-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
  margin-top: 15px;
}

.terms-conditions .conditions-content ul li {
  margin-bottom: 10px;
}

.terms-conditions .conditions-content ul li:last-child {
  margin-bottom: 0;
}

.terms-conditions .conditions-content.six {
  margin-bottom: 0;
}

.terms-conditions .conditions-content.six p {
  margin-bottom: 0;
}

.terms-conditions .conditions-content.five {
  margin-bottom: 0;
}

.terms-conditions .conditions-content.five p {
  margin-bottom: 0;
}

/*====================================================
OTHERS STYLE AREA
======================================================*/
/*
Preloader Area Style*/
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  z-index: 9999;
  background-color: var(--white-color);
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  -webkit-animation: spin 1.7s linear infinite;
  animation: spin 1.7s linear infinite;
  z-index: 11;
}

.loaded .loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.loaded .loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.dot-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.dot-wrap .dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #262626;
  -webkit-animation: animate 4s infinite forwards ease-in-out;
  animation: animate 4s infinite forwards ease-in-out;
}

.dot-wrap .dot:nth-child(1) {
  background: #ffb607;
  left: -24px;
  top: -24px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.dot-wrap .dot:nth-child(2) {
  background: var(--main-color);
  left: 0px;
  top: -24px;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.dot-wrap .dot:nth-child(4) {
  background: #ffb607;
  left: -24px;
  top: 0px;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.dot-wrap .dot:nth-child(3) {
  background: var(--main-color);
  left: 0px;
  top: 0px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  20% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  40% {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
  60% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  80% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
  100% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  20% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  40% {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
  60% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  80% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
  100% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 88%;
  left: -10%;
  background-color: var(--main-color);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--white-color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

/* .go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
} */

/* .go-top:hover {
  color: var(--white-color);
  background-color: var(--main-color);
} */

.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus {
  color: var(--white-color);
}

.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top.active {
  border-radius: 10px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  left: 1%;
  top: unset !important;
  bottom: 22px;
}

.go-top-call.active {
  top: unset !important;
  bottom: 118px !important;
}

.go-top-whats {
  background: #29a71a !important;
}
.go-top-whats.active {
  top: unset !important;
  bottom: 70px !important;
  background: #29a71a !important;
}

/*
Nice select Area Style*/
.nice-select .list {
  width: 100%;
}

.nice-select .option:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}

.nice-select .option.selected.focus {
  color: var(--main-color);
}

/*
Page-navigation Area Style*/
.pagination-area {
  margin-top: 10px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--heading-color);
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 17px;
  background-color: #f5f6fa;
  border: 1px solid #d7d7d7;
}

.pagination-area .page-numbers:hover {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.pagination-area .page-numbers i {
  position: relative;
  font-size: 25px;
  top: 5px;
}

.pagination-area .page-numbers.current {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

/* Services Page Style */

.services-page,
.product-details,
.about-page,
#contact {
  margin-top: 11rem;
}

.services-page .cat-filter {
  padding: 1.5rem;
  /* background-color: #f1f1f1; */
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.services-page ul {
  color: #888;
  list-style-type: none;
  width: 100%;
}

.services-page ul span.main {
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.services-page ul span.main img,
.services-page ul .sub img,
.services-page ul .sub-sub img {
  width: 35px;
  height: 35px;
  background-size: cover;
  border-radius: 50%;
  margin-right: 5px;
}

.services-page ul span.main:hover,
.services-page ul span.main:hover::before,
.services-page ul span.main:hover + ul.nested > li,
.services-page ul span.main:hover + ul.nested li::after,
.services-page ul span.main:hover + ul.nested li span.main,
.services-page ul span.main:hover + ul.nested ul.nested::before,
.services-page ul span.main:hover + ul.nested::before,
.services-page ul span.main:hover + ul.nested ul.nested,
.services-page ul span.main:hover + ul.nested,
.services-page ul.nested li:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.services-page span.active {
  color: var(--main-color);
}

.services-page ul.nested {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s;
}

.selected {
  color: var(--main-color);
}

.services-page ul.nested::before {
  position: absolute;
  content: "";
  left: 1rem;
  width: 1.5rem;
  height: 100%;
  border-left: 1.3px solid var(--heading-color);
  transition: all 0.2s;
}

.services-page ul.nested li {
  padding-left: 3rem;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.services-page ul.nested li::after {
  position: absolute;
  content: "";
  left: 1rem;
  top: 0.32rem;
  width: 1.5rem;
  height: 1rem;
  border-bottom: 1.3px solid var(--heading-color);
  transition: all 0.2s;
}

.main-cat > span.main {
  font-size: 1.3rem !important;
  color: var(--heading-color) !important;
}

.main-cat:not(:first-of-type) {
  margin-top: 15px;
}

.main-cat a {
  display: inline !important;
}

.services-page .empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.services-page .empty img {
  width: 400px;
  height: 300px;
  object-fit: contain;
}

.services-page .empty p {
  font-size: 18px;
  color: var(--main-color);
}

.productItem {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 1rem;
  transition: all 0.5s linear;
  color: #000;
  cursor: pointer;
}

.productItem:hover img {
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.productItem img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.category {
  background-color: var(--main-color);
  display: inline-block;
  padding: 0.3rem 1.5rem;
  position: absolute;
  top: 1rem;
  left: -6px;
  z-index: 8;
  color: #fff;
}

.category::after {
  content: "";
  width: 500px;
  height: 10px;
  color: var(--main-color);
}

.categoryArrow {
  width: 0;
  height: 0;
  border-top: 6px solid var(--main-color);
  border-left: 6px solid transparent;
  position: absolute;
  top: 3.1rem;
  left: -6px;
}

/* Product Details Page */

.swiper,
.mySwiper4 {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.swiper-slide {
  border-radius: 5px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  user-select: none;
  cursor: pointer;
}

.mySwiper2 {
  height: 300px;
  width: 100%;
}

.mySwiper3 {
  height: 300px;
  width: 100%;
}

.mySwiper,
.mySwiper4 {
  height: 120px;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper4 {
  margin-top: 100px;
}

.mySwiper .swiper-slide,
.mySwiper4 .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active,
.mySwiper4 .swiper-slide-thumb-active {
  opacity: 1;
}

.next-btn,
.prev-btn {
  border: 1px solid var(--main-color);
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color) !important;
  transition: all 0.5s ease-in-out;
}

.next-btn::after,
.prev-btn::after {
  font-size: 10px !important;
}

.next-btn:hover,
.prev-btn:hover {
  background-color: var(--main-color) !important;
  color: #fff !important;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  text-align: center;
}

#overlay .close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  background: var(--main-color);
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

#overlay .zoom-icons {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

#overlay .zoom-icons span {
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}

.product-details .product-name {
  font-size: 1.7rem !important;
  color: var(--heading-color);
  margin-bottom: 2rem !important;
}

.product-details .cat {
  margin-top: 1.5rem;
}

.product-details .cat p {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0 !important;
}

.product-details p:last-of-type {
  margin-bottom: 0;
}

.product-details p span {
  color: var(--main-color);
  font-size: 1.1rem;
}

.product-details .product-desc {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #5b5b5b;
}

.price {
  font-size: 1.7rem !important;
  font-weight: 500 !important;
  color: var(--main-color) !important;
}

.price span {
  font-size: 1.7rem !important;
  font-weight: 500 !important;
  color: var(--main-color) !important;
}

.splitter:after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 1.4rem;
  background-color: #ff6433;
  margin: 0 0.7rem;
}

@media (max-width: 550px) {
  .mySwiper,
  .mySwiper4 {
    height: 80px;
  }
}