/* ===================
1. Google fonts
====================== */

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

/*====================
2. Theme variables
======================*/

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Barlow', sans-serif;
  /* --theme-color: #24BDC7; */
  --theme-color: #363474;
  /* --theme-color2: #F96768; */
  --theme-color2: #EE2F2D;
  --theme-color-light: rgba(37, 189, 199, .12);
  --theme-bg-light: rgba(37, 189, 199, .08);
  --body-text-color: #000;
  --color-white: #FFFFFF;
  /* --color-dark: #0C2C7A; */
  --color-dark: #2B283D;
  /* --color-blue: #0049D0; */
  --color-blue: #2B283D;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.12);
  --border-white-color2: rgba(255, 255, 255, 0.07);
  /* --footer-bg: #0C2C7A; */
  --footer-bg: #EE2F2D;
  --footer-text-color: #F5FAFF;
}




/* ===================
3. General css
====================== */

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color: var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/* ===================
preloader
====================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loader {
  position: relative;
  width: 90px;
  height: 90px;
}

.loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(calc(18deg * var(--i)))
}

.loader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-radius: 50%;
  transform: scale(0);
  animation: loader 2s linear infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes loader {
  0% {
    transform: scale(0);
  }

  10% {
    transform: scale(1.2);
  }

  80%,
  100% {
    transform: scale(0);
  }
}

.loader-plane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: loader-rotating 2s linear infinite;
  animation-delay: -1s;
}

@keyframes loader-rotating {
  0% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(370deg);
  }
}

.loader-plane::before {
  content: '\f072';
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  top: 53px;
  left: 58px;
  color: var(--color-white);
  font-size: 38px;
  transform: rotate(135deg);
}




/* ===================
4. Theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: var(--theme-bg-light);
}

@media all and (max-width: 1399px) {
  .container{
    max-width: 95%;
  }
}



/* ===================
5. Site title css
====================== */

.site-heading {
  margin-bottom: 50px;
  position: relative;
}

.site-heading-inline{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  background: var(--theme-color);
  border-radius: 50px;
  padding: 5px 10px 5px 10px;
}

.site-title-tagline i {
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--color-white);
  color: var(--theme-color);
  text-align: center;
  border-radius: 50px;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 40px;
  color: var(--color-dark);
  margin-top: 8px;
  margin-bottom: 0;
}

.site-title span {
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: var(--theme-color);
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: var(--color-white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}


@media all and (max-width: 992px) {
  .shadow-title {
    font-size: 100px;
  }
}



/* ===================
6. Margin & padding
====================== */

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

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 18px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color);
  box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 400px;
  width: 400px;
  background: var(--theme-color2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}




/* ===================
7. Scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 25px;
  border: none;
  outline: none;
  border-radius: 50px 50px 50px 0;
  color: var(--color-white);
  background: var(--theme-color);
  cursor: pointer;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  transition: var(--transition);
  z-index: 1;
}


@media all and (min-width: 768px) and (max-width: 1399px) {
  #scroll-top {
    bottom: 70px;
  }
}




/* ===================
8. Header top css
====================== */

