@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&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;
  --bg-main: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --accent-primary: #ba0c28;
  --text-main: #ffffff;
  --text-secondary: #d9d9d9;
  --border-color: #4a4a4a;
  --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-image: url("../images/home-bg1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.slicknav_nav a:hover {
    background: linear-gradient(90deg, rgba(129, 0, 21, 1) 0%, rgba(173, 0, 32, 1) 53%, rgba(195, 20, 48, 1) 100%);
}

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;
}

/***** 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;
}

/***** 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 0;
}

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

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

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

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

/* 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;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 55px;
  border-radius: 100px;
  overflow: hidden;
  border: none;
  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: start;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--wt);
  gap: 15px;
  height: 45px;
  border-radius: 100px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(129, 0, 21, 1) 0%,
    rgba(173, 0, 32, 1) 53%,
    rgba(195, 20, 48, 1) 100%
  );
  padding: 0 60px 0 20px;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  overflow: hidden;
  background-color: var(--wt);
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  bottom: 0;
  right: 0;
  border: 2px solid #000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50px;
  padding: 15px;
}

/* 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: "Oswald", sans-serif;
  font-size: 60px;
  line-height: 65px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  line-height: 65px;
  color: var(--accent-primary);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

h3 {
  font-family: "Montserrat";
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Montserrat";
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Montserrat";
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Montserrat";
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: var(--wt);
  font-size: 18px;
  line-height: 25px;
  font-family: "Montserrat";
  font-weight: 400;
  margin: 0;
}

select {
  background: #fff 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: 0;
}
.top-bar-main {
  background: linear-gradient(
    90deg,
    rgba(129, 0, 21, 1) 0%,
    rgba(173, 0, 32, 1) 53%,
    rgba(195, 20, 48, 1) 100%
  );
  padding: 10px 0;
}

.top_bar_marquee {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.top-bar-txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.top-bar-txt h6 {
  display: inline-block;
  min-width: max-content;
  padding-left: 100%;
  font-size: 18px;
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 400;
  font-family: "Montserrat";
  color: var(--wt);
  animation: topBarMarquee 24s linear infinite;
}

@keyframes topBarMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.topSec-links-main ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 60px;
}

.topSec-links-main ul li a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.topSec-links-main ul li a:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.topSec {
  background-color: var(--bk);
  padding: 20px 0;
}

.topSec-links-main ul li a .topSec-links-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #0000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.topSec-links-main ul li a:hover .topSec-links-img {
  background-color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.topSec-links-main ul li a .topSec-links-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: 100%;
  object-fit: contain;
  padding: 5px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.topSec-links-main ul li a:hover .topSec-links-img img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(3%)
    hue-rotate(326deg) brightness(97%) contrast(104%);
  transition: ease-out;
  transition-duration: 0.5s;
}

.topSec-links-main ul li a p {
  position: relative;
  color: var(--wt);
  font-size: 18px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 400;
  transition: ease-in;
  transition-duration: 0.5s;
}

.topSec-links-main ul li a p::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.topSec-links-main ul li a:hover p::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.topSec-socials ul {
  justify-content: end;
}

.socials ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 100px;
  background: linear-gradient(
    30deg,
    rgba(129, 0, 21, 1) 0%,
    rgba(173, 0, 32, 1) 53%,
    rgba(195, 20, 48, 1) 100%
  );
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  margin: 0 auto;
  height: 0;
  width: 0;
  background-color: var(--wt);
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a:hover::before {
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 18px;
  color: var(--wt);
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a:hover i {
  color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

.menuSec {
  padding: 20px 0;
  background-color: var(--wt);
}

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

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

.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: 50px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  color: var(--bk);
  font-weight: 600;
  border-radius: 100px;
  background-color: #fff;
  z-index: 0;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  /* transition-delay: 0.5s; */
}

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

.menu-box ul li a::after {
  color: #fff;
  transition: ease-out;
  transition-duration: 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 #ff8040;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
} */

/* .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;
  width: 0;
  height: 100%;
  background-color: #ff8040;
  background: linear-gradient(
    90deg,
    rgba(129, 0, 21, 1) 0%,
    rgba(173, 0, 32, 1) 53%,
    rgba(195, 20, 48, 1) 100%
  );
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

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

.menu-box ul li.active > a {
  color: #fff;
}

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

.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: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !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: #ffffff;
  color: #000000 !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 */

