
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/satoshi");

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {

  --blue: #0B1C2D;
  --black: #000;
  --white: #fff;
  --theme: #C50005;
  --header: #C50005;
  --text: #000;
  --border: #EEEFF4;
  --bg: #f3f5ff;
  --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

p{
  text-transform: capitalize;
  text-align: justify;
}

.theme-btn {
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 23px 54px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn.border-style {
  background-color: transparent;
  color: var(--header);
  border: 1px solid var(--border);
}
.theme-btn.border-style::before, .theme-btn.border-style::after {
  background-color: var(--theme);
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn.bg-white {
  background-color: var(--white);
  color: var(--header);
}
.theme-btn.bg-white:hover {
  color: var(--white);
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.link-btn {
  text-transform: capitalize;
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
}
.link-btn span {
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.link-btn i {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 25px;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
}
.link-btn:hover span {
  color: var(--theme);
  background-size: 100% 1px;
}
.link-btn.link-btn-2 span {
  background-image: linear-gradient(var(--theme), var(--theme));
}
.link-btn.link-btn-2 i {
  background-color: var(--theme);
}
.link-btn.link-btn-2:hover span {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: initial;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 115%;
}

h2 {
  font-size: 50px;
  line-height: 110%;
  font-weight: 700;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 38px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
  background: url(../img/logo/logo-kkg.png);
  background-repeat: no-repeat;
  background-size: cover;

}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Outfit", sans-serif, "Satoshi", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title .sub-title {
  padding: 8px 30px;
  border-radius: 30px;
  display: inline-block;
  background: linear-gradient(90deg, rgba(73, 81, 254, 0.112) 24%, rgba(73, 81, 254, 0.112) 38%, rgba(148, 69, 211, 0.112) 62%, rgba(223, 57, 167, 0.112) 100%);
  margin-bottom: 20px;
}
.section-title .sub-title span {
  /* background: var(--color-gradient-1); */
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  /* background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-size: 14px;
  color: var(--theme);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 0;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .section-title-area {
    gap: 20px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    /* -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); */

    transform: scale(1);
  }
}
@keyframes spinner {
  to {
    /* -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); */
    transform: scale(0.6);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}




/* top header section */

.header-top-section {
  /* background: linear-gradient(90.07deg, #FF4E8D 32.43%, #AE34E8 58.79%, #3E8DFF 105.32%); */
  /* background: linear-gradient(90.07deg, #244D9A 32.43%, #F27535 58.79%, #ED3237 105.32%); */
  background: var(--theme);
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 10px 250px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 10px 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
}
.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-top-wrapper .contact-list li {
  color: var(--white);
  font-weight: 400;
}
.header-top-wrapper .contact-list li a {
  color: var(--white);
}
.header-top-wrapper .contact-list li i {
  color: var(--white);
  margin-right: 10px;
}
.header-top-wrapper p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 10px 0;
}
.header-top-wrapper .header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper .header-top-right .social-icon {
  gap: 20px;
}
.header-top-wrapper .header-top-right .social-icon a {
  color: var(--white);
}
.header-top-wrapper .header-top-right .nice-items {
  margin-right: 15px;
}
.header-top-wrapper .header-top-right .nice-items .nice-select {
  padding: 10px 7px 10px 20px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}
.header-top-wrapper .header-top-right .nice-items .nice-select span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.header-top-wrapper .header-top-right .nice-items .nice-select::after {
  right: -10px;
  top: 24px;
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
}
.header-top-wrapper .header-top-right .nice-items .nice-select .list {
  background-color: var(--bg);
  border-radius: 0;
  right: initial;
  font-size: 14px;
  margin-top: 0;
}
.header-top-wrapper .header-top-right .nice-items .nice-select .list li {
  font-weight: 500;
}
.header-top-wrapper .header-top-right .nice-items .nice-select .option {
  border: none;
}

.header-section-2 {
  position: relative;
  z-index: 9999;
  background-color: var(--white);
}
.header-section-2 .container-fluid {
  padding: 0 150px;
}
@media (max-width: 1899px) {
  .header-section-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1600px) {
  .header-section-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-section-2 .container-fluid {
    padding: 0 20px;
  }
}

.header-section-1 {
  background-color: var(--white);
  position: relative;
  z-index: 9999;
}

.header-section {
  position: relative;
  z-index: 9999;
  background-color: var(--white);
}

.header-1 .container-fluid {
  padding: 0 250px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
.header-1 .header-right {
  gap: 30px;
}
@media (max-width: 575px) {
  .header-1 .header-right {
    gap: 18px;
  }
}
.header-1 .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}
.header-1 .header-right .user-icon {
  color: var(--header);
  font-size: 18px;
}
.header-1 .header-right .menu-cart {
  position: relative;
}
.header-1 .header-right .menu-cart .cart-icon {
  position: relative;
  display: inline-block;
  border-radius: 50%;
}
.header-1 .header-right .menu-cart .cart-icon::before {
  position: absolute;
  top: -7px;
  right: -12px;
  content: "3";
  width: 18px;
  line-height: 18px;
  height: 18px;
  border-radius: 18px;
  background-color: var(--theme);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}
.header-1 .header-right .menu-cart .cart-icon i {
  color: var(--header);
  font-size: 18px;
}
.header-1 .header-right .menu-cart:hover .cart-box {
  transform: rotateX(0deg);
  visibility: visible;
}
.header-1.style-3 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-1.style-3 .header-main .main-menu ul li .submenu {
  color: var(--header);
  /* overflow-y: scroll; */
  /* height: 400px; */
}
.header-1 .header-main .main-menu ul li .submenu {
  color: var(--black);
  /* overflow-y: scroll; */
  /* height: 400px; */
  width: 285px;
}
.header-1.style-3 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-1.style-3 .header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}
.header-1.style-3 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-1.style-3 .header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-1.style-3 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-1.style-3 .header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-1.style-3 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-1.style-3 .header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-1.style-3 .header-logo {
  display: none;
}
.header-1.style-3 .header-right .search-icon {
  color: var(--white);
}
.header-1.style-3 .header-right .user-icon {
  color: var(--white);
}
.header-1.style-3 .header-right .menu-cart .cart-icon i {
  color: var(--white);
}
.header-1.style-3 .sidebar__toggle {
  color: var(--white);
}

.middle-section {
  position: relative;
  z-index: 9;
  border-bottom: 1px solid #d9dadc;
  background-color: var(--white);
}
.middle-section .container-fluid {
  padding: 0 250px;
}
@media (max-width: 1600px) {
  .middle-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .middle-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .middle-section {
    display: none;
  }
}





.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media (max-width: 991px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .header-main {
    padding: 15px 0px;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 40px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  /* color: var(--header); */
  color: var(--black);
  padding: 35px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-home-menu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-home-menu .home-menu {
  position: relative;
}

.header-main .main-menu ul li .has-home-menu .home-menu .home-menu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.sidebar__toggle {
  cursor: pointer;
}


.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1.style-3 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1.style-3 .header-main .sidebar__toggle {
  color: var(--header);
}
.sticky.header-1.style-3 .header-logo-2 {
  display: none;
}
.sticky.header-1.style-3 .header-logo {
  display: block;
}
.sticky.header-1.style-3 .header-right .search-icon {
  color: var(--header);
}
.sticky.header-1.style-3 .header-right .user-icon {
  color: var(--header);
}
.sticky.header-1.style-3 .header-right .menu-cart .cart-icon i {
  color: var(--header);
}



.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  /* width: 45px; */
  width: 20%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme) !important;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 50px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  /* text-transform: capitalize; */
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}


.hero-3 {
  position: relative;
  padding: 190px 0 110px;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero-3 {
    padding-top: 150px;
  }
}
.hero-3 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero-3 .hero-content {
  opacity: 0;
  z-index: 3;
  position: relative;
  transform: translateY(-150px);
}
@media (max-width: 767px) {
  .hero-3 .hero-content {
    text-align: center;
  }
}
.hero-3 .hero-content h6 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.hero-3 .hero-content h1 {
  color: var(--white);
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 38px;
  }
}
.hero-3 .hero-content p {
  color: var(--white);
  font-weight: 500;
}
.hero-3 .hero-button {
  margin-top: 40px;
  transform: translateY(150px);
  opacity: 0;
}
@media (max-width: 767px) {
  .hero-3 .hero-button {
    text-align: center;
  }
}
.hero-3 .hero-button .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.hero-3 .hero-button .theme-btn:hover {
  color: var(--white);
}
.hero-3 .hero-image {
  position: relative;
  z-index: 3;
  transform: translateY(150px);
  opacity: 0;
  height: 605px;
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(5px 5px 10px rgba(255, 255, 255, 0.5))
}
@media (max-width: 767px) {
  .hero-3 .hero-image {
    height: initial;
  }
}

.hero-section-3 {
  position: relative;
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0px);
  transition: all 2500ms ease;
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-button, .hero-section-3 .swiper-slide.swiper-slide-active .hero-image {
  opacity: 1;
  transform: translateY(0px);
  transition: all 2500ms ease;
}

.fix {
  overflow: hidden;
}

.swiper-dot {
  text-align: center;
}
.swiper-dot .swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  transition: 0.6s;
  background-color: var(--header);
  opacity: 1;
  border-radius: 60px;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-gradient-1);
  transition: 0.6s;
  position: relative;
  width: 51px;
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  transition: 0.6s;
  background-color: var(--white);
  opacity: 1;
  border-radius: 50px;
  position: relative;
  border: 2px solid var(--white);
  display: inline-block;
  margin: 3px 0px !important;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  transition: 0.6s;
  position: relative;
}