.header-top {
  background: transparent;
  position: relative;
  border-bottom: 1px solid var(--border-white-color);
  padding: 6px 0;
  z-index: 9999;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-contact-info ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.top-contact-info ul li a {
  color: var(--color-white);
  font-weight: 500;
  transition: var(--transition);
}

.top-contact-info ul li a:hover {
  color: var(--theme-color);
}

.top-contact-info ul li a i {
  margin-right: 10px;
}

.top-social a {
  color: var(--color-white);
  font-size: 15px;
  width: 33px;
  height: 33px;
  line-height: 29.5px;
  border-radius: 50px;
  text-align: center;
  border: 2px solid var(--color-white);
  margin-right: 10px;
  transition: var(--transition);
}

.top-social a:hover {
  color: var(--theme-color);
  background: var(--color-white);
}

.header-top-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-top-right .nice-select {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-weight: 500;
  line-height: 43px;
}

.header-top-right .nice-select:after {
  border-color: var(--color-white);
  height: 7px;
  width: 7px;
  margin-top: -5.5px;
}

.header-top-right .nice-select .list {
  border-radius: 15px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.header-top-right .nice-select .option {
  color: #000;
  transition: var(--transition);
}

.header-top-right .nice-select .option.focus,
.header-top-right .nice-select .option.selected.focus,
.header-top-right .nice-select .option:hover {
  background: #F6F6F6;
  color: var(--theme-color);
}

.header-top-right .account {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-right .account a {
  color: var(--color-white);
  font-weight: 500;
  transition: var(--transition);
}

.header-top-right .account a:hover {
  color: var(--theme-color);
}

.header-top-right .account a i {
  margin-right: 10px;
}

@media all and (max-width: 1199px) {
  .top-social {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .header-top {
    display: none;
  }
}




/* ===================
9. Nav menu css
====================== */

.main {
  margin-top: -10rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 30px 0 30px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-white);
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 8px;
    border: none;
    left: -15px;
    border-radius: 10px;
    background: var(--color-white);
    /* width: 300px; */
    width: 350px;
    box-shadow: 0 0 50px 0 rgb(32 32 32 / 15%);
  }

  /* .navbar .nav-item .dropdown-menu::before {
    content: "\f0d8";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: var(--color-white);
    font-size: 45px;
    font-weight: bold;
    left: 25px;
    top: -40px;
  } */

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px dashed var(--border-info-color);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 500;
    padding: 7px 0px 7px 20px;
    color: var(--color-dark);
    position: relative;
    text-transform: capitalize;
    transition: var(--transition);
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 30px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f111";
    position: absolute;
    font-family: "Font Awesome 6 pro";
    left: 15px;
    top: 16px;
    color: var(--theme-color);
    font-weight: bold;
    font-size: 6px;
    transform: scale(0, 0);
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    transform: scale(1, 1);
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-left: 30px;
  }

  .header-nav-link {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav-link:hover {
    color: var(--theme-color);
  }

  .header-nav-link.search-box-outer {
    font-size: 18px;
  }

  #main_nav {
    justify-content: flex-end;
  }


  /* mega menu */
  .navbar .dropdown-menu.mega-menu{
    /* width: 850px; */
    width: 950px;
    left: -345px;
    padding: 15px 10px;
  }

  .navbar .dropdown-menu.mega-menu::before{
    display: none;
  }

  .navbar .dropdown-menu.mega-menu div[class*='col-']{
    border-right: 1px solid rgba(0, 0, 0, .05);
  }

  .navbar .dropdown-menu.mega-menu .dropdown-item{
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar .dropdown-menu.mega-menu .dropdown-item::before{
    top: 15px;
  }

  .navbar .dropdown-menu.mega-menu ul li{
    border-bottom: none;
  }

}

/*bootstrap nav*/
.navbar {
  background-color: var(--color-dark);
  /* background: transparent; */
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 999;
}

.navbar.fixed-top {
  background: var(--color-white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

.navbar.fixed-top .nav-item .nav-link {
  color: var(--color-dark);
}

.navbar.fixed-top .header-nav-link {
  color: var(--color-dark);
}

.navbar.fixed-top .header-nav-link:hover {
  color: var(--theme-color);
}

.navbar.fixed-top .nav-item .nav-link.active,
.navbar.fixed-top .nav-item:hover .nav-link {
  color: var(--theme-color);
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-btn-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 190px;
}

/* dropdown toggler */
/* .navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
} */


@media all and (max-width: 1199px) {
  .header-nav-right {
    gap: 5px;
    margin-left: 15px;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .header-btn {
    display: none;
  }
}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-bg {
    height: 59px;
  }

  .navbar-bg::before {
    transform: translateY(0px) skew(-15deg);
    left: -8px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
    border-radius: 15px;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
    margin-right: 0;
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu-link {
    font-size: 20px;
    color: var(--color-dark);
    font-weight: 500;
    padding-right: 20px;
    margin-bottom: 0px;
    position: relative;
  }

  .mobile-menu-link:hover {
    color: var(--theme-color);
  }

  .navbar-toggler-btn-icon {
    font-size: 25px;
    color: var(--color-white);
    font-weight: 500;
  }

  .navbar.fixed-top .mobile-menu-link {
    color: var(--color-dark);
  }

  .navbar.fixed-top .navbar-toggler-btn-icon {
    color: var(--color-dark);
  }

  .navbar .dropdown-menu {
    border-radius: 15px;
  }

  .navbar .dropdown-menu .dropdown-item{
    color: var(--color-dark);
  }

  .header-nav-right {
    display: none;
  }

}



/* ======================
10. Multi level dropdown menu
========================= */

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 9px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}




/* ===================
hero css 
====================== */

.hero-section {
  position: relative;
  top: 0;
}

.hero-single {
  padding-top: 310px;
  padding-bottom: 400px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  /* width: 100%; */
  /* height: 100%; */
  left: 0;
  top: 0;
  /* background: rgba(0, 0, 0, .65); */
  z-index: -1;
}

/* .hero-single .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
} */

/* .hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 75px;
  font-weight: 600;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  color: var(--theme-color);
}

.hero-single .hero-content p {
  color: var(--color-white);
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: capitalize;
} */

/* .hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
} */


@media all and (max-width: 991px) {
  /* .hero-single .hero-content .hero-btn {
    gap: 1.5rem;
  } */

  /* .hero-single .hero-content .hero-btn .theme-btn {
    padding: 12px 15px
  } */
}

@media all and (max-width: 767px) {
  /* .hero-single .hero-content .hero-title {
    font-size: 40px;
  } */

  /* .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .theme-btn {
    padding-left: 20px;
  } */

  .hero-single {
    padding-top: 310px;
    /* padding-bottom: 0px !important; */
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .about-marging-top{
    margin-top: -221px;
  }
}




/* =====================
15. Play btn
===================== */

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color2);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}



/* ===================
29. Choose css 
====================== */

.choose-item{
  display: flex;
  gap: 15px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  position: relative;
  padding: 20px;
  border-radius: 100px 100px 100px 0;
  margin-bottom: 30px;
  transition: var(--transition);
}

.choose-item:hover{
  transform: translateY(4px);
}

.choose-item .count{
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--theme-color2);
  line-height: 1;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}

.choose-item .icon{
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
}

.choose-item .icon img{
  width: 50px;
  filter: brightness(0) invert(1);
}

.choose-item .content{
  flex: 1;
}

.choose-item .content h4{
  font-size: 20px;
  margin-bottom: 5px;
}

.choose-img{
  text-align: right;
  position: relative;
}

.choose-img .shape{
  position: absolute;
  top: -15px;
  left: 70px;
  width: 35%;
}

.choose-img .img-1{
  width: 58%;
  border-radius: 200px;
}

.choose-img .img-2{
  position: absolute;
  left: 50px;
  bottom: 0px;
  width: 50%;
  border-radius: 200px;
  border: 10px solid var(--color-white);
}



/* ===================
36. About css 
====================== */

.about-left{
  position: relative;
  margin-right: 40px;
}

.about-left::before{
  content: "";
  position: absolute;
  width: 50%;
  height: 80%;
  border-radius: 200px;
  border: 10px double var(--theme-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about-img img{
  border-radius: 20px;
}

.about-img .img-2{
  margin-top: 90px;
}

.about-right {
  position: relative;
  display: block;
}

.about-experience{
  background: var(--theme-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  line-height: 1.2;
  border-radius: 100px;
  text-align: center;
  border: 10px solid var(--color-white);
}

.about-experience h5{
  color: var(--color-white);
  font-size: 40px;
  margin-top: 15px;
}

.about-experience p{
  color: var(--color-white);
  font-weight: 600;
}

.about-content {
  margin-top: 25px;
  margin-bottom: 35px;
}

.about-item{
  display: flex;
  gap: 12px;
  border-radius: 25px;
  padding: 15px;
  position: relative;
  box-shadow: var(--box-shadow);
}

.about-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  border-left: 2px solid var(--theme-color);
}

.about-item .icon{
  width: 68px;
  height: 68px;
  line-height: 65px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
}

.about-item .icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.about-item .content{
  flex: 1;
}

.about-item .content h6{
  color: var(--color-dark);
  font-size: 18px;
  margin-bottom: 5px;
}

.about-text{
  color: var(--body-text-color);
  font-weight: 500;
    text-align: justify;
}


@media all and (max-width: 991px) {
  .about-right {
    margin-top: 50px;
  }
}

@media all and (max-width: 767px) {
  .about-left{
    margin-right: 0;
  }

  .about-title {
    font-size: 30px;
  }

  .about-img .img-2{
    margin-top: 60px;
    margin-left: -10px;
  }

  .about-img .img-3{
    margin-left: -30px;
  }

  .about-experience{
    right: -7px;
    bottom: -60px;
  }
}


/* ===================
39. Feature css 
====================== */

.feature-area {
  position: relative;
}

.feature-img img{
  border-radius: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  position: relative;
  border-radius: 20px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  align-items: center;
}

.feature-content{
  flex: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  line-height: 65px;
  background: var(--theme-color);
  text-align: center;
  font-size: 40px;
  color: var(--color-white);
  border-radius: 50px 50px 50px 0;
}

.feature-icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.feature-title {
  color: var(--color-dark);
  /* margin-bottom: 10px; */
}

@media all and (max-width: 991px) {
  .feature-item {
    margin-bottom: 25px;
  }
}



/*====================
40. Video css 
======================*/

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 200px 0 0 200px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 400px;
  z-index: 100;
}

.video-wrapper img {
  border-radius: 12px;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}





/* ===================
42. Testimonial css 
====================== */

.testimonial-area {
  position: relative;
}

.testimonial-area.ts-bg{
  position: relative;
  background-image: url(../img/banner/banner-01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

.testimonial-area.ts-bg::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 44, 122, .65);
  z-index: -1;
}

.testimonial-area .shadow-text{
  position: absolute;
  left: 50%;
  bottom: -10px;
  font-size: 250px;
  line-height: 250px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: var(--heading-font);
  letter-spacing: 40px;
  transform: translateX(-50%);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--color-white);
  opacity: .3;
}

.testimonial-single {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 200px;
  padding: 20px 40px 20px 20px;
  position: relative;
  z-index: 1;
}

.testimonial-single .count{
  position: absolute;
  right: 100px;
  bottom: 10px;
  font-size: 120px;
  line-height: 120px;
  font-weight: 800;
  color: var(--theme-color);
  font-family: var(--heading-font);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px var(--theme-color);
  opacity: .1;
  z-index: -1;
}

.testimonial-quote p {
  color: var(--color-dark);
}

.testimonial-author-img {
  position: relative;
  width: 220px;
  height: 220px;
  padding: 15px;
}

.testimonial-author-img::before{
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--theme-color);
  border-top-color: var(--color-white);
  border-right-color: var(--color-white);
  border-radius: 200px;
  transition: var(--transition);
}

.testimonial-single:hover .testimonial-author-img::before{
  transform: rotate(45deg);
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 22px;
  color: var(--color-dark);
}

.testimonial-author-info p {
  color: var(--theme-color);
  font-weight: 500;
}

.testimonial-quote-icon {
  position: absolute;
  right: 80px;
  top: 5px;
  width: 80px;
}

.testimonial-rate {
  color: var(--theme-color);
  margin-top: 10px;
}

.testimonial-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.testimonial-slider.owl-theme .owl-nav button{
  color: var(--theme-color);
  font-size: 25px;
  margin: 0;
  margin-top: -10px;
  padding: 0;
  /* background: var(--color-white); */
  background-color: var(--color-dark) !important;
  display: inline-block;
  cursor: pointer;
  height: 45px;
  width: 45px;
  border-radius: 50px;
  line-height: 45px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--transition);
}