section.banner-sec {
  position: relative;
  height: 110vh;
  background-image: url("../images/banbg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

section.banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0000008a;
}

.banner-txt-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  z-index: 9;
  width: 100%;
}

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

.banner-heading h2 {
  font-size: 50px;
  line-height: 55px;
  color: var(--wt);
}

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

.banner-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100px;
  width: 100%;
}

.banner-title h1 {
  position: relative;
  z-index: 9;
}

.banner-title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0vw;
  width: 100vw;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(129, 0, 21, 1) 0%,
    rgba(173, 0, 32, 1) 53%,
    rgba(195, 20, 48, 1) 100%
  );
  border-radius: 0 10px 10px 0;
}

.banner-img-main {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

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

.banner-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid var(--wt);
}

.banner-img-ex {
  position: absolute;
  bottom: -130px;
  left: -200px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  width: 500px;
  box-shadow: 0 0 20px 0 #0000002b;
  border-radius: 10px;
  overflow: hidden;
}

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

/*Banner Sec Css Ends */

/* Inner Banner Sec Css Ends */

section.inner-banner-sec {
  height: 500px;
}

section.inner-banner-sec .container,
section.inner-banner-sec .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 70%;
}

section.inner-banner-sec .banner-title {
  justify-content: center;
}

section.inner-banner-sec .banner-title::before {
  width: 100%;
  border-radius: 10px;
}

/* Inner Banner Sec Css Ends */

/*About Us Sec Css Starts */

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  width: 97%;
  margin: 0 0 0 auto;
}

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

.about-img {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 650px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--accent-primary);
}

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

.about-heading {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
  background-color: var(--wt);
  border-radius: 5px;
  overflow: hidden;
  padding: 10px 20px;
}

/*About Us Sec Css Ends */

/*Choose Sec Css Starts*/

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

.choose-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 20px;
  background-color: var(--wt);
  border-radius: 10px;
  overflow: hidden;
}

.choose-card-bottom .choose-txt {
  width: 100%;
}

.choose-txt h5 {
  letter-spacing: 2px;
  color: var(--bk);
  font-weight: 600;
}

.choose-txt p {
  color: var(--bk);
  font-weight: 500;
}

.choose-img {
  width: 100%;
}

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

.choose-img img.choose1 {
  height: 669px;
  border-radius: 20px;
  overflow: hidden;
}

.choose-img img.choose2 {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

/*Choose Sec Css Ends*/

/*Quote Sec Css Starts*/

section.quote-sec {
  padding: 120px 0;
  background-image: url("../images/quote-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

section.quote-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000b3;
}

.quote-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 9;
}

.quote-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation-range: 30px;
  text-align: center;
  gap: 30px;
  width: 70%;
  margin: 0 auto;
}

/*Quote Sec Css Ends*/


/*Services Sec Css Ends*/

.services-card-main {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  height: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #0000;
  margin: 20px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover {
  border: 2px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--accent-primary);
  opacity: 0.3;
  z-index: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover::before {
  opacity: 0.7;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

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

.services-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover .services-card-img img {
  scale: 1.1;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  margin: 0 auto;
  z-index: 2;
}

.services-card-txt h5 {
  font-size: 30px;
  line-height: 40px;
  color: var(--wt);
  font-weight: 600;
  text-transform: uppercase;
}

.services-card-txt p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}

.services-empty {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.services-empty h4 {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
}

.home-services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

/*Services Sec Css Ends*/



/*About Me Sec Css Starts */

.about-me-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

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

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

.about-me-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.about-me-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.about-me-txt h4 {
  font-size: 30px;
  line-height: 35px;
  color: var(--wt);
}

/*About Me Sec Css Ends */

/*Team Sec Css Starts*/

.team-slider-wrap {
  position: relative;
}

.team-slider {
  margin: 0 -12px;
}

.team-slide {
  padding: 0 12px;
}

.team-slider .slick-list {
  overflow: hidden;
}

.team-slider .slick-slide,
.team-slider .slick-active,
.team-slider .slick-current {
  opacity: 1 !important;
  filter: none !important;
}

.team-slider-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  background: var(--wt);
  color: var(--accent-primary);
  box-shadow: 0 8px 22px 0 #00000024;
  transition: all 0.25s ease;
}

.team-slider-arrow:hover {
  background: var(--accent-primary);
  color: var(--wt);
}

.team-slider-prev {
  left: -56px;
}

.team-slider-next {
  right: -56px;
}

.team-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: start;
  gap: 20px;
  height: 520px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.team-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  width: 100%;
}