@media (max-width: 991px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}


.head-color {
  color: var(--header);
}

.border-none {
  border-top: none !important;
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

@media(max-width:768px){
  .header-logo img{
    width: 210px;
  }
  .header-logo-2 img{
    width: 210px;
  }
}



/* Contact Section Headings */
.contact-header {
  max-width: 600px;
}


/* top button css start here */

.top {
  display: none;
  color: #fff;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
  background: var(--theme);
  width: 40px;
  height: 40px;
  border-radius: 100px;
}


/* top button css ends here */



.second-des{
  width: 100% !important;
}

.tab-content {
  color: #000;
  font-weight: 500;
}

.tab-content ul {
  list-style: inside;
  
}

.nav-tabs .nav-link.active {
  /* color: var(--bs-nav-tabs-link-active-color); */
  /* background-color: var(--bs-nav-tabs-link-active-bg); */
  background: var(--theme);
  color: #fff;
}

.nav-tabs .nav-link {
  color: #000;
 
}


/* sub dropdown */

.main-menu ul li {
  position: relative;
}

.main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  z-index: 999;
}

.main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

/* Second level submenu (right side open) */
.main-menu ul li .submenu li .submenu {
  top: 0;
  left: 100%;
}

/* Arrow spacing */
.main-menu ul li a i {
  float: right;
  margin-top: 5px;
}


