@charset "UTF-8";
.user-select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nice-shadow {
  box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
}

.text-aurora {
  color: var(--main-color);
}

.border-aurora {
  border-color: var(--main-color) !important;
}

.bg-aurora {
  background-color: var(--main-color);
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: 0.3s;
}
/*a:hover {*/
/*  color: white !important;*/
/*}*/

.btn-6 {
  padding: 1.3em 3em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 45px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  background-color: var(--button-color);
}
.btn-6:hover, .btn-6.hover {
  background-color: var(--main-color);
  box-shadow: 0 15px 20px rgba(var(--main-color-rgb), 0.4);
  color: #000;
}
.btn-6.hover:hover {
  color: #fff;
  background-color: var(--button-color);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
/*.btn-7 {*/
/*  padding: 1.3em 3em;*/
/*  font-size: 12px;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 2.5px;*/
/*  font-weight: 500;*/
/*  color: #000;*/
/*  background-color: #fff;*/
/*  border: none;*/
/*  border-radius: 45px;*/
/*  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);*/
/*  transition: all 0.3s ease 0s;*/
/*  cursor: pointer;*/
/*  outline: none;*/
/*}*/
/*.btn-7:hover, .btn-7.hover {*/
/*  background-color: var(--main-color);*/
/*  box-shadow: 0 15px 20px rgba(var(--main-color-rgb), 0.4);*/
/*  color: #fff;*/
/*}*/
/*.btn-7.hover:hover {*/
/*  color: #000;*/
/*  background-color: #fff;*/
/*  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);*/
/*}*/
.title-area {
  margin-bottom: 30px;
}
.title-area.white .sub-title {
  color: var(--titles-color);
}
.title-area.white .sub-title .shape {
  background-color: #fff;
}
.title-area .sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--other-color);
  text-transform: uppercase;
  margin-top: -0.41em;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.title-area .sub-title .shape {
  display: inline-block;
  height: 3px;
  width: 40px;
  background-color: var(--main-color);
  border-radius: 99px;
  position: relative;
}
.title-area .sub-title .shape.right .dots {
  right: -6px;
}
.title-area .sub-title .shape.right .dots:before {
  right: -6px;
}
.title-area .sub-title .shape .dots {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: inherit;
  border-radius: 99px;
  position: absolute;
  top: 0;
}
.title-area .sub-title .shape .dots::before, .title-area .sub-title .shape .dots::after {
  content: "";
  height: inherit;
  width: inherit;
  background-color: inherit;
  border-radius: inherit;
  display: inline-block;
  position: absolute;
  top: 0;
}
.title-area .sub-title .shape .dots::after {
  right: -12px;
}
.title-area .sec-title {
  margin-top: -0.23em;
  font-size: 2rem;
}
.title-area.text-center .sub-title {
  justify-content: center;
}
.title-area.text-center .sub-title .shape.left .dots {
  left: -6px;
}
.title-area.text-center .sub-title .shape.left .dots:before {
  left: -6px;
}
.title-area.text-center .sub-title .shape.left .dots::after {
  left: -12px;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  -webkit-animation-name: DropDownSlide;
  animation-name: DropDownSlide;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.dropdown-menu li {
  margin: 0.3rem 0.5rem;
}
.dropdown-menu .dropdown-item .active, .dropdown-menu .dropdown-item:active {
  background-color: var(--main-color);
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
  color: var(--main-color);
  border-radius: 5px;
  background-color: rgba(var(--main-color-rgb), 0.1);
}
.dropdown-menu .dropdown-divider {
  height: 0;
  opacity: 1;
  border-top: 1px solid #eff2f7;
}

.custom-form-input {
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  height: 52px;
  background-color: #fafafa;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  color: #333;
  transition: 0.3s;
  line-height: 52px;
  border-radius: 5px;
  border: solid 2px #dddddd;
  box-shadow: none;
}
.custom-form-input.dark {
  /*background-color: #303036;*/
  /*color: #fff;*/
  border-color: #303036;
}
.custom-form-input.dark:focus {
  border-color: var(--main-color);
  /*background-color: #303036;*/
}
.custom-form-input:focus {
  border-color: var(--main-color);
  background-color: #fff;
}
.custom-form-input .current {
  color: #909090;
}

textarea.custom-form-input {
  height: auto;
  padding-top: 10px;
}

select.custom-form-input {
  line-height: 0;
}
select.custom-form-input .nice-select {
  border-radius: 0;
}

.nice-select.custom-form-input {
  line-height: 25px;
  border-radius: 0;
}

input[type=file].custom-form-input {
  color: #909090;
  line-height: 1.9rem;
}
input[type=file].custom-form-input::file-selector-button {
  display: none;
}

.form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--main-color-rgb), 0.25);
}