.testimonial-slider.owl-theme .owl-nav button:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.testimonial-slider.owl-theme .owl-nav .owl-prev {
  left: -25px;
}

.testimonial-slider.owl-theme .owl-nav .owl-next {
  right: -25px;
}

.testimonial-area .owl-dots {
  text-align: center;
}

.testimonial-area .owl-dots .owl-dot span {
  background: transparent;
  margin: 5px;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: var(--transition);
}

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

@media all and (max-width: 991px) {
  .testimonial-single{
    flex-direction: column;
    text-align: center;
  }

  .testimonial-area .shadow-text{
    font-size: 130px;
    line-height: 130px;
  }

  .testimonial-quote-icon{
    right: 40px;
  }
}

@media all and (max-width: 767px) {
  .testimonial-slider.owl-theme .owl-nav {
    /* display: none; */
  }

  .testimonial-area .shadow-text{
    font-size: 80px;
    line-height: 80px;
    letter-spacing: 15px;
  }
}




/* ===================
43. Counter css 
====================== */

.counter-negative{
  margin-top: -90px;
}

.counter-wrap {
  position: relative;
  padding: 50px 20px;
  position: relative;
  background: var(--theme-color);
  border-radius: 0 80px 0 0;
  z-index: 1;
}

.counter-wrap::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#363474e0,#363474e0) , url(../img/banner/01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 80px 0 0;
  z-index: -1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  font-size: 35px;
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background: var(--color-white);
  border-radius: 30px;
  color: var(--theme-color);
}

