@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "georgia";
  src: url(../fonts/georgia.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}


/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 60px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 71px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  font-family: "georgia";
}

h2 {
  font-size: 60px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  font-family: "georgia";
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  font-family: "georgia";
}

h4 {
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  font-family: "georgia";
}

h5 {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  font-family: "georgia";
}

h6 {
  font-size: 16px;
  font-family: "Montserrat", serif;
  color: #000;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
  font-family: "Montserrat", serif;
  opacity: 0.7;
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.green {
  color: #20372c;
}

.montserrat {
  font-family: "Montserrat", serif;
}

.georgia {
  font-family: "georgia", serif;
}

.georgiabold {
  font-family: "georgia", serif;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #223a2f;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  display: block;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #223a2f;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #223a2f !important;
}

/* Buttons Css Start*/
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 5px 5px 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease-in-out;
  border: 1px solid;
  border-radius: 5px;
  color: #223a2f;
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
}

.theme-btn span {
  background-image: url("../images/contact-btn-img.png");
  width: 60px;
  height: 40px;
  background-position: center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn span i {
  width: 14px;
  background: #223a2f;
  height: 14px;
  font-size: 16px;
  clip-path: polygon(40% 50%, 25% 10%, 100% 50%, 25% 90%);
}

.theme-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  transition: 0.5s ease-in-out;
}

.portfolio-more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0;
  width: 180px;
  height: 45px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  overflow: hidden;
}

.portfolio-more-btn span.btn-text {
  padding: 0 20px;
}

.portfolio-more-btn span.btn-arrow {
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.portfolio-more-btn span.btn-arrow i {
  font-size: 12px;
  color: #fff;
}

.portfolio-more-btn:hover {
  background: #fff;
  color: #20372c;
}

.portfolio-more-btn:hover span.btn-arrow {
  border-left-color: #20372c;
}

.portfolio-more-btn:hover span.btn-arrow i {
  color: #20372c;
}

.theme-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  transition: 0.5s ease-in-out;
}

.theme-btn:hover::before {
  transition: 0.5s ease-in-out;
}

.theme-btn:hover::after {
  transition: 0.5s ease-in-out;
}

.theme-btn:hover {
  transition: 0.5s ease-in-out;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 0;
  display: block;
  width: 100%;
}

section.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

ul.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid;
  color: #223a2f;
  transition: 0.3s ease-in-out;
}

.hdr-box {
  background: #fff;
  padding: 5px 10px;
}


/* Header end*/

/* Banner */
.banner_sec {
  position: relative;
  z-index: 1;
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 999;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

.banner-slider .slick-slide {
  margin: 0 !important;
  height: 100%;
}

.banner-image {
  position: relative;
  z-index: 1;
  height: 100%;
}

.banner-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: '';
  background: linear-gradient(67deg, rgba(22, 40, 32, 1) 0%, rgb(22 40 32 / 98%) 23%, rgb(22 40 32 / 53%) 71%, rgb(22 40 32 / 0%) 100%);
}

.banner-slider-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.banner_text h1 span {
  display: block;
  font-size: 51px;
}

.banner-image img {
  height: 100%;
}

.banner-slider {
  height: 100%;
}

.style1 {
  color: #fff;
}

.banner-nav-box {
  position: absolute;
  bottom: 41px;
  left: 0;
  width: 100%;
  z-index: 999;
}


.banner-slide-number {
  display: flex;
  align-items: center;
}

.banner-slide-number span {
  font-size: 25px;
  color: #fff;
}

.banner-slide-number * {
  margin: 0;
  white-space: nowrap;
}

.banner-nav-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.banner-nav-btns button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff66;
  border-radius: 50%;
  border: none;
}

.banner-nav-btns button i {
  color: #fff;
}

.banner-navs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


.banner-slide-number h3 {
  font-size: 50px;
}

.banner-slide-number h4 {
  font-size: 27px;
}

span.line {
  width: 100%;
  height: 1px;
  background: #ffffff42;
}

/* Banner end*/

/* section start */
.about-box {
  background: #20372c;
}

.about_text {
  padding: 50px 0;
}

.about_text p {
  color: #fff;
}

.about_image img {
  height: 550px;
}

/* section end */

/* section start */
.service-card-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 10px 0;
}

.service-card-text * {
  margin: 0;
}


img.service-icon {
  width: 70px;
  height: 70px;
  object-fit: scale-down;
  filter: brightness(0) saturate(100%) invert(15%) sepia(7%) saturate(2842%) hue-rotate(99deg) brightness(94%) contrast(86%);
}

