@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

:root {
  --wt: #fff;
  --bk: #000;
  --mbk: #6b7280;
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
  background-color: #f8f7f3;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

.heading0 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.heading0 p {
  max-width: 520px;
}

.heading1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin: 0 auto 50px auto;
  width: 50%;
}

.heading1 h2,
.heading1 p {
  color: var(--wt);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "volter";
  src: url("../fonts/volter-black.ttf");
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

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

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

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

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

.sec {
  padding: 80px 40px;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  gap: 5px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 25px;
  border-radius: 5px;
  border: 1px solid transparent;
  overflow: hidden;
  background-color: var(--bk);
  color: var(--wt);
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  border: 1px solid var(--bk);
  background-color: var(--wt);
  color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #0000;
  overflow: hidden;
  background-color: var(--bk);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
  border: 1px solid var(--bk);
  background-color: var(--wt);
  color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 20px;
  object-fit: contain;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(0%)
    hue-rotate(294deg) brightness(104%) contrast(107%);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  gap: 5px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 25px;
  border-radius: 5px;
  border: 1px solid transparent;
  overflow: hidden;
  background-color: var(--wt);
  color: var(--bk);
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
  border: 1px solid var(--wt);
  background-color: var(--bk);
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #0000;
  overflow: hidden;
  background-color: var(--wt);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon {
  border: 1px solid var(--wt);
  background-color: var(--bk);
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(0%) sepia(2%) saturate(0%)
    hue-rotate(207deg) brightness(101%) contrast(101%);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(231deg) brightness(104%) contrast(102%);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 5px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-bottom: 1px solid var(--bk);
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3:hover::before {
  width: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
  font-size: 14px;
  line-height: 1;
  color: var(--bk);
  text-transform: uppercase;
  font-weight: 500;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "volter";
  font-size: 57px;
  line-height: 66px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h2 {
  font-family: "volter";
  font-size: 50px;
  line-height: 55px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "volter";
  font-size: 42px;
  line-height: 50px;
  color: var(--bk);
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "volter";
  font-size: 24px;
  line-height: 29px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "volter";
  font-size: 20px;
  line-height: 25px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "volter";
  font-size: 18px;
  line-height: 23px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

p {
  color: var(--bk);
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0;
  opacity: 0.7;
}

select {
  background: var(--wt) url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*Header Css Starts */
header {
  padding: 20px 40px;
}
.menuSec {
  padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  border-radius: 5px;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  color: var(--bk);
  font-weight: 500;
  transition: ease-in;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li.active a {
  color: var(--wt);
}

.menu-box ul li a:hover {
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  z-index: -1;
}

.menu-box ul li.active a::before {
  width: 100%;
}

.menu-box ul li a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 0;
  background-color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li.active a::after {
  height: 100%;
}

.menu-box ul li a:hover::after {
  height: 100%;
  transition: ease-out;
  transition-delay: 0.5s;
  transition-duration: 0.5s;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: var(--bk);
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: var(--wt) !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: var(--wt) fff;
  color: var(--bk) !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

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

/*Header Css Ends */

/*Banner Sec Css Starts */

.banner-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
}

.banner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.banner-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 70%;
  gap: 10px;
}

.banner-heading h1,
.banner-heading h3 {
  text-transform: uppercase;
}

.banner-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40%;
}

.banner-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.banner-img-main {
  height: 580px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.banner1 {
  background-image: url("../images/banner1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
}

.banner-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  width: 55%;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.banner-card-txt-main {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding: 35px;
  border-radius: 30px;
  overflow: hidden;
  background: rgb(35 35 35 / 24%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgb(255 255 255);
  box-shadow:
    0 18px 40px rgb(0 0 0 / 10%),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.banner-card-txt-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.12) 22%,
    rgba(255, 255, 255, 0.06) 55%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
}

.banner-card-video-main {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  border-radius: 34px;
  overflow: hidden;
}

.banner-card-video {
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.banner-card-video img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.banner-card-video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 100px;
  overflow: hidden;
  background: rgb(255 255 255 / 29%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  /* border: 1px solid rgba(255, 255, 255, 0.28); */
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  object-fit: contain;
  z-index: 3;
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner-card-video-box:hover {
  background: rgb(0, 0, 0);
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner-card-video-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 20px;
}

.banner-card-video-box a img.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 0;
}

.banner-card-btn {
  position: relative;
  z-index: 2;
}

.banner-card-txt {
  position: relative;
  z-index: 2;
}

.banner-card-txt p {
  color: var(--wt);
  margin: 0;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .banner-card-txt-main,
  .banner-card-video {
    background: rgba(255, 255, 255, 0.28);
  }
}

/*Banner Sec Css Ends */

/*About Us Sec Css Starts */

.about-img-mian {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 665px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-con {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 95%;
  margin: 0 0 0 auto;
}

.about-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.about-card-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
  padding: 0 20px;
}

.about-card-img {
  position: relative;
  width: 45%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.about-card-txt-btn-main {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.about-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-card-video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 100px;
  overflow: hidden;
  background-color: var(--wt);
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-card-video-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.about-card-video-box a img.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7473%)
    hue-rotate(153deg) brightness(93%) contrast(106%);
  transition: ease-in;
  transition-duration: 0.5s;
}

/*About Us Sec Css Ends */

/*Service Sec Css Starts */
.services-bg {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0b0b;
}

.services-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/services-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.services-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(
    circle,
    rgb(0 0 0 / 63%) 0%,
    rgb(0 0 0 / 81%) 50%,
    rgb(0 0 0) 100%
  );
}

.services-wrap {
  position: relative;
  z-index: 1;
  padding: 80px 70px;
}

.services-heading h2 {
  margin: 0;
  color: var(--wt);
  font-size: 56px;
  line-height: 1;
  text-transform: uppercase;
}

.services-heading p {
  color: var(--wt);
}

.services-faqs-wrap {
  position: relative;
}

.services-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.service-item:first-child {
  border-top: none;
}

.service-head {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 90px 1fr 64px;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.service-no {
  color: var(--wt);
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  font-family: "volter";
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.service-title {
  color: var(--wt);
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "volter";
  transition:
    letter-spacing 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.service-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  position: relative;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.service-toggle::before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.service-item.active .service-toggle::before {
  transform: rotate(-135deg);
}

.service-body {
  padding: 0 0 36px 90px;
  display: none;
}

.service-item.active .service-body {
  display: block;
}

.service-desc {
  color: var(--wt);
}

.service-media {
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-item:hover .service-head {
  transform: translateX(6px);
}

.service-item:hover .service-title {
  letter-spacing: 1.2px;
}

.service-item:hover .service-no {
  opacity: 0.9;
}

.service-item:hover .service-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  transform: scale(1.06);
}

.service-item:hover .service-media {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.service-item:hover .service-media img {
  transform: scale(1.04);
}

/*Service Sec Css Ends */

/*Choose Sec Css Starts */

.choose-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  padding: 30px;
  border-radius: 30px;
  overflow: hidden;
  margin: 5px;
  background-color: var(--wt);
  box-shadow: 0 0 20px 0 #00000026;
}

.choose-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.choose-list ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.choose-list ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.choose-list ul li img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  object-fit: contain;
}

.choose-img-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 535px;
  width: 95%;
  border-radius: 30px;
  margin: 0 0 0 auto;
  overflow: hidden;
  background-color: var(--wt);
  /* box-shadow: 0 0 20px 0 #00000026; */
}

.choose-img-main .choose-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.choose-img-main .choose-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.choose-img-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  width: 260px;
  height: 200px;
  background-color: #f8f7f3;
  border-radius: 0 30px 0 0;
  overflow: hidden;
}

.choose-img-txt h5 {
  font-size: 50px;
  line-height: 55px;
  text-transform: uppercase;
}

/*Choose Sec Css Ends */

/*Gallery Sec Css Starts */
.gallery-bg {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bk);
}

.gallery-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/gallery-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  opacity: 0.35;
}

.gallery-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.85) 60%,
    #000 100%
  );
}

.gallery-wrap {
  padding: 80px 70px;
  position: relative;
  z-index: 9;
}

.gallery-card-wrap {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gallery-card-main {
  width: 100%;
  display: flex;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin: 18px 0;
}

.gallery-card-img > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-card-txt {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 70px;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.35s ease;
  z-index: 3;
}

.gallery-card-txt p {
  color: var(--wt);
  opacity: 0.85;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.gallery-card-txt .theme1 {
  justify-content: start;
}

.gallery-card-txt .theme1-txt {
  background: #0b0b0b;
  color: var(--wt);
  padding: 16px 26px;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1;
}

.gallery-card-txt .theme1-icon {
  width: 52px;
  height: 52px;
  background: #0b0b0b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card-txt .theme1-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transform: none;
}

.gallery-card-img:hover img {
  transform: scale(1.08);
}

.gallery-card-img:hover::before {
  opacity: 1;
}

.gallery-card-img:hover .gallery-card-txt {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card1 {
  height: 320px;
}

.gallery-card2 {
  height: 500px;
}

.gallery-card3 {
  height: 520px;
}

.gallery-card4 {
  height: 300px;
}

.gallery-card5 {
  height: 420px;
}

.gallery-card6 {
  height: 400px;
}

/*Gallery Sec Css Ends */

/*Testimonial Sec Css Starts */

.testimonial-sec {
  padding-top: 0;
}

.testimonial-heading h2 {
  text-transform: uppercase;
}

.testimonial-wrap {
  position: relative;
}

.testimonial_slider {
  position: relative;
}

.testimonial_slider .slick-list {
  overflow: hidden;
}

.testimonial_slider .slick-track {
  display: flex;
}

.testimonial-slide {
  display: flex !important;
  gap: 40px;
  align-items: stretch;
}

.testimonial-left {
  width: 40%;
  border-radius: 30px;
  overflow: hidden;
  padding: 30px 30px 60px 30px;
  position: relative;
  background: #0b0b0b;
  color: var(--wt);
}

.testimonial-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/testimonial1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 72%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgb(0 0 0 / 0%);
  box-shadow:
    0 18px 40px rgb(4 4 4 / 27%),
    inset 0 1px 0 rgb(0 0 0);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: #f5c451;
  font-size: 14px;
}

.testimonial-quote {
  color: var(--wt);
  opacity: 0.92;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.testimonial-para {
  color: var(--wt);
  opacity: 0.65;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex: 0 0 auto;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-user-txt h5 {
  color: var(--wt);
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.testimonial-user-txt span {
  color: var(--wt);
  opacity: 0.6;
  font-size: 11px;
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.testimonial-dots img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.testimonial-right {
  width: 60%;
  border-radius: 24px;
  overflow: hidden;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-arrows {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.testimonial-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--wt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.testimonial-arrows button:hover {
  background: var(--bk);
  color: var(--wt);
  border-color: var(--bk);
}

.testimonial_slider .slick-arrow {
  display: none !important;
}

/*Testimonial Sec Css Ends */

/*Contact Sec Css Starts */

.contact-bg {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bk);
}

.contact-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  opacity: 0.3;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.82) 55%,
    #000 100%
  );
}

.contact-wrap {
  position: relative;
  z-index: 2;
  padding: 80px 70px;
}

.contact-img-main {
  height: 520px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.contact-img,
.contact-img img {
  height: 100%;
  width: 100%;
}

.contact-img img {
  object-fit: cover;
  display: block;
}

/* Right side */
.contact-form-main {
  width: 100%;
}

.contact-heading {
  margin-bottom: 18px;
}

.contact-heading h2 {
  color: var(--wt);
  text-transform: uppercase;
}

.contact-heading p {
  color: var(--wt);
  opacity: 0.7;
  max-width: 620px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 16px 18px;
  color: var(--wt);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.2;
  outline: none;
}

.contact-form textarea {
  resize: none;
  min-height: 190px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.contact-btn .theme1 {
  justify-content: flex-start;
}

/*Contact Sec Css Ends */

/* Footer Sec Css Starts */

.footer-sec {
  padding: 0 40px 60px;
}

.footer-wrap {
  background: var(--wt);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* top grid */
.footer-col {
  padding: 70px 60px;
}

.footer-col-left {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
}

.footer-title {
  text-transform: uppercase;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  position: relative;
  width: 80%;
}

.footer-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--bk);
  width: 60%;
}

.footer-title-line {
  /* width: 190px; */
  /* height: 2px; */
  /* background: var(--bk); */
  /* margin: 16px 0 22px; */
}

.footer-para {
  max-width: 320px;
  margin-bottom: 26px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.footer-contact p a {
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  color: var(--bk);
  margin: 0 0 0 10px;
}

.footer-contact p {
  /* display: inline-flex; */
  /* align-items: center; */
  /* justify-content: start; */
  /* gap: 10px; */
  width: 100%;
  font-weight: 600;
  opacity: 1;
  font-family: 'Montserrat';
}

.footer-contact strong {
  opacity: 1;
}

/* social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bk);
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: var(--bk);
  color: var(--wt);
  border-color: var(--bk);
}

/* right side lists */
.footer-col-right {
  height: 100%;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
}

.footer-links ul li a {
  color: var(--bk);
  opacity: 0.75;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: none;
  transition: 0.25s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* newsletter bar */
.footer-newsletter {
  margin-top: 42px;
}

.newsletter-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 810px;
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
}

.newsletter-left {
  background: var(--bk);
  color: var(--wt);
  padding: 20px 70px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
}

.newsletter-left h5 {
  color: var(--wt);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  margin: 0;
}

.newsletter-mid {
  flex: 1;
  background: #1a1a1a;
  display: flex;
  align-items: center;
}

.newsletter-mid input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  padding: 0 18px;
  color: var(--wt);
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.newsletter-mid input::placeholder {
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.newsletter-right {
  min-width: 200px;
}

.newsletter-right button {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  color: var(--bk);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  transition: 0.25s ease;
}

.newsletter-right button:hover {
  background: var(--bk);
  color: var(--wt);
}

/* bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  text-transform: none;
}

/* Footer Sec Css Ends */