.offcanvas__contact-text a{
    color: var(--black) !important;
}









/* ======================  Who-we Start  ======================*/
.who-we-are-section  .text--base-two{
  color: var(--white);
}
.who-we-are-section  .text--white{
  color: var(--white);
}
.who-we-are-section  .text--grey-two{
  color: var(--white);
}
.who-we-are-section {
position: relative;
overflow: hidden;
z-index: 1;
background-color: var(--blue);
/* background-color: #0F3225; */
}
.who-we-are-section .who-shape img {
position: absolute;
opacity: 0.4;
z-index: -1;
}
.who-we-are-section .who-shape .left-round {
top: 15%;
left: 5%;
}
.who-we-are-section .who-shape .right-round {
right: 5%;
top: 25%;
}
.who-we-are-section .who-shape .left-shape {
top: 30%;
left: -5%;
transform: rotate(-175deg);
}
.who-we-are-section .who-shape .right-shape {
top: 43%;
right: -5%;
}
.who-we-are-section__content {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
@media screen and (max-width: 991px) {
.who-we-are-section__content {
  grid-template-columns: repeat(2, 1fr);
}
}



.who-item {
  background: transparent;
  /* filter: blur(5px); */
  filter: drop-shadow(5px 5px 10px #666);
  /* background-color: var(--black); */
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  gap: 20px;
  transition: all 0.3s;
}
.who-item:hover {
  transform: translateY(-10px);
  background-color: var(--theme);
}
.who-item:hover .who-icon {
  background-color: hsl(var(--theme));
}
.who-item:hover .who-text h2 {
  color: var(--white);
}
.who-item:hover .who-text p {
  color: var(--white);
}
@media screen and (max-width: 575px) {
  .who-item {
    display: grid;
    text-align: center;
    padding: 20px 15px;
  }
}
@media screen and (max-width: 1199px) {
  .who-item {
    padding: 20px 15px;
    gap: 15px;
  }
}
.who-item .who-icon {
  /* background-color: var(--blue); */
  max-width: 86px;
  width: 86px;
  height: 86px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .who-item .who-icon {
    margin: 0 auto;
    width: 65px;
    height: 65px;
    padding: 10px;
  }
}
.who-item .who-text h2 {
  margin: -10px 0;
  font-weight: 600;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  .who-item .who-text h2 {
    font-size: 30px;
  }
}
.who-item .who-text p {
  font-size: 0.875rem;
  line-height: 1.4;
  padding-top: 10px;
  max-width: 120px;
  transition: all 0.3s;
  color: var(--white);
}
@media screen and (max-width: 575px) {
  .who-item .who-text p {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1199px) {
  .who-item .who-text p {
    font-size: 0.75rem;
  }
}








/* ======================  About Start  ======================*/
.about-section {
  position: relative;
}
.about-section .image-effect {
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 12px;
}
.about-section .image-effect:hover img {
  transform: scale(1.05);
}
.about-section .image-effect img {
  transition: all 0.3s;
}
.about-section .about-shape img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.about-section__image {
  display: grid;
  grid-template-columns: 52% 44%;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .about-section__image {
    grid-template-columns: 51% 43%;
  }
}
@media screen and (max-width: 575px) {
  .about-section__image {
    grid-template-columns: 51% 41%;
  }
}
.about-section__image img {
  border-radius: 12px;
  width: 100%;
}
.about-section__content .about-details-box {
  border: 1px solid hsl(var(--black)/0.4);
  border-radius: 12px;
  text-align: center;
  padding: 24px;
}
@media screen and (max-width: 1399px) {
  .about-section__content .about-details-box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .about-section__content .about-details-box {
    padding: 15px;
  }
  .about-section__content .about-details-box h2 {
    font-size: 22px;
  }
  .about-section__content .about-details-box p {
    font-size: 14px;
  }
}
.about-section__content .about-lists {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.about-section__content .about-lists li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.about-section__content .about-lists li:nth-child(even) i {
  color: hsl(var(--blue));
}
.about-section__content .about-lists li i {
  color: var(--blue);
}


/* ======================  About End  ======================*/









/* ======= Projects style ======= */
.projects .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.projects .item:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(70%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.projects .item:hover .con {
  bottom: 0;
}
.projects .item img {
  -webkit-transition: all .5s;
  transition: all .5s;
}
.projects .item .con {
  padding: 30px 15px;
  position: absolute;
  bottom: -58px;
  left: 0;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
  z-index: 20;
  height: auto;
  box-sizing: border-box;
  background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 2%, rgba(0, 0, 0, .75) 90%);
  background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
}
.projects .item .con h6{
  color: var(--theme);
}
.projects .item .con h6 a {
  position: relative;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  margin-top: 0px;
  margin-bottom: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.projects .item .con h5,
.projects .item .con h5 a {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.projects .item .con p {
  color: #fff;
  font-size: 20px;
}
.projects .item .con i {
  color: #fff;
  font-size: 20px;
}
.projects .item .con i:hover {
  color:var(--theme);
}
.projects .item .con .butn-w--white {
  margin-left: 0;
  border-radius: 30px;
  border-color: #999;
  padding: 11px 30px;
}
.projects .item .con .butn-w--white:hover {
  border-color: #b19777;
}
/* line animation */
.projects .item .line {
  text-align: center;
  height: 1px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  margin: 0 auto 30px;
}
.projects .item:hover .line {
  width: 100%;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}
/* prev/next project */
.projects-prev-next {
padding: 40px 0;
border: none;
border-top: 1px solid #323232;
  position: relative;
}
@media (max-width: 576px) {
.projects-prev-next {
  text-align: center;
}
  
.projects-prev-next-left {
      margin-bottom: 10px;
  }
}
.projects-prev-next a {
  display: inline-block;
  font-size: 16px;
  color: #999;
  line-height: 1em;
}
.projects-prev-next a i {
font-size: 20px;
}
.projects-prev-next a:hover {
  color: #b19777;
}
.projects-prev-next .projects-prev-next-left a i {
margin-right: 5px;
font-size: 12px;
}
.projects-prev-next .projects-prev-next-right a i {
font-size: 12px;
margin-left: 0;
margin-left: 5px;
}








/* ======================  Faq Start  ======================*/
.faq-img {
  border-radius: 10px;
  overflow: hidden;
}
.faq-img:hover img {
  transform: scale(1.1);
}
.faq-img img {
  transition: all 0.3s ease-in-out;
}





/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
  border: 1px solid var(--theme);
  background-color: var(--theme);
  border-radius: 5px;
  overflow: hidden;
}
.custom--accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.custom--accordion .accordion-header {
  line-height: 1;
  color: var(--white);
}
.custom--accordion .accordion-body {
  padding: 24px 20px;
  background-color: var(--blue);
}
.custom--accordion .accordion-body .text {
  max-width: 60%;
}
@media screen and (max-width: 575px) {
  .custom--accordion .accordion-body .text {
    max-width: 100%;
  }
}
.custom--accordion .accordion-body p {
  color: var(--white);
}
.custom--accordion:first-of-type .accordion-button.collapsed {
  border-radius: 5px;
}
.custom--accordion:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}
.custom--accordion .accordion-button {
  background-color: var(--theme);
  color: var(--white);
  font-size: 1.125rem;
  padding: 20px;
}
@media screen and (max-width: 575px) {
  .custom--accordion .accordion-button {
    padding: 15px;
    padding-right: 30px;
  }
}
.custom--accordion .accordion-button::after {
  background-image: none;
}
.custom--accordion .accordion-button:focus {
  box-shadow: none;
}
.custom--accordion .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--theme) !important;
  box-shadow: none;
}
.custom--accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: var(--white);
}
.custom--accordion .accordion-button[aria-expanded=true]::after, .custom--accordion .accordion-button[aria-expanded=false]::after {
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  content: "\f106";
  display: inline-block;
  position: absolute;
  right: 15px;
  height: unset;
  top: 50%;
  transform: translateY(-50%);
}
.custom--accordion .accordion-button[aria-expanded=false]::after {
  content: "\f107";
  color: var(--white);
}

/* ================================= Accordion Css End =========================== */

/* ======================  Faq End  ======================*/











/* ======================  Blog Start  ======================*/
.blog-item {
  border-radius: 10px;
  border: 2px solid var(--black);
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
.blog-item:hover {
  border-color: var(--header);
  background-color: var(--header);
}
.blog-item:hover .blog-img img {
  transform: scale(1.1);
}
.blog-item:hover .blog-text .text--base {
  color: var(--white) !important;
}
.blog-item:hover .blog-text a{
  color: var(--white);
}
.blog-item .blog-img {
  overflow: hidden;
  border-radius: 10px;
}
.blog-item .blog-img img {
  transition: all 0.3s ease-in-out;
}
.blog-item .blog-text .fs-16 {
  padding: 20px 0 10px;
}
.blog-item .blog-text p{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--black);
}
.blog-item:hover .blog-text p{
  color: var(--white);
}


.blog-section .blog-details .blog-text p{
  color: var(--black) !important;
  text-align: justify !important;

}
/* ======================  Blog End  ======================*/



















/*** Testimonial ***/
.testimonial-carousel .owl-item {
  position: relative;
}

.testimonial-carousel .owl-item::before {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .1;
}

.testimonial-carousel .owl-item img {
  position: relative;
  width: 100px !important;
  height: 100px;
  z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item span {
  letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-w--white {
  background: var(--theme) !important;
  
}

.testimonial-carousel .owl-item.center .bg-w--white * {
  color: var(--white) !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black);
  background: var(--theme);
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--white);
  background: var(--black);
}










/* Contact Section Headings */

  
.contact-header {
  max-width: 600px;
}

/* Contact Info Icons */

.contact-section{
  background: linear-gradient(#090909a8 , #000000b7), url(../img/banner/banner-05.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contact-info .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.contact-info .icon i{
  color: var(--theme);
}
      

.contact-info h3{
  font-size: 18px;
  color: var(--black);
}







/* ======================  Call-to-action Section End  ======================*/
.contact-section__info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.contact-section__item {
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  width: 100%;
}
.contact-section__item:nth-child(2) i {
  background-color: var(--theme);
}
.contact-section__item i {
  font-size: 24px;
  color: var(--white);
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.contact-section__item .text p {
  color: var(--white);
}
.contact-section__item .text p a {
  color: var(--white);
}
.map-section {
  margin-bottom: -10px;
}
.map-section iframe {
  width: 100%;
  height: 350px;
}
@media screen and (max-width: 575px) {
  .map-section iframe {
    height: 400px;
  }
}






    /* Top Info Bar */
    .footer-top-bar {
      background: #0b2c4d;
      padding: 20px 0;
  }
  
  .icon-circle {
      width: 50px;
      height: 50px;
      background: #C50005;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
  }
  
  /* Main Footer */
  .main-footer {
      background: #071e33;
      padding: 70px 0 20px;
      color: #cfd8e3;
      position: relative;
  }
  
  .footer-logo {
      color: #ffffff;
      font-weight: 700;
      margin-bottom: 15px;
  }
  
  .main-footer h5 {
      color: #ffffff;
      margin-bottom: 20px;
  }
  
  .main-footer ul {
      list-style: none;
      padding: 0;
  }
  
  .main-footer .footer-scroll {
      height: 400px;
      overflow-y: scroll;
  }
  
  .main-footer ul li {
      margin-bottom: 10px;
  }
  
  .main-footer ul li a {
      color: #cfd8e3;
      text-decoration: none;
  }
  
  .main-footer ul li a:hover {
      color: #C50005;
  }
  
  /* Social Icons */
  .social-icons a {
      display: inline-block;
      width: 38px;
      height: 38px;
      border: 1px solid #3a4f63;
      border-radius: 50%;
      text-align: center;
      line-height: 38px;
      color: #ffffff;
      margin-right: 8px;
      text-decoration: none;
  }
  
  .social-icons a:hover {
      background: #C50005;
      color: #000;
  }
  
  /* Right Man Image */
  .footer-man img {
      max-height: 300px;
  }
  
  /* Bottom Line */
  .footer-line {
      border-color: #1e3850;
      margin-top: 40px;
  }
  
  .copyright {
      margin-top: 15px;
      font-size: 14px;
      color: #9fb2c5;
  }






  .breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  z-index: 99;
  margin-top: -10px;
}
.breadcrumb-wrapper .page-heading h1 {
  font-size: 85px;
  position: relative;
  z-index: 9;
  line-height: 1;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 45px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* background-color: var(--theme); */
  /* color: #000 !important; */
  padding: 8px 30px;
  border-radius: 30px;
  margin-top: 30px;
  display: none;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  /* background: var(--color-gradient-1); */
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--black) !important;
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  font-size: 18px;
  color: var(--theme);
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}




/* fix solida icon */
.floating-social {
  position: fixed;
  right: 15px;
  bottom: 105px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.floating-social a:hover {
  transform: scale(1.1);
}

/* Colors */
.facebook { background: #1877f2; }
.instagram { background: #e1306c; }
.whatsapp { background: #25d366; }
.youtube { background: #ff0000; }
.linkedin { background: #0077b5; }
.call-icon { background: var(--blue);}





/** clients-section **/

.clients-section{
  position: relative;
  padding: 80px 0px;
  border-bottom: 1px solid #e2e2e2;
}

.clients-section .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clients-section .clients-logo{
  position: relative;
  display: block;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.clients-section .clients-logo img{
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.border-top{
  border-top: 1px solid #e2e2e2 !important;
}

.border-bottom{
  border-bottom: 1px solid #e2e2e2 !important;
}