.slick-slide {
  opacity: 1 !important;
}


.service-card-image img {
  width: 100%;
  height: 300px;
}

.service-card {
  margin: 30px 0;
  padding: 15px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
}


.image-slider ul.slick-dots {
  bottom: 10px;
}

.service-image-slider.image-slider .slick-dots li button:before {
  opacity: 1 !important;
  color: #fff !important;
}

.service-image-slider.image-slider .slick-dots li.slick-active button {
  border: 1px solid #fff !important;
  border-radius: 50%;
}

.service-image-slider.image-slider .slick-slide {
  margin: 0;
}

.service-card:hover {
  background: #20372c;
  transition: 0.3s ease-in-out;
}

.service-card:hover .service-card-text * {
  color: #fff;
  transition: 0.3s ease-in-out;
}

.service-card:hover img.service-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(311%) hue-rotate(302deg) brightness(115%) contrast(100%);
}


.service-slider .slick-dots li button:before {
  opacity: 1 !important;
  color: #20372c !important;
}

.service-slider .slick-dots li.slick-active button {
  border: 1px solid #20372c !important;
  border-radius: 50%;
}

.banner-nav-btns button img {
  width: 50%;
}

img.left-arrow {
  transform: rotate(180deg);
}

/* section end */

/* Member Section start */
.member-sec .heading {
  margin-bottom: 20px;
}

.member-image img {
  width: 100%;
  height: 200px;
  object-fit: scale-down;
}

.member-slider .slick-slide {
  margin: 0 10px;
}

.member-nav {
  margin-top: 30px;
}

.member-nav .banner-navs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.member-nav .banner-nav-btns button,
.member-nav button.member-prev-slide,
.member-nav button.member-next-slide {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #20372c;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.member-nav .banner-nav-btns button:hover,
.member-nav button.member-prev-slide:hover,
.member-nav button.member-next-slide:hover {
  background: #162820;
}

.member-nav .banner-nav-btns button img,
.member-nav button img {
  width: 50%;
  filter: brightness(0) invert(1);
}

ul.member-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.member-dots li.member-dot {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  padding: 5px;
  position: relative;
  z-index: 1;
}

ul.member-dots li.member-dot.active {
  background: #20372c;
  transform: scale(1.3);
}

ul.member-dots li.member-dot:hover {
  background: #20372c;
}

.member-nav span.line {
  width: 30%;
  height: 1px;
  background: #00000025;
}

/* Portfolio Nav */
.portfolio-nav {
  margin-top: 30px;
}

.portfolio-nav .banner-nav-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.portfolio-nav .banner-nav-btns button,
.portfolio-nav button.portfolio-prev-slide,
.portfolio-nav button.portfolio-next-slide {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #20372c;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.portfolio-nav .banner-nav-btns button:hover,
.portfolio-nav button.portfolio-prev-slide:hover,
.portfolio-nav button.portfolio-next-slide:hover {
  background: #162820;
}

.portfolio-nav .banner-nav-btns button img,
.portfolio-nav button img {
  width: 50%;
  filter: brightness(0) invert(1);
}

ul.portfolio-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.portfolio-dots li.portfolio-dot {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  padding: 5px;
  position: relative;
  z-index: 1;
}

ul.portfolio-dots li.portfolio-dot.active {
  background: #20372c;
  transform: scale(1.3);
}

ul.portfolio-dots li.portfolio-dot:hover {
  background: #20372c;
}

.portfolio-nav span.line {
  width: 30%;
  height: 1px;
  background: #00000025;
}

.value-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.value-box {
  position: relative;
  z-index: 1;
}

.value-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.value-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-head-text a {
  display: block;
}

.value-image img {
  height: 100%;
}

.value-content * {
  margin: 0;
  color: #ffff;
}

.value-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: '';
  background: #20372ce6;
}


.value-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.value-head-text {
  text-align: left;
}

.value-head-text span {
  font-size: 12px;
}

.value-counter {
  display: flex;
}

.value-counter-box {
  padding: 20px 30px;
  position: relative;
  z-index: 1;
}

.value-counter-box::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50px;
  background: #ffffff63;
  transform: translateY(-50%);
  content: '';
}

.value-counter-box:last-child::before {
  display: none;
}

/* Member Section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* ========== Portfolio Slider Section Start ========== */

.portfolio-main-box {
  padding: 60px 0;
  overflow: hidden;
  /* Prevent horizontal scroll on body */
}