.counter-box .icon img {
  width: 50px;
}

.counter-box .counter-number{
  display: flex;
  align-items: center;
}

.counter-box .counter-sign{
  color: var(--color-white);
  font-size: 40px;
  line-height: 0;
  margin-left: 2px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
    justify-content: flex-start;
  }
}




/* ===================
49. Blog css 
====================== */

.blog-item {
  margin-bottom: 25px;
  background: var(--color-white);
  padding: 20px;
  border-radius: 30px 30px 30px 0;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.blog-date{
  position: absolute;
  left: 100px;
  top: 2px;
  background: var(--color-white);
  color: var(--theme-color);
  font-weight: 500;
  border-radius: 30px;
  padding: 2px 15px;
  z-index: 1;
}

.blog-item-img {
  overflow: hidden;
  border-radius: 30px 30px 30px 0;
}

.blog-item-img img {
  border-radius: 30px 30px 30px 0;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-meta ul {
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color: var(--color-dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item-meta a:hover {
  color: var(--theme-color);
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info h4 a {
  color: var(--color-dark);
}

.blog-item-info h4 a:hover {
  color: var(--theme-color);
}




/* =========================
51. Partner css
========================= */

.partner-negative{
  margin-bottom: -60px;
}

.partner-wrap{
  background: var(--color-white);
  position: relative;
  border-radius: 0 100px 100px 0;
  padding: 20px 20px;
  z-index: 2;
}

.partner-wrap img {
  background: var(--color-white);
  border-radius: 100px;
  padding: 18px 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  border: 1px solid var(--border-info-color);
}




/* ===================
53. Team css 
====================== */

.team-area {
  position: relative;
}

.team-item {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.team-img {
  border-radius: 50%;
}

.team-img img {
  border-radius: 50%;
}

.team-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -45px;
  padding: 10px 20px 10px 30px;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}

.team-bio h5 {
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio h5 a {
  color: var(--color-dark);
}

.team-bio span {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-bio h5 a:hover {
  color: var(--theme-color);
}

.team-social-btn {
  position: absolute;
  right: 60px;
  top: 65px;
}

.team-social-btn li {
  display: inline-block;
  position: absolute;
  bottom: 0;
  transition: .6s;
  list-style-type: none;
}

.team-social-btn li i {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--theme-color);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  transition: .6s;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--box-shadow);
}

.team-social-btn li i:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.team-item li span i {
  opacity: 1;
  visibility: visible;
}

.team-item:hover li span i {
  background: var(--color-dark);
  cursor: pointer;
}

.team-item:hover .team-social-btn li i {
  opacity: 1;
  visibility: visible;
}

.team-social-btn li:nth-child(1) {
  z-index: 1;
}

.team-social-btn li:nth-child(2) {
  bottom: 0;
}

.team-social-btn li:nth-child(3) {
  bottom: 0;
}

.team-social-btn li:nth-child(4) {
  bottom: 0;
}

.team-social-btn li:nth-child(5) {
  bottom: 0;
}

.team-item:hover li:nth-child(1) {
  z-index: 1;
}

.team-item:hover li:nth-child(2) {
  bottom: 48px;
}

.team-item:hover li:nth-child(3) {
  bottom: 96px;
}

.team-item:hover li:nth-child(4) {
  bottom: 144px;
}

.team-item:hover li:nth-child(5) {
  bottom: 192px;
}

.team-item:hover li:nth-child(6) {
  bottom: 240px;
}

/* ===================
56. Breadcrumb css
====================== */

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  /* padding-top: 270px; */
  /* padding-bottom: 150px; */
  padding-top: 320px;
  padding-bottom: 200px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .65);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 35px;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\e122';
  font-family: 'Font Awesome 6 Pro';
  right: -18px;
  top: 5px;
  text-align: center;
  font-size: 12px;
  color: var(--color-white);
  font-weight: bold;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color2);
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 360px;
  }
}



/* ===================
63. Footer css 
====================== */

.footer-area {
  /* background: var(--footer-bg); */
  background-color: rgba(0, 0, 0, 0.963);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-area.ft-bg::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/banner/02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .1;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 30px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px dashed var(--border-white-color);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--footer-text-color);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2.5px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 10px;
  height: 2.5px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 35px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;

}