.team-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
    object-position: 0 0;
  border-radius: 10px;
  overflow: hidden;
}

.team-card-txt-socials {
  position: absolute;
  bottom: 18px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: calc(100% - 36px);
  min-height: 104px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--accent-primary);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px 0 #0000002e;
}

.team-card-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.team-card-txt h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  overflow-wrap: anywhere;
}

.team-card-txt h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  color: #4b4b4b;
  overflow-wrap: anywhere;
}

/*Team Sec Css Ends*/

/*Gallery Sec Css Starts*/

.gallery-card-main {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-card a img {
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.gallery-card a:hover img {
  scale: 1.1;
  transition: ease-out;
  transition-duration: 0.5s;
}

.gallery-card2 {
  justify-content: end;
}

.gallery-card img {
  padding: 10px;
}

img.g1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 233px;
  width: 441px;
  object-fit: cover;
}

img.g2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 360px;
  object-fit: cover;
  object-position: 70%;
}

img.g3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 757px;
  object-fit: cover;
  object-position: 75%;
}

img.g4 {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 450px;
  height: 250px;
  object-fit: cover;
}

img.g5 {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 350px;
  height: 300px;
  object-fit: cover;
  object-position: 0;
}

img.g6 {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 344px;
  height: 190px;
  object-fit: cover;
}

.gallery-card-heading {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 10px;
}

.gallery-card-heading h2 {
  font-size: 60px;
  line-height: 65px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 90%;
}

.gallery-card6 {
  justify-content: end;
}

.gallery-card-txt p {
  font-size: 14px;
  line-height: 20px;
  width: 70%;
  margin: 70px 0 0 40px;
}

.project-booklet-sec {
  background-color: transparent;
}

.project-booklet-sec .gallery-heading h2 {
  color: var(--accent-primary);
}

.project-booklet-sec .gallery-heading p {
  color: var(--wt);
}

.project-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 30px;
}

.project-tab-btn {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(186, 12, 40, 0.28);
  border-radius: 100px;
  background-color: var(--wt);
  color: var(--bk);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.project-tab-btn:hover,
.project-tab-btn.active {
  border-color: var(--accent-primary);
  background: linear-gradient(
    90deg,
    rgba(129, 0, 21, 1) 0%,
    rgba(173, 0, 32, 1) 53%,
    rgba(195, 20, 48, 1) 100%
  );
  color: var(--wt);
}

.project-tab-panel {
  display: none;
}

.project-tab-panel.active {
  display: block;
}

.project-booklet {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(90deg, #f6f1e7 0%, #ffffff 50%, #f2ecdf 100%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  perspective: 1900px;
  transform-style: preserve-3d;
}

.project-booklet::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.04));
  transform: translateX(-50%);
  z-index: 2;
}

.project-booklet-pages {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.project-booklet-page {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
  transform-origin: center;
  animation: bookletPageIn 0.48s ease both;
}

.project-booklet-page.active {
  display: grid;
}

.project-booklet::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 76px;
  left: 50%;
  width: calc(50% - 28px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.92) 18%, rgba(246, 241, 231, 0.98) 56%, rgba(214, 203, 184, 0.92)),
    linear-gradient(115deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.72) 44%, rgba(255, 255, 255, 0) 64%);
  border-radius: 0 6px 6px 0;
  box-shadow:
    -26px 0 42px rgba(0, 0, 0, 0.22),
    inset 18px 0 24px rgba(0, 0, 0, 0.08);
  transform: rotateY(90deg);
  transform-origin: left center;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  backface-visibility: hidden;
}

.project-booklet.flip-next::after {
  animation: bookletFlipNext 0.96s cubic-bezier(0.22, 0.68, 0.18, 1);
}