@keyframes flipX {
  0% {
    transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes DropDownSlide {
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
/* loading animation */
.loading-overlay {
  position: fixed;
  background: #fff;
  width: 100%;
  height: calc(100% + 90px);
  z-index: 1040;
  display: none;
  margin-top: -90px;
}

.loading-container {
  position: fixed;
  top: 50%;
  z-index: 1050;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.loading-container .loader-body {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  background: var(--main-color);
  box-sizing: border-box;
  animation: flipX 1s linear infinite;
}

body.load {
  overflow: hidden;
}
body.load .loading-container,
body.load .loading-overlay {
  display: block;
}

:root {
  --header-footer-color: #ffffff;
  /*header and footer text color*/
  --menu-font-color: #000000;
  /*menu font color*/
  --sub-text: #727272;
  --main-text: #333;
  /* applied */
  --main-bg: #fff;
  --titles-color: #333;
  /*titles color*/
  --button-color: #f3e0b2;
  /*buttons font color*/
  --main-color: #32aa60;
  /*header,footer background,indicators and mouse hover*/
  --main-color-rgb: 50, 170, 96;
  --description-color: #333;
  /*description font color*/
  --slider-font-color: #f7f7f7;
  /*slider font color*/
}

.text-title {
  color: var(--titles-color);
}

body {
  background-color: var(--main-bg);
  color: var(--description-color);
  /*font-family: "Jost", sans-serif;*/
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  font-size: 22px;
  background-color: var(--main-color);
  cursor: pointer;
}
.back-to-top:hover {
  color: #fff;
}

.banner {
  --bs-breadcrumb-divider: "";
  height: 300px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.banner .breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner .breadcrumb-item.text-aurora{
    color: var(--main-color) !important;
}

.banner .breadcrumb-item .text-white{
    color: var(--titles-color) !important;
}

.banner h1.h3{
    color: var(--slider-font-color) !important;
}

.about-us-section {
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.about-us-section .decoration-v2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 134%;
  min-width: 1280px;
  max-width: 1920px;
  height: auto;
  opacity: 0.2;
  z-index: -1;
}
.about-us-section .about-us-image-wrapper {
  overflow: hidden;
}
.about-us-section .about-us-image-wrapper img {
  transition: 0.4s;
}
.about-us-section .about-us-image-wrapper img:hover {
  transform: scale(1.1);
}

.our-category-section .single-slide img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.our-category-section .single-slide .category-title {
  color: var(--titles-color);
  transition: 0.4s;
}
.our-category-section .single-slide:hover .category-title {
  color: var(--main-color);
}

.our-category-section,
.our-offers-section,
.our-product-section {
  position: relative;
}
.our-category-section .glide__arrows,
.our-offers-section .glide__arrows,
.our-product-section .glide__arrows {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.our-category-section .glide__arrows button,
.our-offers-section .glide__arrows button,
.our-product-section .glide__arrows button {
  color: #777777;
  font-size: 0.9231rem;
  text-transform: uppercase;
  border: 1px solid var(--main-color);
  background-color: #fff;
  font-weight: 500;
  border-radius: 4px;
  outline: 0;
  transition: 0.2s;
  cursor: pointer;
  min-height: 40px;
  padding: 0 15px;
  position: unset;
  transform: none;
  display: inline-block;
  text-shadow: none;
  box-shadow: none;
  margin: 0 5px;
}
.our-category-section .glide__arrows button:hover,
.our-offers-section .glide__arrows button:hover,
.our-product-section .glide__arrows button:hover {
  background-color: var(--main-color);
  color: #fff;
}

.our-product-section .single-slide .product-title {
  color: var(--titles-color);
  transition: 0.4s;
  margin-bottom: 5px;
}

.our-product-section .single-slide .product-title:hover{
     color: var(--main-color);
} 
.our-product-section .single-slide .product-info {
  margin-bottom: 0;
  color: var(--description-color);
}
.our-product-section .single-slide .product-price {
  color: var(--description-color);
}
.our-product-section .single-slide .product-price .old {
  color: #8c8c8c;
  text-decoration: line-through;
}
.our-product-section .single-slide .product-price .current {
  color: #e95144;
}
.our-product-section .single-slide:hover .product-title {
  color: var(--main-color);
}

.our-offers-section .single-slide {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.our-offers-section .single-slide::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.1019607843);
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 1;
}
.our-offers-section .single-slide img.offer-img {
  width: 450px;
  height: 530px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s;
}
.our-offers-section .single-slide .offer-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
  color: var(--description-color);
  z-index: 3;
}
.our-offers-section .single-slide .offer-wrapper .offer-title {
  position: relative;
  border-color: transparent;
  z-index: 1;
  display: inline-block;
  color: var(--titles-color);
}
.our-offers-section .single-slide .offer-wrapper .offer-title::before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  left: -7px;
  width: calc(100% + 17px);
  right: 0;
  bottom: 0;
  display: block;
  height: 22px;
  background-color: var(--main-color);
  z-index: -1;
}
.our-offers-section .single-slide:hover img.offer-img {
  transform: scale(1.1);
}

.project-details-page .images-glary .single-image img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 576px) {
  .project-details-page .images-glary .single-image img {
    height: 200px;
  }
}
.project-details-page .glide__bullets {
  bottom: 0;
}
.project-details-page .glide__bullets .glide__bullet {
  background-color: #d6d6d6;
}
.project-details-page .glide__bullets .glide__bullet.glide__bullet--active {
  background-color: var(--main-color);
}

.contact-us .contact-us-desc .single-desc {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.contact-us .contact-us-desc .single-desc .info {
  flex-grow: 1;
}
.contact-us .contact-us-desc .single-desc a {
  color: var(--main-color);
  transition: 0.4s;
}
.btn-7{
    color:black !important;
}
.contact-us .contact-us-desc .single-desc a:hover {
  color: white !important;
}
.contact-us .contact-us-desc .single-desc .icon {
  width: 50px;
  height: 50px;
  line-height: 48px;
  background-color: #fff;
  font-size: 22px;
  border-radius: 20px;
  text-align: center;
  color: var(--main-color);
  transition: 0.4s;
  border: 2px solid var(--main-color);
}
.contact-us .contact-us-desc .single-desc .icon:hover {
  background-color: var(--main-color);
  color: #fff;
}

.card-2 .single-feature {
  padding: 45px 30px;
  border-radius: 10px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0 -33px 51px rgba(209, 209, 209, 0.16);
  overflow: hidden;
}
.card-2 .single-feature:hover {
  box-shadow: 0 0 51px rgba(165, 165, 165, 0.26);
}
.card-2 .single-feature:hover .feature-icon {
  border-radius: 50%;
}
.card-2 .single-feature::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
  content: "";
  position: absolute;
  height: 3px;
  transition: all 0.3s ease-out 0s;
  left: 0;
  bottom: 0;
  background-color: var(--main-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-2 .single-feature {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-2 .single-feature {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .card-2 .single-feature {
    margin-bottom: 30px;
  }
}
.card-2 .single-feature .icon-style {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: all 0.3s ease-out 0s;
  background-color: var(--main-color);
  color: #fff;
}
.card-2 .single-feature .feature-content .feature-title {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-2 .single-feature .feature-content .feature-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.card-2 .single-feature .feature-content .feature-info {
  font-size: 1.5rem;
  line-height: 24px;
  color: #868aaa;
}

.extra-feature .sx-icon-bx-1 {
  position: relative;
  z-index: 1;
  transition: all 0.5s linear;
  overflow: hidden;
  padding: 50px;
  background: #fff;
  border: 2px solid #f6f6f6;
}
.extra-feature .sx-icon-bx-1 .sx-tilte {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color:var(--titles-color);
}
@media only screen and (max-width: 991px) {
  .extra-feature .sx-icon-bx-1 .sx-tilte {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .extra-feature .sx-icon-bx-1 {
    padding: 35px;
  }
}
.extra-feature .sx-icon-bx-1 .icon-content {
  overflow: inherit;
}
.extra-feature .sx-icon-bx-1:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  transition: all 0.4s;
  outline: solid 0 #fff;
}
.extra-feature .sx-icon-bx-1:hover:after {
  outline: solid 20px #fff;
  outline-offset: -20px;
  background-color: var(--main-color);
}
.extra-feature .sx-icon-bx-1:hover {
  color: #fff;
  z-index: 1;
  position: relative;
}
.extra-feature .sx-icon-bx-1:hover .sx-tilte {
  /*color: #fff;*/
  color: var(--main-color);
}
.extra-feature .sx-icon-bx-1:hover .sx-text-primary {
  color: #fff;
}

.card-9 .single-member {
  box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
  position: relative;
}
.card-9 .single-member .member-image {
  position: relative;
}
.card-9 .single-member .member-image img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-9 .single-member .member-content {
  position: absolute;
  bottom: -60px;
  left: 15px;
  box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
  padding: 12px;
  width: calc(100% - 30px);
  text-align: center;
  border-radius: 12px;
  margin: auto;
  transition: all 0.3s ease-out 0s;
  z-index: 2;
  background: #fff;
}
.card-9 .single-member .member-content .member-social-media {
  margin-bottom: 12px;
}
.card-9 .single-member .member-content .member-social-media ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-9 .single-member .member-content .member-social-media ul li a {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(var(--main-color-rgb), 0.1);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  font-size: 15px;
  text-decoration: none;
}
.card-9 .single-member .member-content .member-social-media ul li a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.card-9 .single-member .member-content .member-specialize ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.card-9 .single-member .member-content .member-specialize ul li {
  margin: 10px 5px;
}
.card-9 .single-member .member-content .member-specialize ul li .single-specialize {
  border-radius: 10px;
  background: rgba(var(--main-color-rgb), 0.1);
  color: var(--main-color);
}
.card-9 .single-member .member-content .member-name {
  color: #333;
}

.card-7 .single-blog-grid {
  margin-top: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0745098039);
  border-radius: 18px;
  padding: 12px;
}
.card-7 .single-blog-grid:hover .blog-img img {
  transform: scale(1.1);
}
.card-7 .single-blog-grid a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
}
.card-7 .single-blog-grid .blog-img {
  overflow: hidden;
  border-radius: 12px;
}
.card-7 .single-blog-grid .blog-img a {
  width: 100%;
}
.card-7 .single-blog-grid .blog-img a img {
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
}
.card-7 .single-blog-grid .blog-content {
  padding: 30px 20px 18px 20px;
}
.card-7 .single-blog-grid .blog-content .category {
  font-size: 14px;
  color: var(--main-color);
  display: inline-block;
  font-weight: 500;
}
.card-7 .single-blog-grid .blog-content h4 {
  display: block;
  font-size: 25px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 0;
  margin-top: 10px;
  line-height: 28px;
}
.card-7 .single-blog-grid .blog-content h4 a {
  font-size: 18px;
  color: #151515;
  display: inline-block;
}
.card-7 .single-blog-grid .blog-content h4 a:hover {
  color: var(--main-color);
}
.card-7 .single-blog-grid .blog-content p {
  display: block;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  color: #727272;
}
.card-7 .single-blog-grid .blog-content .more-btn {
  display: inline-block;
  margin-top: 20px;
  color: #888;
  font-weight: 500;
}
.card-7 .single-blog-grid .blog-content .more-btn:hover {
  color: var(--main-color);
  letter-spacing: 1px;
}

.gallery-page .gallery-single {
  position: relative;
}
.gallery-page .gallery-single:hover .gallery-img::before {
  opacity: 1;
}
.gallery-page .gallery-single .gallery-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.gallery-page .gallery-single .gallery-img::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 20px;
  background-image: linear-gradient(45deg, var(--main-color) 0%, rgba(17, 29, 50, 0) 100%);
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}
.gallery-page .gallery-single .gallery-img img {
  max-width: 100%;
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.brochure-section {
  height: 300px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.brochure-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}

footer.footer {
  background: #fff;
  position: relative;
  color: var(--header-footer-color);
  z-index: 1;
  overflow: hidden;
}

footer.footer .dashed-border {
  border-bottom: 1px dashed #6f6f6f;
}

footer.footer .widget a {
  color: var(--header-footer-color);
  transition: 0.5s;
  text-decoration: none;
}

/*footer.footer .widget a:hover {*/
  /*color: #eee;*/
/*  color: var(--main-color);*/
/*  text-decoration: underline;*/
/*}*/

footer.footer .widget .widget-link {
  position: relative;
}

footer.footer .widget .widget-link:hover:before {
  opacity: 0.5;
}

footer.footer .widget .widget-link::before {
  position: absolute;
  content: "#";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  left: -17px;
  opacity: 0;
}

ul.footer-social-media li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}
ul.footer-social-media li a:hover {
  border-color: var(--main-color);
  background: var(--main-color);
}
ul.footer-social-media.special li a {
  color: var(--main-color);
  background-color: #fff;
  border-color: #fff;
}
ul.footer-social-media.special li a:hover {
  background: var(--main-color);
  color: #fff;
}

header.hero-slider-container .glide__slides {
  margin-bottom: 0;
}
header.hero-slider-container .single-slide {
  height: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
  color: var(--slider-font-color);
}
@media (max-width: 576px){
    header.hero-slider-container .single-slide {
      height: 300px;
    } 
}
header.hero-slider-container .single-slide::before {
  display: block;
  background-color: rgba(0, 0, 0, 0.4784313725);
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: -1;
}
header.hero-slider-container .single-slide .header-title {
  position: relative;
  display: inline-block;
  color: var(--titles-color);
}
header.hero-slider-container .single-slide .header-title::before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 22px;
  background-color: var(--main-color);
  z-index: -1;
}
header.hero-slider-container .owl-theme .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 10px;
  z-index: 1;
}
header.hero-slider-container .owl-theme .owl-dots .owl-dot.active span,
header.hero-slider-container .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--main-color);
}
header.hero-slider-container .owl-theme .owl-dots span {
  width: 11px;
  height: 20px;
  transition: 0.5s;
}