.footer-list.footer-scroll {
  max-height: 300px;
  overflow: hidden;
  overflow-y:scroll ;
  overflow-x: hidden;

}

.footer-list li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
  font-size: 13px;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--footer-text-color);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  transition: 0.3s;
}

.footer-contact li i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50px 50px 50px 0;
  background: var(--theme-color);
  text-align: center;
  transition: 0.3s;
  color: var(--color-white);
}

.footer-call{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-call-icon i{
  background: transparent !important;
  font-size: 45px !important;
  color: var(--theme-color) !important;
}

.footer-call-info h6{
  color: var(--footer-text-color);
  font-weight: 700;
}

.footer-call-info a{
  color: var(--theme-color) !important;
  font-size: 20px;
  font-weight: 700;
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}








/* ===================
16. machine-product css 
====================== */

.machine-product-area{
  position: relative;
}

.machine-product-item {
  margin-bottom: 25px;
  position: relative;
}

.machine-product-img{
  overflow: hidden;
  /* border-radius: 200px; */
  position: relative;
}

.machine-product-img img {
  /* border-radius: 200px; */
  width: 100%;
  transition: var(--transition);
}

.machine-product-item:hover .machine-product-img img {
  transform: scale(1.1);
}

.machine-product-btn {
  position: absolute;
  width: 55px;
  height: 55px;
  line-height: 56px;
  text-align: center;
  background: var(--color-white);
  color: var(--theme-color) !important;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  top: 50%;
  left: 50%;
  font-size: 22px;
  transform: translate(-50%, -50%);
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: var(--transition);
  z-index: 1;
}

.machine-product-item:hover .machine-product-btn {
  visibility: visible;
  opacity: 1;
}

.machine-product-info{
  position: relative;
  width: 80%;
  background: var(--color-white);
  text-align: center;
  border-radius: 100px;
  padding: 10px 20px;
  margin: -80px auto 0 auto;
  box-shadow: var(--box-shadow);
}

.machine-product-info h4 a{
  color: var(--color-dark);
  font-size: 20px;
}

.machine-product-info h4 a:hover{
  color: var(--theme-color);
}

.machine-product-rate{
  font-size: 15px;
  margin-top: 5px;
}

.machine-product-rate i{
  color: #FFA903;
}

.machine-product-rate span {
  color: var(--color-dark);
  font-weight: 400;
}

.machine-product-more-info{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.machine-product-more-info span{
  color: var(--body-text-color);
}

.machine-product-more-info span i{
  color: var(--theme-color);
}

.machine-product-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.machine-product-slider.owl-theme .owl-nav button{
  color: var(--theme-color);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--color-white) !important;
  display: inline-block;
  cursor: pointer;
  height: 45px;
  width: 45px;
  border-radius: 50px;
  line-height: 45px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--transition);
  margin-top: -50px;
}