.portfoilio-slider {
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfoilio-slider.slick-initialized {
  opacity: 1;
}


.portfoilio-slider .portfolio-slide-collapsed {
  display: flex;
  flex-direction: row;
}

.portfolio-slide {
  background: #20372c;
  height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  width: 100%;
}

/* --- Collapsed State --- */
.portfolio-slide-collapsed {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 40px 10px;
  background: linear-gradient(to bottom, rgba(32, 55, 44, 0.8), rgba(32, 55, 44, 0.9)), url('../images/service-1.jpg');
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
  gap: 20px;
}

.portfolio-slide-collapsed .portfolio-slide-number {
  width: 45px;
  height: 45px;
  background: #fff;
  color: #20372c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
  margin-top: auto;
}

.portfolio-slide-vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0;
}

/* --- Expanded State --- */
.portfolio-slide-expanded {
  display: none;
  width: 100%;
  height: 100%;
}

/* Visibility based on Slick Center */
.slick-slide.slick-current.slick-center .portfolio-slide-collapsed {
  display: none;
}

.slick-slide.slick-current.slick-center .portfolio-slide-expanded {
  /* display: flex; */
  /* flex-direction: row; */
}

.portfolio-slide-content {
  width: 55%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #20372c;
}

.portfolio-num-box {
  width: 45px;
  height: 45px;
  background: #fff;
  color: #20372c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.portfolio-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.portfolio-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.portfolio-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.portfolio-list li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.portfolio-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/check.png);
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 20px;
  background-repeat: no-repeat;
}

.portfolio-more-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.portfolio-more-btn:hover {
  background: #fff;
  color: #20372c;
}

.portfolio-slide-image {
  width: 45%;
  position: relative;
  padding: 20px;
}

.portfolio-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsiveness */
@media (max-width: 1199px) {
  .slick-slide.slick-current.slick-center .portfolio-item-wrapper {
    width: 600px;
  }
}

@media (max-width: 991px) {
  .portfolio-item-wrapper {
    width: 100% !important;
    padding: 0;
  }

  .portfolio-slide {
    height: auto;
    flex-direction: column;
  }

  .portfolio-slide-collapsed {
    display: none !important;
  }

  .portfolio-slide-expanded {
    display: flex !important;
    flex-direction: column;
  }

  .portfolio-slide-content {
    width: 100%;
    padding: 30px;
  }

  .portfolio-slide-image {
    width: 100%;
    height: 250px;
  }
}

/* ========== Portfolio Slider Section End ========== */

/* Home Page end*/



/* Testimonial Section Start */



.our-client-sec .head-effect::after {
  width: 50%;
}

.client-sli .slick-slide {
  opacity: 1;
  outline: none;
}

.client-sli .slick-prev,
.client-sli .slick-next {
  top: 9%;
}

.client-sli .slick-prev {
  left: -50px;
}

.client-box {
  margin: 0px 0;
}

.client-sli {
  position: relative;
  z-index: 1;
}

.client-sli::after {
  content: '';
  position: absolute;
  left: 0;
  top: 9%;
  border: 1px dashed #e7e7e7;
  width: 100%;
  z-index: -1;
}


.client-box h6 {
  color: #3c3c3c;
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  padding-left: 20px;
}

.client-box .quotess {
  margin-left: 20px;
  position: relative;
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #20372c1a;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
}

.client-box .quotess::after {
  content: '';
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #20372c;
  color: #fff;
  font-size: 30px;
}

.client-box .quotess::before {
  z-index: 2;
  color: #fff;
  font-size: 20px;
}

.client-ineer-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 5%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
  margin-left: 20px;
  margin-bottom: 20px;
  transform: rotate(180deg);
}

.client-ineer-box {
  z-index: 2;
  box-shadow: 0 0 4px 0 #0000004d;
  padding: 60px 30px;
  position: relative;
  background: #fff;
  margin: 0 0 20px 0;
}

.client-ineer-box ul {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px 0;
}

.client-ineer-box ul li h4 {
  color: #000;
  font-size: 22px;
  margin: 0;
  /* font-family: 'Montserrat'; */
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 300;
}

.client-ineer-box ul li h4 span {
  font-size: 14px;
  display: block;
  color: #000;
  text-transform: capitalize !important;
  margin-top: 0px;
  font-weight: 300;
  /* font-family: 'Montserrat'; */
}

.client-ineer-box ul li i {
  color: #ffb503;
  margin-right: 5px;
}

section.our-client-sec.themes-padd {
  padding: 80px 0;
  position: relative;
}

