@charset "UTF-8";

/*============================================================================
  Prefix mixin for generating vendor prefixes:
  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }

  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
==============================================================================*/
:root {
  --primary-color: #28335d;
  --secondary-color: #846536;
  --white-color:#fff;

  --btn-primary-border-radius: 0.25rem;
  --btn-primary-color: #fff;
  --btn-primary-background-color: #846536;
  --btn-primary-border-color: #846536;
  --btn-primary-hover-color: #fff;
  --btn-primary-background-hover-color: #846536;
  --btn-primary-border-hover-color: #846536;
  --btn-primary-font-weight: 500;

  --btn-secondary-border-radius: 0.25rem;
  --btn-secondary-color: #00234D;
  --btn-secondary-background-color: transparent;
  --btn-secondary-border-color: #00234D;
  --btn-secondary-hover-color: #fff;
  --btn-secondary-background-hover-color: #F76B6A;
  --btn-secondary-border-hover-color: #F76B6A;
  --btn-secondary-font-weight: 500;

  --heading-color: #000;
  --heading-font-family: 'Poppins', sans-serif;
  --heading-font-weight: 700;

  --title-color: #000;
  --title-font-family: 'Poppins', sans-serif;
  --title-font-weight: 400;

  --body-color: #9b9b9b;
  --body-background-color: #fff;
  --body-font-family: 'Poppins', sans-serif;
  --body-font-size: 15px;
  --body-font-weight: 400;

  --section-heading-color: #000;
  --section-heading-font-family: 'Poppins', sans-serif;
  --section-heading-font-size: 48px;
  --section-heading-font-weight: 600;

  --section-subheading-color: #000;
  --section-subheading-font-family: 'Poppins', sans-serif;
  --section-subheading-font-size: 16px;
  --section-subheading-font-weight: 400;
}
iframe {
  width: 100%; }

.container-fluid2 {
  padding-left: 160px;
  padding-right: 160px; }

@media (max-width: 1800px) {
  .container-fluid2 {
    padding-left: 5%;
    padding-right: 5%; } }

@media (max-width: 575px) {
  .container-fluid2 {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem); } }