.project-booklet.flip-prev::after {
  left: 28px;
  border-radius: 6px 0 0 6px;
  transform-origin: right center;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.92) 18%, rgba(246, 241, 231, 0.98) 56%, rgba(214, 203, 184, 0.92)),
    linear-gradient(65deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.72) 44%, rgba(255, 255, 255, 0) 64%);
  box-shadow:
    26px 0 42px rgba(0, 0, 0, 0.22),
    inset -18px 0 24px rgba(0, 0, 0, 0.08);
  animation: bookletFlipPrev 0.96s cubic-bezier(0.22, 0.68, 0.18, 1);
}

@keyframes bookletFlipNext {
  0% {
    opacity: 0;
    transform: rotateY(0deg) translateZ(1px);
  }
  12% {
    opacity: 1;
  }
  46% {
    opacity: 1;
    transform: rotateY(-82deg) translateZ(22px) skewY(-1deg);
    box-shadow:
      -38px 0 58px rgba(0, 0, 0, 0.3),
      inset 24px 0 30px rgba(0, 0, 0, 0.12);
  }
  78% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: rotateY(-178deg) translateZ(1px);
  }
}

@keyframes bookletFlipPrev {
  0% {
    opacity: 0;
    transform: rotateY(0deg) translateZ(1px);
  }
  12% {
    opacity: 1;
  }
  46% {
    opacity: 1;
    transform: rotateY(82deg) translateZ(22px) skewY(1deg);
    box-shadow:
      38px 0 58px rgba(0, 0, 0, 0.3),
      inset -24px 0 30px rgba(0, 0, 0, 0.12);
  }
  78% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: rotateY(178deg) translateZ(1px);
  }
}

@keyframes bookletPageIn {
  from {
    opacity: 0.8;
    transform: scale(0.992);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.project-booklet-image,
.project-booklet-info {
  min-height: 430px;
}

.project-booklet-image {
  padding-right: 28px;
}

.project-booklet-image a,
.project-booklet-image img {
  display: block;
  height: 100%;
  width: 100%;
}

.project-booklet-image img {
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.project-booklet-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 20px 42px 54px;
}

.project-booklet-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 100px;
  background-color: var(--accent-primary);
  color: var(--wt);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.project-booklet-info h3 {
  margin: 22px 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: 54px;
  line-height: 1.05;
  color: var(--bk);
  text-transform: uppercase;
}

.project-booklet-info p {
  color: #555;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.project-booklet-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.project-booklet-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  background-color: var(--accent-primary);
  color: var(--wt);
  transition: all 0.25s ease;
}

.project-booklet-controls button:hover {
  background-color: var(--bk);
  border-color: var(--bk);
}

.project-gallery-empty {
  padding: 40px 20px;
  text-align: center;
}

.project-gallery-empty h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
  color: var(--wt);
}

/*Gallery Sec Css Ends*/

/*Partners Sec Css Starts*/

.partners-category-block {
  margin-top: 28px;
}

.partners-category-block + .partners-category-block {
  margin-top: 46px;
}

.partners-category-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.partners-category-title h3 {
  color: var(--accent-primary);
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
}

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

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

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

.partners_slider .slick-active {
  opacity: 1;
}

.partners_slider .slick-slide {
  opacity: 1;
}

.partners-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
}