.machine-product-slider.owl-theme .owl-nav button:hover{
  background: var(--theme-color);
  color: #000;
}

.machine-product-slider.owl-theme .owl-nav .owl-prev {
  left: -25px;
}

.machine-product-slider.owl-theme .owl-nav .owl-next {
  right: -25px;
}

.machine-product-slider .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.machine-product-slider .owl-dots .owl-dot span {
  background: transparent;
  margin: 5px;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: var(--transition);
}

.machine-product-slider .owl-dots .owl-dot.active span {
  background: var(--theme-color);
}


@media all and (max-width: 1399px) {
  .machine-product-info h4 {
    font-size: 23px;
  }
}

@media all and (max-width: 767px) {
  .machine-product-item img {
    height: 400px;
  }
  .machine-product-slider.owl-theme .owl-nav {
    /* display: none; */
  }
}








/* ===================
17. Flight css 
====================== */

.product-area{
  position: relative;
}

.product-item{
  background: var(--color-white);
  padding: 15px;
  border-radius: 40px 40px 40px 0;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.product-item .badge{
  background: var(--theme-color);
  border-radius: 50px 50px 50px 0;
  padding: 8px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--box-shadow);
  position: absolute;
  right: -10px;
  top: 35px;
  z-index: 1;
}

.product-item .badge-discount{
  background: var(--theme-color2);
}

.product-item .add-wishlist{
  width: 40px;
  height: 40px;
  line-height: 36px;
  background: var(--theme-color);
  border: 3px solid var(--color-white);
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
}