.bg-1 {
  background-color: #00234D; }

.bg-2 {
  background-color: #000; }

.bg-3 {
  background-color: #F76B6A; }

.bg-4 {
  background-color: var(--primary-color); }

.bg-5 {
  background-color: #FBF3F0; }

.bg-pink {
  background-color: #FFF3F3; }

.bg-trust-1 {
  background-color: #FCEDDA; }

.bg-trust-2 {
  background-color: #F2FBCB; }

.bg-trust-3 {
  background-color: #F7D8F9; }

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-member,
.btn-member:hover,
.btn-member:focus {
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  padding: 0 17px;
  height: 40px;
  -ms-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -ms-display: inline-flex;
  -webkit-display: inline-flex;
  display: -webkit-inline-box;
  display: inline-flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.btn-member,
.btn-member:hover,
.btn-member:focus {
  min-width: 140px;
  height: 47px;
  color: #fff; }

.btn-primary,
.btn-member {
  -ms-border-radius: var(--btn-primary-border-radius);
  -webkit-border-radius: var(--btn-primary-border-radius);
  border-radius: var(--btn-primary-border-radius);
  color: var(--btn-primary-color);
  border: 1px solid var(--btn-primary-border-color);
  background-color: var(--btn-primary-background-color);
  font-weight: var(--btn-primary-font-weight); }

.btn-secondary {
  -ms-border-radius: var(--btn-secondary-border-radius);
  -webkit-border-radius: var(--btn-secondary-border-radius);
  border-radius: var(--btn-secondary-border-radius);
  color: var(--btn-secondary-color);
  border: 1px solid var(--btn-secondary-border-color);
  background-color: var(--btn-secondary-background-color);
  font-weight: var(--btn-secondary-font-weight); }

.btn-primary:hover,
.btn-primary:focus,
.btn-member:hover,
.btn-member:focus {
  color: var(--btn-primary-hover-color);
  border: 1px solid var(--btn-primary-border-hover-color);
  background-color: var(--btn-primary-background-hover-color); }

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--btn-secondary-hover-color);
  border: 1px solid var(--btn-secondary-border-hover-color);
  background-color: var(--btn-secondary-background-hover-color); }

.input-reset,
.btn-reset {
  border: none;
  outline: none;
  background: transparent;
  padding: 0; }

.field {
  height: 48px;
  background: #E5E5E5;
  padding: 0 15px;
  -ms-border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -ms-display: flex;
  -webkit-display: flex;
  display: -webkit-box;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.field-input {
  width: 100%;
  font-size: 14px;
  color: #000; }

input[type="number"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important; }

input[type="number"] {
  -moz-appearance: textfield !important; }

.icon {
  width: 22px;
  height: 22px; }

.overlay-furniture,
.overlay-tools,
.overlay {
  position: relative; }

.overlay-furniture:before,
.overlay-tools:before,
.overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2); }

.overlay-tools:before {
  background-color: rgba(7, 28, 31, 0.5); }

.overlay-furniture:before {
  background-color: rgba(0, 35, 77, 0.5); }

/*============================================================================
    Template Common CSS
==============================================================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight); }
  .text-justify{
    text-align: justify;
  }

body {
  color: var(--body-color);
  background-color: var(--body-background-color);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  font-family: var(--body-font-family);
  /*letter-spacing: 0.5px;*/
  padding-right: 0 !important; }

.body-wrapper {
  position: relative;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto; }

.heading_72,
.heading_48,
.heading_42,
.heading_34,
.heading_24,
.heading_18,
.text_16,
.text_14,
.text_12 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #000; }

.heading_72 {
  font-weight: 600;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: 0; }

.heading_48 {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0.01em; }

.heading_42 {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0.01em; }

.heading_34 {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0.25px; }

.heading_18 {
  font-size: 18px;
  line-height: 1.5; }

.text_16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0.5px; }

.text_14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.08; }

.text_12 {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.4px; }

.link-underline {
  text-decoration: underline;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .link-underline:hover {
    color: var(--secondary-color);
    text-decoration: underline; }

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.primary-color {
  color: var(--primary-color); }

.secondary-color {
  color: var(--secondary-color); }

a,
a:focus,
a:hover {
  text-decoration: none;
  border: none;
  outline: none;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

img {
  max-width: 100%; }

.custom-scrollbar::-webkit-scrollbar {
  width: 4px; }

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1; }

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #888; }

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #888; }

button,
.offcanvas {
  -ms-border: none !important;
  -webkit-border: none !important;
  border: none !important;
  -ms-outline: none !important;
  -webkit-outline: none !important;
  outline: none !important;
  -ms-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.content-absolute {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%; }

.height-inherit {
  height: inherit; }



.slick-initialized .slick-slide {
  outline: none; }

.common-slider .slick-slide {
  margin: 0 12px; }

.common-slider .slick-list {
  margin: 0 -12px; }

.show-arrows-always .arrow-slider {
  opacity: 1;
  visibility: visible;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  -ms-display: flex;
  -webkit-display: flex;
  display: -webkit-box;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem; }

.show-arrows-always .arrow-slider svg {
  width: 24px;
  stroke: #000;
  stroke-width: 1.5px; }

.arrows-white .arrow-slider svg {
  stroke: #fff; }

.article-arrows .arrow-slider {
  opacity: 0;
  visibility: hidden;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .home-section:hover .article-arrows .arrow-slider {
    opacity: 1;
    visibility: visible; }

.slick-dots {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }
  .slick-dots li {
    width: 12px;
    height: 8px;
    background-color: #000;
    opacity: 0.5;
    margin: 0 6px;
    cursor: pointer;
    -ms-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -ms-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .slick-dots li.slick-active {
      opacity: 1;
      width: 24px; }
    .slick-dots li button {
      display: none; }

.slick-arrow[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.5 !important; }

.hover-switch {
  position: relative;
  display: block; }
  .hover-switch .primary-img,
  .hover-switch .secondary-img {
    -ms-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease; }

.secondary-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden; }



.scroll-horizontal {
  overflow: hidden;
  overflow-x: auto; }

#scrollup {
  position: fixed;
  display: inline-block;
  background-color: #000;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: background-color .3s, 
 opacity .5s, visibility .5s;
  -o-transition: background-color .3s, 
 opacity .5s, visibility .5s;
  transition: background-color .3s, 
 opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer; }

#scrollup.show {
  opacity: 1;
  visibility: visible; }

.announcement-text,
.announcement-text:hover,
.announcement-text:focus,
.currency-btn,
.currency-list-option,
.currency-list-option:hover {
  text-decoration: none;
  font-size: 14px;
  line-height: 27px;
  font-weight: var(--body-font-weight);
  color: #000; }

.currency-list-option,
.currency-list-option:hover {
  color: var(--body-color); }

.announcement-text {
  margin: 0; }

.flag {
  min-width: 20px;
  max-width: 20px;
  margin-right: 3px; }

.currency-list {
  min-width: auto; }

.header-action-item {
  text-decoration: none;
  line-height: 1; }

.logo-main {
  -ms-display: flex;
  -webkit-display: flex;
  display: -webkit-box;
  display: flex; }

.header-top {
  padding: 20px 0; }

.border-btm-black {
  -ms-border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.icon-user {
  width: 12px;
  height: 12px;
  margin-right: 2px; }

.currency-btn .icon-dropdown {
  stroke-width: 1.5px; }

.sticky-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
  width: 100%; }



.navbar {
  padding: 0; }

.nav-link {
  color: #000;
  font-weight: 500;
  font-size: 15px; }

.nav-text-sub {
  font-size: 14px;
  text-decoration: none;
  color: #444;
  display: block;
  font-weight: 400; }
  .nav-text-sub.nav-link-mega {
    padding-left: 0; }

.icon-dropdown {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px; }

.icon-hamburger {
  width: 24px;
  height: 24px; }

.header-wishlist {
  color: #000; }

.header-wishlist,
.header-hamburger {
  margin-top: 3px; }

.site-navigation .nav-link:focus {
  color: #000; }

.nav-item-mega:last-child a {
  padding-bottom: 0; }

.mega-menu-img * {
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.img-menu-heading {
  font-weight: 500; }

.img-menu-action:hover span,
.main-menu .menu-list-item.active .nav-link,
.main-menu .menu-list-item:hover .nav-link,
.main-menu .nav-text-sub:hover {
  color: var(--secondary-color); }

.img-menu-action:hover .icon-right-long {
  fill: var(--secondary-color); }

.nav-link-sub:hover img.menu-img {
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9); }

.main-menu .nav-link {
  padding: 0; }

.drawer-heading {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  color: var(--body-color); }

.cart-content-area {
  height: 100%; }

.minicart-loop {
  padding: 1rem 0;
  overflow-y: scroll; }

.minicart-item {
  padding: 0.5rem 1rem; }

.product-remove {
  line-height: 1; }

.mini-img-wrapper {
  width: 80px;
  overflow: hidden; }

.mini-img {
  min-width: 80px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top; }

.minicart-item > .product-info {
  width: calc(100% - 80px);
  padding-left: 20px; }



.slide-text {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.25px;
  margin-bottom: 0; }
  .slide-content-1 .slide-text {
    color: #00234D; }

.slide-heading {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0; }
  .slide-content-1 .slide-heading {
    color: #00234D; }

.slide-subheading {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
  margin-top: 5px; }
  .slide-content-1 .slide-subheading {
    color: #00234D; }

.slide-btn {
  margin-top: 24px; }

.slide-img {
  /*height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;*/ }


.arrow-slider {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  .arrow-slider.arrow-next {
    left: auto;
    right: 0; }

.arrows-white svg {
  stroke: #fff; }

.slideshow-section:hover .arrow-slider {
  opacity: 1;
  visibility: visible; }

.dots-white .slick-dots li {
  background-color: #fff; }

.slick-dots li.slick-active {
  background-color: var(--primary-color); }

[data-animation] {
  opacity: 0; }

.animate__animated[data-animation] {
  opacity: 1; }

.slide-content [data-animation]:first-child {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.slide-content [data-animation]:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.slide-content [data-animation]:nth-child(3) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s; }

.slide-content [data-animation]:last-child {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s; }

.slide-content {
  max-width: 655px; }

.trusted-heading {
  color: #00234D; }

.trusted-subheading {
  color: #77889B;
  margin-top: 5px; }

.trusted-subheading-2 {
  color: #000; }

.trusted-subheading-3 {
  color: #b9b9b9; }

.trusted-badge {
  margin-top: 24px;
  padding: 40px;
  height: 100%;
  -ms-display: flex;
  -webkit-display: flex;
  display: -webkit-box;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.trusted-row > div {
  height: 100%; }

.icon-trusted {
  max-width: 50px; }

.trusted-content {
  padding-left: 24px; }

.trusted-section-inner {
  margin-top: -24px; }




.footer-heading {
  margin: 0 0 32px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #FEFEFE; }
  .footer-style-2 .footer-heading {
    color: #00234D; }

.footer-logo {
  margin-bottom: 32px; }

.footer-menu-item a,
.footer-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #FEFEFE;
  opacity: 0.7;
  text-decoration: none !important; }
  .footer-style-2 .footer-menu-item a, .footer-style-2
  .footer-text {
    color: #00234D; }

.footer-text {
  margin: 0; }

.footer-menu-item a {
  display: block;
  padding-top: 10px; }

.footer-menu-item a:hover {
  opacity: 1; }

.footer-menu {
  margin-top: -10px; }

.footer-newsletter-form {
  width: 100%;
  height: 54px;
  overflow: hidden; }

.footer-newsletter-input {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.64;
  letter-spacing: 0.25px;
  color: #FEFEFE;
  opacity: 0.7;
  height: inherit;
  width: 100%;
  padding: 0 15px;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #FEFEFE;
  border-radius: 12px 0 0 12px; }
  .footer-style-2 .footer-newsletter-input {
    color: #00234D;
    border-color: #00234D; }

.footer-newsletter-input::-webkit-input-placeholder {
  color: #FEFEFE;
  opacity: 0.7; }

.footer-newsletter-input:-ms-input-placeholder {
  color: #FEFEFE;
  opacity: 0.7; }

.footer-newsletter-input:-moz-placeholder {
  color: #FEFEFE;
  opacity: 0.7; }


.footer-newsletter-input:focus {
  opacity: 1; }

.footer-newsletter-btn {
  width: 117px;
  min-width: 117px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background-color: #00234D;
  color: #fff;
  height: inherit;
  border-radius: 0 12px 12px 0; }

.newsletter-btn-white {
  background-color: #fff;
  color: #071C1F; }

.footer-social-item {
  margin-top: 12px;
  margin-left: 25px; }

.footer-social {
  margin-top: -12px;
  margin-left: -25px; }

.footer-social-wrapper {
  margin-top: 37px; }

.footer-top {
  padding: 95px 0 100px; }

.footer-bottom-menu {
  margin-left: -32px;
  margin-top: 15px; }
  .footer-bottom-menu > li {
    margin-left: 32px; }

.copyright {
  margin-top: 25px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 20px 0; }


.footer-bottom-inner {
  margin-top: -25px; }

.footer-widget-wrapper {
  margin-top: -40px; }

.footer-widget {
  margin-top: 40px; }

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

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

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

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

@media (min-width: 768px) and (max-width: 1280px) {
  .modal-dialog {
    max-width: 90%; } }

@media (min-width: 768px) {
  .footer-heading {
    pointer-events: none; } }

@media (min-width: 992px) {
  .main-menu .menu-list-item.active .icon,
  .main-menu .menu-list-item:hover .icon {
    stroke: var(--secondary-color); }
  .header-bottom {
    position: relative; }
  .nav-item-sub {
    padding: 8px 30px; }
  .submenu {
    padding: 10px 0; }
  .main-menu {
    margin-left: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -20px;
    margin-bottom: 0; }
  .main-menu > .menu-list-item {
    padding: 12px 20px;
    cursor: pointer; }
  .header-1 .main-menu > .menu-list-item {
    padding: 28px 20px;
    cursor: pointer; }
  .main-menu-2 > .menu-list-item {
    padding: 29px 20px; }
  .has-dropdown {
    position: relative; }
  .mega-menu-header {
    -ms-display: flex;
    -webkit-display: flex;
    display: -webkit-box;
    display: flex;
    -ms-align-items: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .open-submenu {
    padding-left: 5px; }
  .submenu-transform {
    position: absolute;
    z-index: 99;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    top: 90%;
    left: 0;
    width: auto;
    min-width: 200px; }
    .has-megamenu .submenu-transform {
      width: 100%;
      background-color: #fff; }
    .has-dropdown .submenu-transform {
      left: -10px; }
  .megamenu-container {
    -ms-display: flex;
    -webkit-display: flex;
    display: -webkit-box;
    display: flex;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 35px;
    margin-left: -40px; }
    .megamenu-container > .nav-item-sub {
      width: 25%;
      padding: 0;
      padding-left: 40px;
      padding-top: 35px; }
  .has-megamenu .megamenu-transform {
    position: relative;
    top: 0;
    left: 0;
    border: none; }
    .has-megamenu .megamenu-transform .nav-item-sub {
      padding: 20px 0 0; }
  .submenu-transform > .container {
    padding: 0 10px; }
  .megamenu-heading,
  .megamenu-heading:focus,
  .megamenu-heading:hover {
    font-size: 14px;
    font-weight: 500;
    color: #000 !important;
    border-bottom: 1px solid #ccc;
    margin-bottom: 7px;
    text-transform: uppercase; }
  .submenu-transform-desktop {
    opacity: 0;
    visibility: hidden;
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .menu-list-item:hover .submenu-transform-desktop {
    opacity: 1;
    visibility: visible;
    top: 100%; }
  .newsltter-content-1 {
    padding-left: 97px; } }

@media (min-width: 1520px) {
  .article-arrows .arrow-slider {
    left: -68px; }
  .article-arrows .arrow-next {
    left: auto;
    right: -68px; } }

@media (max-width: 1599px) {
}

@media (max-width: 1439px) {
 }

@media (max-width: 1199px) {
   }

@media (max-width: 991px) {
  .about-banner-wrapper {
    padding: 60px; }
  .header-top,
  .header-bottom {
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative; }

  .main-menu .menu-list-item.active > .mega-menu-header .icon,
  .main-menu .menu-list-item:hover > .mega-menu-header .icon {
    stroke: var(--secondary-color); }
  .submenu-transform > .container {
    padding: 0; }
  .offcanvas-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow: hidden; }
  .navbar-nav .dropdown-menu {
    position: fixed;
    border: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background: red;
    z-index: 99;
    display: block;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .navbar-nav .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  .nav-item-sub {
    color: #000;
    font-weight: 500;
    font-size: 15px; }
  .open-submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .submenu-transform {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    -webkit-transform: translate3d(400px, 0, 0);
    transform: translate3d(400px, 0, 0);
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
    z-index: 1;
    overflow: hidden;
    background-color: #fff; }
    .submenu-transform.active {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }
  .menu-list-item {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .icon-menu-back {
    margin-left: -.7rem;
    margin-right: 7px; }
  .nav-text-sub {
    font-size: 13px;
    font-weight: 500; }
  .mega-menu-header {
    -ms-display: flex;
    -webkit-display: flex;
    display: -webkit-box;
    display: flex;
    -ms-align-items: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .slide-text {
    font-size: 28px; }
  .slide-heading {
    font-size: 54px; }
  }

@media (max-width: 767px) {
  .slide-text {
    font-size: 24px; }
  .slide-heading {
    font-size: 48px; }
  
  .footer-bottom-menu {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .copyright {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 15px; }
  .footer-heading {
    cursor: pointer;
    margin: 0 0 25px; }
  .footer-widget {
    margin-top: 0; }
  .footer-widget-inner {
    -ms-border-top: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 20px; }
  
  .footer-widget:first-child .footer-widget-inner {
    -ms-border-top: 0;
    -webkit-border-top: 0;
    border-top: 0;
    padding-top: 0; }
  .footer-menu {
    display: none;
    padding-bottom: 25px; }
  .footer-top {
    padding: 100px 0 65px; }
  .mt-100 {
    margin-top: 80px; }
  .pt-100 {
    padding-top: 80px; }
  .pb-100 {
    padding-bottom: 80px; }
 
 
  .slide-img {
    /*height: 460px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;*/ }
 
 
   }

@media (max-width: 601px) {
   }

@media (max-width: 480px) {
 
   }

@media (max-width: 400px) {
  .offcanvas {
    max-width: 100vw; }
  .newsletter-modal-heading {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .newsletter-modal-icon {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px; } }





    .about .about__img{position:relative}.about .about__img img{width:0;opacity:0;mix-blend-mode:multiply;transition:all 1.8s ease;transition-delay:3s;border-radius:4px}.about-1 .video-banner{position:relative;margin-right:70px}.about-1 .video-banner img{border-radius:4px}
    @media only screen and (max-width:992px){.about-1 .video-banner{margin-right:0}.about-1 .video-banner img{width:100%}}


    .heading__subtitle{font-size:18px;line-height:1;font-weight:700;color:var(--primary-color); display:inline-block;margin-bottom:0px}
    .heading__title{font-size:45px;color: var(--secondary-color); margin-bottom:15px}
    .heading__desc{font-size:16px;line-height:25px;margin-bottom:0; text-align: justify;}.heading-3 .heading__subtitle{margin-bottom:17px}
    .heading-3 .heading__title{color: var(--secondary-color); font-size:45px;font-weight:700;line-height:45px;margin-bottom:20px}
    
    @media only screen and (min-width:768px) and (max-width:991px){.heading__title{font-size:30px}.heading-3 .heading__title{font-size:34px;line-height:43px}}
    
    @media only screen and (min-width:320px) and (max-width:767px){.heading__title{font-size:24px;margin-bottom:10px}.heading-3 .heading__title{font-size:29px;font-weight:600;line-height:40px}}
   


    .banner-2 .inner-padding{padding:50px 50px 50px}.banner-2 .heading__title{margin-bottom:31px}.banner-2 .list-items{display:-webkit-flex;display:-ms-flexbox;display:flex;flex-wrap:wrap}.banner-2 .list-items li{flex-basis:100%}.banner-3 .inner-padding{padding:110px 70px}.banner-3 .heading__desc{font-size:17px;font-weight:500;line-height:26px;margin-bottom:0}
    .bg-theme{background-color:var(--primary-color) !important}
    .background-banner{min-height:400px}
    .bg-overlay:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:-1;background-color:rgba(27,26,26,.15)}
    .bg-parallax{background-attachment:fixed}
    .bg-img, .bg-img2, .bg-img2{position:relative;z-index:1}
    .col-padding-0>.row{margin:0}.col-padding-0,.col-padding-0>.row>[class*=col-]{padding:0}

    .management-carousel .carousel-arrows .owl-nav .owl-next span, .management-carousel .carousel-arrows .owl-nav .owl-prev span{
      display: none;
    }
    .management-carousel .carousel-arrows .owl-nav .owl-next,.management-carousel .carousel-arrows .owl-nav .owl-prev{font-family: "Font Awesome 6 Pro";  width:40px;height:40px;line-height:40px; position: absolute; background-color: transparent; color: var(--primary-color); }
    .management-carousel .carousel-arrows .owl-nav .owl-next:before{content:"\f054";font-size:20px; font-size: 30px !important ;}
    .management-carousel .carousel-arrows .owl-nav .owl-prev:before{content:"\f053";font-size:20px; font-size: 30px !important ;}
    .management-carousel .carousel-arrows .owl-nav .owl-next{top: 50%;transform: translateY(-50%); right:-35px}
  .management-carousel .carousel-arrows .owl-nav .owl-prev{top: 50%;transform: translateY(-50%); left:-35px}
  
    .management-card{
      background-color: var(--primary-color);
      color: var(--white-color);
      padding: 25px;
      border-radius: 5px;
    }
    .member-photo img{
      width: 120px !important;
      height: auto;
      border-radius: 50%;
      margin: 0 auto;
      border: 3px solid var(--secondary-color);
    }
    .member-photo h6{
      font-size: 20px;
      line-height: 24px;
      font-weight: 500;
      color: var(--white-color);
      text-transform: uppercase;
      margin: 5px 0 0 0;
    }
    .member-photo span{
      font-size: 16px;
      color: var(--secondary-color);
    }
    .management-card .profile{
      text-align: justify;
      position: relative;
      font-weight: 400;
      padding: 10px 10px 20px 10px;
    }
    .management-card .profile:after{
      content: '';
      width: 15%;
      height: 2px;
      background-color: var(--secondary-color);
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%);
    }


    .corporate{
      background-color: var(--primary-color);
    }
    .corporate .address h4{
      color: var(--secondary-color);
      padding-bottom: 5px;
      margin-bottom: 10px;
      border-bottom: 2px solid rgba(255,255,255,0.2);
    }
    .corporate .address p{
      color: var(--white-color);
    }
    .corporate .phone{
      position: relative;
      color: var(--white-color);
      padding-left: 45px;
      line-height: 35px;
    }
    .corporate .phone:before{
      width: 35px;
      height: 35px;
      position: absolute;
      top: 0;
      left: 0;
      font-family: "Font Awesome 6 Pro";
      content: "\f095";
      font-size: 20px;
      line-height: 35px;
      color: var(--primary-color);
      text-align: center;
      background-color: #fff;
      border-radius: 50%;
    }

    .corporate .mail{
      position: relative;
      color: var(--white-color);
      padding-left: 45px;
      line-height: 35px;
    }
    .corporate .mail a{
      color: var(--white-color);
    }
    .corporate .mail:before{
      width: 35px;
      height: 35px;
      position: absolute;
      top: 0;
      left: 0;
      font-family: "Font Awesome 6 Pro";
      content: "\f0e0";
      font-size: 20px;
      line-height: 35px;
      color: var(--primary-color);
      text-align: center;
      background-color: #fff;
      border-radius: 50%;
    }



    /*----------------------------------------*/
/*  06. PORTFOLIO CSS START
/*----------------------------------------*/
.portfolio__item {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.portfolio__item::after {
  position: absolute;
  content: "";
  top: 0%;
  left: 0%;
  right: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  background-color: var(--primary-color);
  -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;
  opacity: 0;
}
.portfolio__item:hover::after {
  opacity: 0.9;
}
.portfolio__item:hover .portfolio__content {
  bottom: 45px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .portfolio__item:hover .portfolio__content {
    bottom: 20px;
  }
}
.portfolio__item:hover .portfolio__view {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .portfolio__item:hover .portfolio__view {
    top: 20px;
  }
}
.portfolio__item-3.portfolio-item-active .portfolio__btn-3 {
  -webkit-transform: perspective(400px) rotateX(0deg);
  -moz-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  -o-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
  visibility: visible;
  opacity: 1;
}
.portfolio__item-3:hover .portfolio__btn-3 {
  -webkit-transform: perspective(400px) rotateX(0deg);
  -moz-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  -o-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
  visibility: visible;
  opacity: 1;
}
.portfolio__title {
  font-size: 20px;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 0;
}
.portfolio__title a:hover {
  color: var(--tp-theme-1);
}
.portfolio__title-3 {
  font-size: 24px;
  color: var(--tp-common-dark-3);
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__title-3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__title-3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .portfolio__title-3 {
    font-size: 20px;
  }
}
.portfolio__title-3 a:hover {
  color: var(--tp-theme-2);
}
.portfolio__content {
  position: absolute;
  bottom: 0;
  left: 50px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 575px) {
  .portfolio__content {
    left: 20px;
  }
}
.portfolio__content-3 {
  border: 1px solid var(--tp-border-10);
  padding: 32px 40px;
}
@media (max-width: 575px) {
  .portfolio__content-3 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.portfolio__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.portfolio__tag-3 {
  position: absolute;
  bottom: 0;
  left: 40px;
}
.portfolio__tag-3 a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tp-common-dark-3);
  background-color: var(--tp-theme-2);
  padding: 0 7px;
}
.portfolio__view {
  position: absolute;
  top: 0;
  left: 50px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
.portfolio__view .portfolio-view-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--secondary-color);
  font-size: 16px;
}
.portfolio__view .portfolio-view-btn:hover {
  color: var(--secondary-color);
  background-color: var(--white-color);
}
@media (max-width: 575px) {
  .portfolio__view {
    left: 20px;
  }
}
.w-img img {
  width: 100%;
}
.transition-3 {
  -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;
}


.service-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-list li{
  color: var(--white-color);
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.service-list li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.menu-address h6{
  color: var(--secondary-color);
}



.btn-1 {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 15px 20px 12px;
	text-align: center;
	z-index: 1;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 22px;
	color: #ffffff;
	font-weight: 500;
	
	text-transform: uppercase;
	transition: .5s;
	/*border-radius: 5px;*/
  background-color: var(--primary-color);
	/*background-image: linear-gradient(90deg, #d90329 0%, #d92c04 100%);*/
}
.btn-1:hover {
	color: #fff;
}
.btn-1 span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	background-color: var(--secondary-color);
	transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.btn-1 i {
	margin-left: 5px;
	font-size: 20px;
	transition: .5s;
	font-weight: bold;
	vertical-align: middle;
	position: relative;
	line-height: 15px;
	top: -2px;
}
.btn-1:hover i {
	color: #fff;
}
.btn-1:hover span {
	width: 225%;
	height: 562.5px;
}


.btn-1 i.far {
	font-weight: 400;
}

a.btn-1.s-three {
	background: #fff;
	border: 2px solid var(--primary-color);
	color: #242424;
	padding: 13px 20px 10px;
}
a.btn-1.s-three:hover {
	color: #fff;
	border-color: var(--secondary-color);
}


.banner-layout4{padding:100px 0}

.m-way-box p{
  font-size: 16px;
}









 /*management Slider*/
 .management-slider.owl-carousel .owl-dots{display: none; margin:20px 0 10px;text-align:center}
 .management-slider.owl-carousel .owl-nav button.owl-prev,.management-slider.owl-carousel .owl-nav button.owl-next{position:absolute;width:40px;height:40px; top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%); }
 .management-slider.owl-carousel .owl-nav button.owl-prev i,.management-slider.owl-carousel .owl-nav button.owl-next i{color: var(--primary-color);font-size:30px}
 .management-slider.owl-carousel .owl-nav button.owl-prev:hover i,.management-slider.owl-carousel .owl-nav button.owl-next:hover i{color:var(--secondary-color)}
 .management-slider.owl-carousel .owl-nav button.owl-prev{left:-40px}
 .management-slider.owl-carousel .owl-nav button.owl-next{right:-40px}
 .management-slider.owl-carousel .owl-dots {
     text-align: center;
     margin-top: 0px;
   }
   .management-slider.owl-carousel .owl-dots .owl-dot {
     width: 8px;
     height: 8px;
     display: inline-block;
     margin: 0 6px;
     padding: 3px 0;
     border-radius: 50px;
     border: none;
     transition: all 0.3s ease;
     background: var(--primary-color);
     box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
   }
   .management-slider.owl-carousel .owl-dots .owl-dot:hover,
   .management-slider.owl-carousel .owl-dots .owl-dot.active {
     width: 40px;
     background: var(--secondary-color);
     opacity: 1;
   }
   @media (max-width:575px){
    .management-slider.owl-carousel .owl-dots{display: block;}
    .management-slider.owl-carousel .owl-nav button.owl-prev,.management-slider.owl-carousel .owl-nav button.owl-next{
      width: 30px;
      height: 40px;
      background-color: var(--white-color);
    }
    .management-slider.owl-carousel .owl-nav button.owl-prev i,.management-slider.owl-carousel .owl-nav button.owl-next i{font-size:25px}
    .management-slider.owl-carousel .owl-nav button.owl-prev{left:-10px}
 .management-slider.owl-carousel .owl-nav button.owl-next{right:-10px}
  }


 /*Venture Slider*/
.venture-slider.owl-carousel .owl-dots{display: none; margin:20px 0 10px;text-align:center}
.venture-slider.owl-carousel .owl-nav button.owl-prev,.venture-slider.owl-carousel .owl-nav button.owl-next{position:absolute;width:40px;height:40px; background-color: var(--primary-color);}
.venture-slider.owl-carousel .owl-nav button.owl-prev i,.venture-slider.owl-carousel .owl-nav button.owl-next i{color: var(--white-color);font-size:20px}
.venture-slider.owl-carousel .owl-nav button.owl-prev:hover i,.venture-slider.owl-carousel .owl-nav button.owl-next:hover i{color:var(--secondary-color)}
.venture-slider.owl-carousel .owl-nav button.owl-prev{top: -10px;left:-60px}
.venture-slider.owl-carousel .owl-nav button.owl-next{top: 31px; left:-60px}
.venture-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 0px;
  }
  .venture-slider.owl-carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 0 6px;
    padding: 3px 0;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    background: var(--primary-color);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
  }
  .venture-slider.owl-carousel .owl-dots .owl-dot:hover,
  .venture-slider.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    background: var(--secondary-color);
    opacity: 1;
  }
  .venture-card h4{
    color: var(--secondary-color);
    }

    @media (max-width:575px){
      .venture-slider.owl-carousel .owl-dots{display: block;}
      .venture-slider.owl-carousel .owl-nav button{
        display: none;
      }
    }


    
  /*Logos Slider*/
  .clients-slider{margin-top:0px; background-color: #fff !important; position: relative; z-index: 1; padding: 20px 0; border-radius: 5px;}
  .clients-slider .client {
    padding: 5px;
    border: 1px solid #ededed !important;
    border-radius: 3px;
  }

.logos-slider.owl-carousel .owl-dots{margin:20px 0 10px;text-align:center}

.logos-slider.owl-carousel .owl-nav button.owl-prev,.logos-slider.owl-carousel .owl-nav button.owl-next{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:60px;height:60px;}
.logos-slider.owl-carousel .owl-nav button.owl-prev i,.logos-slider.owl-carousel .owl-nav button.owl-next i{color:var(--primary-color);font-size:30px}
.logos-slider.owl-carousel .owl-nav button.owl-prev:hover i,.logos-slider.owl-carousel .owl-nav button.owl-next:hover i{color:var(--secondary-color)}
.logos-slider.owl-carousel .owl-nav button.owl-prev{left:-40px}
.logos-slider.owl-carousel .owl-nav button.owl-next{right:-40px}
.logos-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 0px;
  }
  .logos-slider.owl-carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 0 6px;
    padding: 3px 0;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    background: var(--primary-color);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
  }
  .logos-slider.owl-carousel .owl-dots .owl-dot:hover,
  .logos-slider.owl-carousel .owl-dots .owl-dot.active {
    width: 40px;
    background: var(--secondary-color);
    opacity: 1;
  }

  
 /*about Slider*/
 .about-slider.owl-carousel .owl-dots{margin:20px 0 10px;text-align:center}
 
 .about-slider.owl-carousel .owl-dots {
     text-align: center;
     position: relative;
     margin-top: -30px;
     z-index: 50 !important;
   }
   .about-slider.owl-carousel .owl-dots .owl-dot {
     width: 8px;
     height: 8px;
     display: inline-block;
     margin: 0 6px;
     padding: 3px 0;
     border-radius: 50px;
     border: none;
     transition: all 0.3s ease;
     background: var(--white-color);
     box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
   }
   .about-slider.owl-carousel .owl-dots .owl-dot:hover,
   .about-slider.owl-carousel .owl-dots .owl-dot.active {
     width: 40px;
     background: var(--secondary-color);
     opacity: 1;
   }
   .about-slider{
    border-radius: 5px !important;
    overflow: hidden;
   }
   .about-slider .about-item img{
    border-radius: 5px !important;
   }



.page-title{
  padding: 90px 0 !important;
  background-color: var(--primary-color) !important;
}
.page-title .bg-img img{
  mix-blend-mode: darken !important;
}
.page-title h1{
  font-weight: 500 !important;
  letter-spacing: -1px;
}
.pagetitle__heading{
  font-size: 40px;
  font-weight: 400 !important;
  color: var(--white-color);
}
.team_item {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.team_item .team_img {
  position: relative;
  z-index: 3;
}

.team_item .team_img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.team_item .team_img:before {
  content: "";
  background: url(../img/team/team-shadow.jpg) no-repeat scroll center;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  min-height: 174px;
  z-index: 1;
}

.team_item .team_img:after {
  content: "";
  background: rgba(40, 51, 93, 0.6);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
  z-index: 2;
}

.team_item .team_text {
  position: absolute;
  left: 0px;
  bottom: -26px;
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  z-index: 3;
}

.team_item .team_text h4 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
}

.team_item .team_text h5 {
  font-size: 15px;
  font-weight: 300;
  color: var(--white-color);
  margin-bottom: 0px;
}

.team_item .team_text ul {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 22px;
  opacity: 0;
}

.team_item .team_text ul li {
  margin-right: 22px;
}

.team_item .team_text ul li:last-child {
  margin-right: 0px;
}

.team_item .team_text ul li a {
  color: #fff;
  font-size: 22px;
}

.team_item:hover .team_img:after {
  opacity: 1;
}

.team_item:hover .team_img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.team_item:hover .team_text {
  bottom: 27px;
}

.team_item:hover .team_text ul {
  opacity: 1;
  -webkit-transition: all 600ms ease-in;
  -o-transition: all 600ms ease-in;
  transition: all 600ms ease-in;
}


.s-border-1{
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}
.s-border-2{
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}
.s-border-3{
  border-bottom: 1px solid #eee;
 
}
.s-border-4{
  border-right: 1px solid #eee;
}
.s-border-5{
  border-right: 1px solid #eee;
}

@media (max-width:991px){
  .s-border-2{
    border-bottom: 1px solid #eee;
    border-right: 0px solid #eee;
  } 
  .s-border-3{
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
  }
  .s-border-4{
    border-right: 0px solid #eee;
    border-bottom: 1px solid #eee;
  }
}
@media (max-width:767px){
  .s-border-1{
    border-bottom: 1px solid #eee;
    border-right: 0px solid #eee;
  }
  .s-border-3{
    border-bottom: 1px solid #eee;
    border-right: 0px solid #eee;
  }
  .s-border-5{
    border-right: 0px solid #eee;
    border-bottom: 1px solid #eee;
  }
}
.icon-box {
  margin-bottom: 30px;
}
.icon-box .icon {
  display: inline-block;
  height: 64px;
  margin-bottom: 10px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 64px;
}
.icon-box .icon i {
  line-height: 64px;
}

.icon-box .icon.icon-bordered {
  border: 1px solid #777777;
}
.icon-box .icon.icon-bordered:hover {
  background-color: #777777;
  color: #fff;
}

.icon-box .icon.icon-circled {
  border-radius: 50%;
}

.icon-box .icon.icon-lg {
  height: 90px;
  width: 90px;
}
.icon-box .icon.icon-lg i {
  font-size: 48px;
  line-height: 90px;
}

.icon-box .icon.icon-border-effect {
  position: relative;
}
.icon-box .icon.icon-border-effect::after {
  border-radius: 50%;
  box-shadow: 0 0 0 3px #eeeeee;
  box-sizing: content-box;
  content: "";
  height: 100%;
  left: -4px;
  opacity: 0;
  padding: 4px;
  top: -4px;
  transform: scale(0.8);
  transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.icon-box .icon.icon-border-effect.effect-circled::after {
  border-radius: 50%;
}


.icon-box i {
  display: inline-block;
  font-size: 40px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon-box i[class*="pe-7s-"] {
  vertical-align: text-bottom;
}



.icon-box .icon-box-title {
  margin: 0;
}
.icon-box .icon-box-title a {
  color: #111;
  font-size: 17px;
  font-weight: 500;
}
.icon-box p {
  padding: 0 15px;
}
.icon-box .icon-border-effect:hover::after,
.icon-box:hover .icon-border-effect::after {
  opacity: 1;
  transform: scale(1);
}
.bg-theme-colored {
  background-color: var(--primary-color) !important;
}
.icon-box .icon.icon-border-effect::after {
  box-shadow: 0 0 0 3px var(--primary-color);
}




.gallery-one__single {
  position: relative;
  display: block;
}

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
}

.gallery-one__single:hover .gallery-one__img:before {
  opacity: .90;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-one__img img {
  width: 100%;
}

.gallery-one__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-one__icon a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}


.gallery-one__single:hover .gallery-one__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-one__icon a:hover {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