section.our-client-sec.themes-padd .slick-track {
  margin-bottom: 30px;
}

h2.themes-h2.head-effect {
  font-size: 62px;
  color: #000;
  margin: 0 0 5px;
}

.client-sli .slick-next:hover:before,
.client-sli .slick-prev:hover:before {
  background: #a2a279;
}

.client-sli .slick-next {
  right: -20px;
}

.client-ineer-box p {
  font-size: 14px;
  color: #7c7c7cc2;
  margin: 0;
  width: 92%;
}

section.our-client-sec img.testi-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 600px;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box {
  background-color: #20372c;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box ul li h4 {
  color: #fff;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box p {
  color: #fff;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box ul li h4 span {
  color: #fff;
}

.client-sli .slick-slide.slick-current.slick-active.slick-center .client-ineer-box::before {
  border-top-color: #20372c;
}


.text_center.heading.topbar p {
  width: 80%;
  margin: 0 auto;
}


.blog-image img {
  height: 300px;
}

.blog-box {
  margin: 30px 0;
}


.blog-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 20px 20px;
  background: #fff;
  box-shadow: 0 0 20px 0 #0000003b;

}

.blog-text ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-text ul li {
  color: #223a2f;
}

.blog-slider .slick-dots li button:before {
  opacity: 1 !important;
  color: #20372c !important;
}

.blog-slider .slick-dots li.slick-active button {
  border: 1px solid #20372c !important;
  border-radius: 50%;
}

/* Testimonial Section End */

/* footer start */
.footer-links.footer-links-contact li {
  margin: 20px 0;
  gap: 20px;
  display: flex;
  align-items: center;
}

.footer-links.footer-links-contact li a {
  color: #c1c1c3;
  font-family: 'Montserrat';
}


.footer-links.footer-links-contact li i {
  color: white;
}

footer {
  background: #20372c;
  padding-top: 5%;
}


.bar {
  display: block;
  margin: 0px 0 20px 0;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Rajdhani", serif;
  color: #ffffff;
  padding: 0 0 20px 0;
  position: relative;
}

.bar::before {
  position: absolute;
  width: 30px;
  height: 1px;
  content: '';
  background-color: #fff;
  bottom: 0;
  left: 0;
}

.ftr_logo p {
  margin: 0 0 30px 0px;
  color: #fff;
  opacity: 1;
  width: 90%;
}

.ftr_logo h5 {
  color: #fff;
}

ul.footer_social {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.footer_social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid#fff;
  opacity: 0.7;
}

ul.footer_social li a i {
  color: #fff;
}

ul.services a {
  font-size: 13px;
  margin: 0 0 10px 0;
}

ul.services {
  column-count: 2;
}

.ftr_box a {
  font-size: 14px;
  font-family: 'Montserrat';
  color: #fff;
  display: block;
  width: fit-content;
  margin: 15px 0;
  text-transform: uppercase;
}

.footer-links.footer-links-contact ul li img {
  object-fit: scale-down;
  width: auto;
}

.copy_right p {
  margin: 50px 0 0 0;
  padding: 20px 0;
  text-align: center;
  background: #162920;
  color: #ffff;
}

.banner_main_box::before {
  position: absolute;
  width: 37%;
  height: 220px;
  right: -20%;
  bottom: 0;
  content: '';
  background: #d12128;
}

ul.our-happy-box-ul img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 1px 1px 7px 4px #00000029;
}

ul.members-list li {
  width: 31%;
}

ul.members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}




/* footer end */


/* contact-sec */


.contact-sec .row {
  z-index: 1;
  position: relative;
}