.product-img{
  overflow: hidden;
  border-radius: 30px 30px 30px 0;
}

.product-img img{
  border-radius: 30px 30px 30px 0;
}

.product-item:hover .product-img img{
  transform: scale(1.1);
}

.product-title{
  margin-top: 15px;
}

.product-title-info{
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-title-info img{
  width: 20px;
}

.product-title-info h4{
  font-size: 18px;
}

.product-title-info a{
  color: var(--color-dark);
}

.product-title-info a:hover{
  color: var(--theme-color);
}

.product-title-info a i{
  margin: 0 5px;
  font-size: 16px;
  color: var(--theme-color);
}

.product-date{
  margin-top: 10px;
  font-weight: 500;
  color: var(--color-dark);
}

.product-date i{
  margin-right: 5px;
  color: var(--theme-color);
}

.product-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.product-price{
  color:var(--color-dark);
  font-weight: 500;
}

.product-price span{
  font-weight: 700;
  color: var(--theme-color2);
  font-size: 19px;
}

.product-text-btn a{
  color: var(--color-dark);
  font-weight: 500;
}

.product-text-btn a i{
  font-size: 14px;
}

.product-text-btn a:hover{
  color: var(--theme-color);
}


/******************************************/
/****   28. Contact us page css   	   ****/
/******************************************/


.contact-form .form-control{
	padding: 10px 20px;
	border: none;
	box-shadow: none;
	background: var(--primary-color);
	border-radius: 10px;
}

.contact-form .with-errors ul{
	padding: 0 6px;
	margin: 0;
	font-size: 14px;
	color: var(--error-color);
}


/**** Contact start  ****/
.contact{
  background:var(--primary) ;
}

.contact .text-primary {
  color:var(--primary) !important;
}

.contact .input-start{
  position: relative;
}

.contact .input-start .inp-control{
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
  line-height: 1.25;  

}

.contact .inp-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
}
/**** Contact end  ****/




/* captcha new design start */
.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-top: 1px solid #CED4DA;
  border-right: 1px solid #CED4DA;
  border-bottom: 1px solid #CED4DA;
  background: url(../img/index-img/capt-img.jpeg);
}

.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 22px;
  padding: 10px;
  height: 100%;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: var(--footer-bg);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}


@media screen and (max-width:600px) {
  .captchasep1 {
    display: flex;
    flex-direction: column !important;
  }

  .captchasep1 .captcha-codes-sec {
    border-left: 1px solid #CED4DA;
    border-right: 1px solid #CED4DA;
    border-bottom: 1px solid #CED4DA;
    margin-top: 3px;
  }


}

.refreshcaptcha{
  /* background-color: var(--footer-bg) !important; */
}


.solar-calculator{
	padding: 100px 0 50px;
}

.calculator-box{
	background: var(--color-blue);
	border-radius: 30px;
	padding: 50px;
}

.calculator-box .section-title{
	margin-bottom: 0;
	text-align: left;
}






/* ===================
52. Contact us css 
====================== */

.contact-wrapper {
  position: relative;
}

.contact-form {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px 30px;
  box-shadow: var(--box-shadow);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 18px;
  border-radius: 15px;
  box-shadow: none;
  transition: var(--transition);
  border-color: var(--border-info-color);
  color: var(--color-dark);
}

.contact-form .form-group .form-control::placeholder{
  color: var(--body-text-color);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px 30px;
  position: relative;
  box-shadow: var(--box-shadow);
}