.partners-empty h4 {
  color: var(--wt);
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

/*Partners Sec Css Ends*/

/*Testimonial Start*/

.texti-box {
  padding: 26px;
  border-radius: 10px;
  position: relative;
  margin: 49px 0 20px 0;
  background-color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.texti-box:hover {
  background-color: #282828;
  transition: ease-out;
  transition-duration: 0.5s;
}

.texti-box:hover * {
  color: #fff !important;
}

.testi-slider .slick-current .texti-box {
  box-shadow: 0 0 20px 0 #00000012;
}

.texti-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -74px 0 0 0;
}

.texti-box ul li img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.texti-box ul li i {
  font-size: 16px;
  color: #f4a600;
  transition: ease-out;
  transition-duration: 0.5s;
}

.texti-box p {
  color: var(--bk);
  line-height: 26px;
  width: 90%;
  margin: 20px 0 40px 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.texti-box h6 {
  font-size: 17px;
  font-family: "Poppins";
  text-transform: uppercase;
  color: #374f59;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 0 10px;
  font-weight: 600;
}

.texti-box h6 span {
  text-transform: capitalize;
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

/* .texti-box:before {
    content: '';
    position: absolute;
    background: #374f59;
    width: 110px;
    height: 100px;
    top: 0;
    right: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
} */

.texti-box ul li img.quote-icon {
  border-radius: 0;
  border: none;
  width: 70px;
  height: 60px;
  transition: ease-in;
  transition-duration: 0.5s;
}

/* .texti-box:hover img.quote-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(102%) contrast(102%);
    transition: ease-out;
    transition-duration: 0.5s;
} */

section.testi-sec {
  padding: 80px 0;
}

.testi-slider .slick-active {
  opacity: 1;
}
.testi-slider .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 1;
}
.testi-slider .slick-slide {
  margin: 0px 10px;
  position: relative;
}

.testi-slider .slick-next:before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 6px;
  color: #000 !important;
}

.testi-slider .slick-prev:before {
  content: "\f060";
  font-family: "Font Awesome 6 Pro";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 6px;
  color: #000 !important;
  opacity: 1 !important;
}

.testi-slider .slick-prev {
  left: -45px;
}

.testi-head h3 {
  color: #000;
  font-weight: 600;
}

.texti-user-start ul {
  justify-content: end;
  gap: 5px;
  margin: 0;
}

.texti-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 0 0;
  border-top: 1px solid #0000002b;
}

.texti-box:hover .texti-user {
  border-top: 1px solid #fff;
}

.texti-user-txt h5 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  margin: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi-slider .slick-current img.quote-icon {
  display: flex;
}

img.quote-icon {
  /* display: none; */
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  position: absolute;
  top: -8.3%;
  right: 9%;
  filter: brightness(0) saturate(100%) invert(11%) sepia(96%) saturate(4671%)
    hue-rotate(344deg) brightness(85%) contrast(95%);
}

.texti-user-txt p {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi-slider .slick-center img.quote-icon {
  top: 7%;
  right: 9%;
  opacity: 0.08;
}

/*Testimonial End*/

/* Contact Sec Css Starts */

section.contact-sec {
  position: relative;
  z-index: 3;
}

.contact-card-main {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--wt);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.contact-form-side {
  padding: 40px 32px 34px;
  background-color: var(--wt);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.contact-form-head h2 {
  font-size: 54px;
  line-height: 1;
}

.contact-form-side form {
  width: 100%;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 2px solid #dedede;
  border-radius: 18px;
  background-color: transparent;
  padding: 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #6f6f6f;
  box-shadow: none;
}

.contact-field input {
  height: 50px;
}

.contact-field textarea {
  height: 140px;
  padding: 20px;
  resize: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent-primary);
}

.contact-recaptcha {
  margin-top: 16px;
}

.contact-recaptcha .g-recaptcha {
  max-width: 100%;
}

.quote-recaptcha {
  margin: 16px 0 0;
}

.quote-recaptcha .g-recaptcha {
  max-width: 100%;
}

.contact-form-message {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.35;
}

.contact-form-message.error {
  display: block;
  border: 1px solid #d93025;
  background: #fff4f3;
  color: #9f1d15;
}

.contact-form-message.success {
  display: block;
  border: 1px solid #208343;
  background: #f0fff5;
  color: #176633;
}

.contact-field .field-error {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.12);
}

.register_form_inp .field-error {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.12);
}

.contact-info-side {
  background-color: var(--accent-primary);
  padding: 34px 26px 34px 26px;
  color: var(--wt);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  min-height: 100%;
  border-radius: 20px;
  gap: 20px;
}

.contact-info-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.contact-info-head h2 {
  font-size: 40px;
  line-height: 45px;
  color: var(--wt);
}

.contact-info-head p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--wt);
  opacity: 1;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact-info-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}

.contact-info-icon {
  height: 38px;
  width: 38px;
  min-width: 38px;
  border-radius: 100px;
  background-color: var(--wt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon i {
  font-size: 16px;
  color: var(--accent-primary);
}

.contact-info-txt p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--wt);
  opacity: 1;
  font-weight: 500;
}