.contact-img {
  width: 114%;
  height: 630px;
  max-width: 100vw;
  min-height: 90%;
  overflow: hidden;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-text {
  height: 100%;
  display: flex;
  text-align: end;
  padding-top: 50px;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 999;
}

.contact-text p {
  opacity: 0.8;
  max-width: 450px;
  color: var(--white);
  margin: 10px 0px 20px;
}

.contact-text h2 {
  color: var(--white);
}

.contact-text form {
  z-index: 1;
  padding: 50px 55px;
  position: relative;
  width: 100%;
}

.contact-text form::after {
  left: 0;
  top: -40px;
  content: '';
  width: 66px;
  height: 40px;
  position: absolute;
  background-color: var(--themeColor2);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.contact-text form::before {
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #20372c;
}

.contact-text form input {
  width: 100%;
  height: 60px;
  font-size: 14px;
  padding: 10px 25px 10px 53px;
  color: #ffff;
  font-family: 'Montserrat';
  border: 1px solid #ffffff33;
  margin: 0;
  background: transparent;
}

.contact-pag-form form {
  position: relative;
}

.contact-pag-form .form-group {
  position: relative;
  margin: 0 0 20px;
}

.contact-pag-form .form-group::after {
  content: '';
  height: 53px;
  width: 10px;
  position: absolute;
  left: 40px;
  top: 60%;
  background-size: 7px 80%;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.contact-pag-form form input.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 55px;
  border: 1px solid #c6c6c6;
  line-height: 0;
  box-shadow: none;
  color: black;
  font-weight: 400;
  background-color: transparent;
  margin-top: 20px;
  font-family: 'Montserrat';
  display: flex;
  border-radius: 0;
}

.contact-text form input::placeholder {
  color: #ffffffb0 !important;
  font-size: 12px;
  font-family: "montserrat";
  text-transform: uppercase;
}

.contact-pag-form .form-group i {
  position: absolute;
  top: 50%;
  left: 13px;
  font-size: 15px;
  color: #fff;
  transform: translateY(-50%);
}

.contact-text form textarea::placeholder {
  color: #ffffffb0 !important;
  font-size: 12px;
  font-family: "montserrat";
  text-transform: uppercase;
}

.contact-pag-form select {
  height: 60px;
  font-size: 15px;
  padding-left: 55px;
  line-height: 0;
  box-shadow: none;
  color: #fff;
  font-weight: 400;
  background-color: transparent;
  margin-top: 20px;
  font-family: 'Montserrat';
  display: flex;
  border-radius: 4px;
  background-color: transparent;
  width: 100%;
}

.contact-pag-form select option {
  color: #000;
}

.form-control:disabled,
.form-control:read-only {
  background: transparent;
}

.contact-pag-form .detailss::after {
  display: none;
}


.contact-pag-form .detailss.form-group i {
  top: 10%;
  transform: unset;
}

/* contact-sec */

/* Home Page End  */

/* InnerPage Aboutus start */
.inner-banner {
  height: 650px;
}

.portfolio-item-wrapper.slick-slide {
  width: 150px;
}

.portfolio-item-wrapper.slick-slide.slick-current.slick-center {
  width: 900px;
}

.portfolio-item-wrapper.slick-slide.slick-current.slick-center .portfolio-slide-expanded {
  display: flex;
}

.abt-para {
  margin-top: 20px;
}

.about-slider .slick-dots li button:before {
  opacity: 1 !important;
  color: #fff !important;
}

.about-slider .slick-dots li.slick-active button {
  border: 1px solid #fff !important;
  border-radius: 50%;
}

.about-slider .slick-slide {
  margin: 0;
}

.about-slider ul.slick-dots {
  bottom: -35px;
}


.client-ineer-box:hover {
  background-color: #20372c;
}

.client-ineer-box:hover::before {
  border-top-color: #20372c;
}

.client-ineer-box:hover h4 {
  color: #fff;
}

.client-ineer-box:hover p {
  color: #fff;
}

.client-ineer-box:hover span {
  color: #fff;
}

/* InnerPage Aboutus end */


/* Contact Start  */

section.contact-page {
  position: relative;
  padding: 100px 40px;
  background: #f3f9fe;
}

section.contact-page .wraper {
  width: 90%;
  margin: 0px auto;
  position: relative;
}

section.contact-page .ctc-contentWraper {
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 30px 40px;
  width: 90%;
  margin: 0px auto;
  background: #fff;
}

section.contact-page .ctc-contentWraper .content {
  position: relative;
}

section.contact-page .content h6 {
  font-family: "brunson";
  text-transform: uppercase;
  font-size: 13px;
  color: #000000;
  margin-top: 20px;
  font-weight: 400;
}

section.contact-page .content h2 {
  font-size: 42px;
  color: #000;
  padding: 0px 0 12px;
  font-weight: 400;
}

section.contact-page .content p {
  width: 68%;
  color: #9d9d9d;
  opacity: 1;
}

section.contact-page .content .tel {
  position: relative;
  margin: 40px 0 10px;
}

section.contact-page .content .tel a {
  font-size: 30px;
  line-height: 40px;
  color: #000;
  font-weight: 400;
  font-family: 'brunson';
}

section.contact-page form {
  position: relative;
}

section.contact-page form .formField {
  position: relative;
  margin-bottom: 10px;
}

section.contact-page form .formField input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #dadada;
  height: 52px;
  padding: 0px 29px;
  color: #000;
  font-family: "Poppins";
}

section.contact-page form .formField input::placeholder {
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

section.contact-page form textarea#message {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #dadada;
  padding: 15px 29px 31px;
  color: #000;
  font-family: "Poppins";
  height: 110px;
  resize: unset;
}

section.contact-page form textarea#message::placeholder {
  position: absolute;
  bottom: 16px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

section.contact-page form .meessage {
  position: relative;
}

section.contact-page form .siteBtn {
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 34px;
  background: #ffff;
}

section.contact-page .smtpsConnection {
  margin: 50px 0 0px;
}

section.contact-page .smtpsConnection .iconsBox {
  padding: 50px 0px 10px;
  position: relative;
  display: flex;
  gap: 20px;
}

section.contact-page .smtpsConnection .iconsBox p span {
  display: block;
}

section.contact-page .smtpsConnection .iconsBox p {
  color: #9d9d9d;
  opacity: 1;
}

section.contact-page .smtpsConnection .col3 .iconsBox {
  justify-content: flex-end;
}

section.contact-page .smtpsConnection .col2 .iconsBox {
  justify-content: center;
  padding-right: 40px;
}

section.contact-page .smtpsConnection .col2 .iconsBox:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: 1px;
  top: 0;
  background: #000;
  opacity: 20%;
}