.contact-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: var(--theme-color);
  border-radius: 50px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.contact-info-icon i {
  font-size: 24px;
  color: var(--color-white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50px 50px 50px 0;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.contact-info p {
  font-weight: 500;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}





/* fixed code */
.whatsapp {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 70px;
  right: 10px;
  z-index: 99999;
}

.phone {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 130px;
  right: 10px;
  z-index: 99999;
}






/* inquiry css start */

.page-service-single{
	padding: 100px 0 50px;
}

.service-sidebar{
	padding-right: 30px;
}

.services-list-box{
	background: var(--theme-color);
	padding: 20px 30px;
	border-radius: 30px;
	margin-bottom: 30px;
}

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

.services-list-box ul li a{
	display: block;
	position: relative;
	color: var(--color-white);
	font-size: 18px;
	/* font-weight: 700; */
	/* padding: 16px 0 14px 24px; */
	border-bottom: 1px solid #89EA5F30;
	transition: all 0.3s ease-out;
}

.services-list-box ul li a:hover{
	color: var(--theme-color2);
}

.services-list-box ul li a:before{
	content: '';
	display: block;
	height: 16px;
	width: 16px;
	/* background: url(../img/icons/high-protection-packaging.png) no-repeat left center; */
	background: url(../img/icons/angle-double-small-right.png) no-repeat left center;
	position: absolute;
	top: 20px;
	left: 0;
}

.services-list-box ul li:last-child a{
	border-bottom: none;
}

.sidebar-cta-box{
	border-radius: 30px;
	overflow: hidden;
	background: var(--theme-color2);
}

.sidebar-cta-box .cta-image img{
	width: 100%;
	transition: all 0.5s ease-out;
}

.sidebar-cta-box .cta-content{
	padding: 0 30px 30px;
	text-align: center;
	margin-top: -40px;
}

.sidebar-cta-box .cta-content .cta-icon{
	width: 80px;
	height: 80px;
	background: var(--theme-color);
	border: 4px solid var(--color-white);
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.sidebar-cta-box .cta-content .cta-icon img{
	max-width: 50%;
}

.sidebar-cta-box .cta-content h3{
	font-size: 20px;
	margin-bottom: 0;
}

.sidebar-cta-box .cta-content p{
	margin: 0;
	font-size: 36px;
	color: var(--color-white);
	font-weight: 700;
}

.sidebar-cta-box:hover .cta-image img{
	transform: scale(1.1);
}

.sidebar-cta-box:hover .cta-image figure:after{
	  height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.service-featured-image{
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 30px;
}

.service-entry{
	margin-bottom: 50px;
}

.service-entry p{
	color: #000 !important;
  font-weight: 500;
  text-align: justify;
}






.service-whyus{
	margin-bottom: 50px;
}

.service-whyus h2{
	font-size: 30px;
	margin: 0 0 0.7em;
}

.service-benefits{
	margin-bottom: 20px;
}

.service-benefits .service-benefits-title{
	margin-bottom: 30px;
}

.service-benefits .service-benefits-title h2{
	font-size: 30px;
}

.benefits-item{
	margin-bottom: 40px;
	padding-right: 20px;
}

.benefits-item .icon-box{
	margin-bottom: 20px;
}

.benefits-item h3{
	font-size: 22px;
	color: var(--color-dark);
	margin-bottom: 15px;
}

.service-features{
	margin-bottom: 50px;
}

.service-features .service-feature-image{
	border-radius: 30px;
	overflow: hidden;
}

.service-features .service-feature-content h2{
	font-size: 30px;
	margin-bottom: 20px;
}

.service-features .service-feature-content ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.service-features .service-feature-content ul li{
	position: relative;
	font-weight: 500;
	color: var(--color-dark);
	margin-bottom: 15px;
	padding-left: 30px;
}

.service-features .service-feature-content ul li:before{
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	display: block;
	font-weight: 700;
	font-size: 20px;
	color: var(--color-white);
	position: absolute;
	top: 0;
	left: 0;
}



/*** Gallery Start ***/
.gallery .gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
  }
  
  .gallery .gallery-item img {
	min-height: 300px;
	object-fit: cover;
  }
  
  .gallery .gallery-item .gallery-content {
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	padding: 15px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	transition: 0.5s;
  }
  
  .gallery .gallery-item .gallery-content .gallery-info {
	position: relative;
	margin-bottom: -100%;
	opacity: 0;
	transition: 0.5s;
  }
  
  .gallery .gallery-item .gallery-plus-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.5s;
	opacity: 0;
  }
  
  .gallery .gallery-item:hover .gallery-content .gallery-info,
  .gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
  }
  
  .gallery .gallery-item img {
	transition: 0.5s;
  }
  
  .gallery .gallery-item:hover img {
	transform: scale(1.2);
  }
  
  .gallery .gallery-item:hover .gallery-content {
	background: #548bf1a6;
  }
  
  .gallery .tab-class .nav-item {
	padding: 0 0 20px 0;
  }
  .gallery .tab-class .nav-item a.active {
	background: var(--green) !important;
  }
  
  .gallery .tab-class .nav-item a.active span {
	color: var(--light) !important;
  }
  
  /*** Gallery End ***/
  
  