.contact-info-bottom {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-bottom p,
.contact-info-bottom h6,
.contact-info-bottom a {
  color: var(--wt);
  opacity: 1;
}

.contact-info-bottom p {
  font-size: 14px;
  line-height: 1.5;
}

.contact-info-bottom h6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.contact-info-bottom a {
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
}

/* Contact Sec Css Ends */

/* Footer Sec Css Starts */

.footer-sec {
  /* background-color: var(--accent-primary); */
  overflow: hidden;
}

.footer-top-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 115px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-top-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 180px;
  background-color: var(--wt);
  border-radius: 5px;
  overflow: hidden;
}

.footer-top-logo img {
  max-width: 185px;
  width: 100%;
  object-fit: contain;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.28fr 0.82fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-col {
  min-height: 378px;
  padding: 40px;
}

.footer-links-col {
  padding-left: 128px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-center-col {
  padding: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
}

.footer-contact-col {
  padding-left: 80px;
}

.footer-newsletter,
.footer-social-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-newsletter {
  padding: 54px 48px 42px;
}

.footer-social-wrap {
  padding: 38px 48px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  text-align: center;
}

.footer-title {
  margin: 0 0 24px 0;
}

.footer-title h4 {
  /* font-family: "blender-pro-medium"; */
  font-size: 26px;
  line-height: 1;
  color: var(--wt);
  text-transform: uppercase;
  margin: 0;
}

.footer-title-center {
  text-align: center;
}

.footer-title-contact {
  margin-bottom: 34px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links li a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: var(--wt);
  text-transform: uppercase;
  transition: 0.3s ease;
}

.footer-links li a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-subscribe-form {
  width: 100%;
}

.footer-subscribe-field {
  max-width: 534px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  background-color: var(--wt);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.footer-subscribe-field input {
  flex: 1;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 22px;
  color: #7a7a7a;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.footer-subscribe-field input::placeholder {
  color: #7a7a7a;
}

.footer-subscribe-field button {
  min-width: 136px;
  height: calc(100% - 2px);
  margin: 1px;
  border: 0;
  border-radius: 100px;
  background-color: var(--accent-primary);
  color: var(--wt);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.footer-subscribe-field button:hover {
  background-color: var(--bk);
}

.footer-newsletter-message {
  min-height: 20px;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.footer-newsletter-message.success {
  color: #ffffff;
}

.footer-newsletter-message.error {
  color: #ffd6d6;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-contact-icon {
  width: 14px;
  min-width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  position: relative;
  top: 5px;
}

.footer-contact-list li a {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.footer-contact-list li a:hover {
  color: var(--wt);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 20px;
}

.footer-bottom p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--wt);
  font-weight: 400;
  text-align: center;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff30;
  border-radius: 100px;
  overflow: hidden;
  color: var(--wt);
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-social-icons a:hover {
  background-color: var(--wt);
  color: var(--accent-primary);
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Footer Sec Css Ends */

/* Error Sec Css Starts */

.error-sec {
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
}

.error-page-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.error-page-content h1 {
  font-size: 120px;
  line-height: 1;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.error-page-content h2 {
  font-size: 48px;
  line-height: 1.12;
  color: var(--bk);
  margin-bottom: 16px;
}

.error-page-content p {
  color: #222;
  margin-bottom: 26px;
}

/* Error Sec Css Ends */

/* About Us Sec Css Ends */

.about-bottom {
  margin: 50px 0 0 0;
}

/* About Us Sec Css Ends */

/* Booking page starts  */

.bg-color {
  padding: 50px;
  box-shadow: 0px 0px 10px 0px #0000004a;
  border-radius: 20px;
  background-color: var(--wt);
}

.text-booking h2 {
}

.register_form_inp.input-sec input {
  height: 50px;
  width: 100%;
  margin: 10px 0;
  padding: 0 20px;
  border: 1px solid #66666647;
  background-color: transparent;
  color: #666666;
  border-radius: 6px;
}

.register_form_inp.input-sec select {
  height: 50px;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #66666647;
  background-color: transparent;
  color: #666666;
  border-radius: 6px;
}

.register_form_inp.input-sec input::placeholder {
  color: #666666;

  text-transform: capitalize;
}

.register_form_inp textarea {
  height: 200px;
  padding: 20px;
  resize: none;
  background-color: transparent;
  margin: 10px 0;
}

.register_form_inp textarea:active,
.register_form_inp textarea:focus {
  background-color: transparent;
}

.register_form_inp textarea::placeholder {
  color: #666666;
}

.booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}

/* Booking page ENds */