section.contact-page .smtpsConnection .col2 .iconsBox:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 7px;
  top: 0;
  background: #000;
  opacity: 20%;
}

section.contact-page .contacMap {
  margin-top: -190px;
}

.cont-whatts {
  display: flex;
  align-items: center;
}

.cont-whatts img {
  margin-right: 10px;
  width: 5%;
  object-fit: contain;
}

.cont-whatts a {
  font-size: 30px;
  line-height: 40px;
  color: #000;
  font-family: 'brunson';
  font-weight: 400;
}

.hdr_btn a.theme-btn:hover {
  color: #000;
}

/* Contact End */
/* InnerPage Aboutus start */

.service-det-card .service-card-image img {
  height: 600px;
}


.service-det-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-det-title h3 {
  font-size: 35px;
  opacity: 0.7;
}

.service-card.service-det-card:hover {
  background: transparent;
}

.service-det-card:hover .service-card-text * {
  color: inherit;
}


.service-det-card:hover img.service-icon {
  filter: brightness(0) saturate(100%) invert(15%) sepia(7%) saturate(2842%) hue-rotate(99deg) brightness(94%) contrast(86%);
}

.service-det-card h3 {
  font-size: 35px;
  opacity: 0.7;
  color: #000 !important;
}


.portfolio-inner-box .portfolio-slide-content {
  background: transparent;
  position: relative;
  z-index: 1;
  width: 50%;
}

.portfolio-inner-box .portfolio-slide-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  background-image: url(../images/project-bg.jpg);
  background-position: center;
  background-size: cover;
  content: '';
  z-index: -1;
}

.portfolio-inner-box {
  display: flex;
  align-items: start;
  margin: 70px 0;
}


.portfolio-inner-box .portfolio-slide-image {
  padding: 0;
  width: 50%;
  position: relative;
  z-index: 2;
}

.port-inner-slider .slick-dots li button:before {
  opacity: 1 !important;
  color: #20372c !important;
}

.port-inner-slider .slick-dots li.slick-active button {
  border: 1px solid #20372c !important;
  border-radius: 50%;
}

.portfolio-inner-box.reverse {
  flex-direction: row-reverse;
}

.portfolio-inner-box.reverse .portfolio-slide-content::before {
  left: unset;
  right: 0;
}


.portfolio-inner-box .portfolio-slide-image img {
  height: 450px;
}

ul.social li a:hover {
  transition: 0.3s ease-in-out;
  background: #223a2f;
  color: #fff;
}

ul.footer_social li a:hover {
  transition: 0.3s ease-in-out;
  background: #fff;
  color: #223a2f !important;
  opacity: 1;
}

ul.footer_social li a:hover i {
  color: #223a2f !important;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

.portfolio-inner-box.reverse .portfolio-slide-content {
  align-items: end;
  text-align: right;
}

.portfolio-inner-box.reverse ul.portfolio-list li {
  padding-right: 20px;
}

.portfolio-inner-box.reverse ul.portfolio-list li::before {
  left: unset;
  right: 0;
}

.texted a {
  color: #000;
  opacity: 0.8;
  display: block;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
/* InnerPage Aboutus end */