nav .extra-utils {
  display: flex;
  align-items: center;
  justify-content: end;
}
nav .extra-utils .search .search-wrapper {
  display: flex;
  align-items: center;
border: 1px solid #555;
padding: 7px;
border-radius: 5px
}
nav .extra-utils .search .search-wrapper input {
  color: #3c3c3c;
  /*padding: 3px 10px;*/
  /*font-size: 1.1rem;*/
  padding-left: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
nav .extra-utils .search .search-wrapper .search-icon {
  font-size: 1.2rem;
  border: 0;
  outline: 0;
  background-color: transparent;
}
nav .extra-utils .cart a,
nav .extra-utils .offcanvas-btn a {
  color: #333;
  transition: 0.4s;
}
nav .extra-utils .cart a:hover,
nav .extra-utils .offcanvas-btn a:hover {
  color: var(--main-color);
}
nav .extra-utils .cart .counter {
  top: -5px;
}

nav.top-navbar .languages-dropdown .nice-select {
  /*border: 0;*/
  border-color:#555555;
  display:inline-block;
}

/*nav.top-navbar .languages-dropdown .nice-select .current{*/
/*position: relative;*/
/*padding-left: 30px;*/
/*}*/

/*nav.top-navbar .languages-dropdown .nice-select .current::before {*/
/*  background-image: url(../images/icons/flags/egypt.png);*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 20px;*/
/*  height: 15px;*/
/*  background-size: contain;*/
/*  background-repeat: no-repeat;*/
/*  border-radius: 3px;*/
/*  left: 5px;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*}*/

nav.top-navbar .languages-dropdown .nice-select .list {
  margin: 0;
}
/*nav.top-navbar .languages-dropdown .nice-select .list .option {*/
/*  padding-left: 30px;*/
/*  padding-right: 15px;*/
/*  position: relative;*/
/*}*/
/*nav.top-navbar .languages-dropdown .nice-select .list .option[data-value]::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 20px;*/
/*  height: 15px;*/
/*  background-size: contain;*/
/*  background-repeat: no-repeat;*/
/*  border-radius: 3px;*/
/*  left: 5px;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*}*/
/*nav.top-navbar .languages-dropdown .nice-select .list .option[data-value=ar]::before {*/
/*  background-image: url(../images/icons/flags/egypt.png);*/
/*}*/
/*nav.top-navbar .languages-dropdown .nice-select .list .option[data-value=en]::before {*/
/*  background-image: url(../images/icons/flags/usa.png);*/
/*}*/
nav.top-navbar .brand img {
  width: 200px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
  mix-blend-mode: multiply;
}

nav.navbar {
  transition: 0.4s;
}
nav.navbar .nav-item {
  margin: 0 10px;
}
nav.navbar .nav-item .nav-link {
  font-size: 1.2rem;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  transition: 0.4s;
  color: var(--menu-font-color);
}
nav.navbar .nav-item .nav-link:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: rgba(var(--main-color-rgb), 0.1);
  height: 100%;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
nav.navbar .nav-item .nav-link:hover::before, nav.navbar .nav-item .nav-link:focus::before, nav.navbar .nav-item .nav-link.active::before {
  left: 0;
  right: 0;
}
nav.navbar .nav-item .nav-link.active, nav.navbar .nav-item .nav-link:hover {
  color: var(--main-color) !important;
}
nav.navbar .dropdown .dropdown-toggle::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  border-top: 0;
  border-left: 0;
  margin-left: 5px;
  margin-right: 5px;
}
nav.navbar .dropdown .dropdown-item.active,
nav.navbar .dropdown .dropdown-item:active {
  background-color: rgba(var(--main-color-rgb), 0.7);
}
nav.navbar .dropdown:hover .dropdown-menu {
  display: block;
}
nav.navbar .navbar-brand,
nav.navbar .extra-utils-wrapper {
  display: none;
}
nav.navbar .navbar-brand img,
nav.navbar .extra-utils-wrapper img {
  width: 100px;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}
nav.navbar.scrolled {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
  z-index: 1020;
}
nav.navbar.scrolled .navbar-brand,
nav.navbar.scrolled .extra-utils-wrapper {
  display: block;
}

.offcanvas-navbar .btn-close {
  box-shadow: none;
}
.offcanvas-navbar .list-group .list-group-item.list-group-item-action:hover {
  background-color: transparent;
  color: var(--main-color);
}
@media (min-width:990){
   .nav-link{
    font-size: 13px !important;
}
}