@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 {
  --ct1: #908574;
  --ct2: #0f0f0f;
  --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-image: url("../images/body-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
}

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

.txt-color {
  color: var(--ct1);
}

/* 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: "mildstones";
  src: url("../fonts/mildstones.otf");
}

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

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--ct1);
  border: 2px solid var(--wt);
  padding: 0 70px 0 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

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

.theme1 span.theme1-txt {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  color: var(--wt);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* padding: 0 30px; */
  background-color: #0000;
  border-radius: 5px;
  text-transform: uppercase;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  /* color: var(--wt); */
  /* background-color: #344c36; */
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50px;
  /* padding: 0 20px; */
  background-color: var(--wt);
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

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

.theme1 span.theme1-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 10px;
  object-fit: contain;
}

/* 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: "mildstones";
  font-size: 57px;
  line-height: 65px;
  color: var(--wt);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "mildstones";
  font-size: 50px;
  line-height: 55px;
  color: var(--wt);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

h3 {
  font-family: "mildstones";
  font-size: 32px;
  line-height: 40px;
  color: var(--wt);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

h4 {
  font-family: "mildstones";
  font-size: 30px;
  line-height: 35px;
  color: var(--wt);
  font-weight: 400;
  margin: 0;
}

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

h6 {
  font-family: "mildstones";
  font-size: 14px;
  line-height: 25px;
  color: var(--wt);
  font-weight: 400;
  margin: 0;
}

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

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: 20px 0 5px 0;
  border-bottom: 1px solid #ffffff38;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.menuSec {
  padding: 0px 0;
}

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

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

.menu-box ul li {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  color: var(--wt);
  font-weight: 500;
}

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

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

.menu-box ul li a:hover::before {
  width: 100%;
  margin: 0 auto 0 0;
  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(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
} */

/* .menu-box ul li a:hover::after {
  height: 100%;
  transition: ease-out;
  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: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.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 {
  height: 120vh;
  padding: 130px 0 0 0;
  background-image: url("../images/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.banner-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

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

.banner-txt p {
  width: 80%;
  margin: 0 auto;
}

.banner-bottom-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 560px;
  margin-top: 10px;
}

.banner-bottom-txt-list {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  width: 25%;
}

.banbotm-left {
  justify-content: flex-start;
}

.banbotm-right {
  justify-content: flex-end;
}

.banner-bottom-txt-list ul {
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 75%;
}

.banner-bottom-txt-list ul li h5 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 34px;
}

.banbotm-left ul li h5 {
  text-align: left;
}

.banbotm-right ul li h5 {
  text-align: right;
}

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

.banner-bottom-img.banbotm-mid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.banner-bottom-img.banbotm-mid img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.banner-curve {
  position: absolute;
  top: 78px;
  width: 150px;
  height: 390px;
  z-index: 1;
  pointer-events: none;
}

.banner-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.banner-curve-left {
  left: -60px;
}

.banner-curve-right {
  right: -60px;
}

/* Banner Sec Css Ends */

/*About Us Sec Css Starts */

section.about-sec .container {
  width: 80%;
  margin: 0 auto;
}

.about-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  height: 650px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

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

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

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

.about-txt-main {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 85%;
  width: 55%;
  background-color: var(--bk);
  padding: 30px;
  border-radius: 20px 0 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

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

/*About Us Sec Css Ends */

/* Setup Sec Css Starts */

section.setup-sec {
  height: 700px;
}

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

.setup-wrap {
  position: relative;
  padding: 50px 50px 0 50px;
}

.setup-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  width: 100%;
  background-color: var(--bk);
  border-radius: 30px;
  overflow: hidden;
}

.setup-wrap::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 26%;
  height: 290px;
  width: 20px;
  background-image: url("../images/setup-ex.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.setup-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 0 0 0 0;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.setup-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: var(--ct1);
  transition: ease-in;
  transition-duration: 0.5s;
}

.setup-card-main:hover {
  border-radius: 30px;
  padding: 40px 20px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.setup-card-main:hover::before {
  height: 100%;
}

.setup-card-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--ct1);
  border-radius: 100px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.setup-card-main:hover .setup-card-num {
  background-color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

.setup-card-num h5 {
  font-size: 14px;
  line-height: 1;
  font-family: "Poppins";
  font-weight: 600;
}

.setup-card-heading {
  position: relative;
}

.setup-card-txt {
  position: relative;
}

.setup-card-heading h4 {
  text-transform: uppercase;
}

/* Setup Sec Css Ends */

/* CTA Sec Css Starts */

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

.venue-cta-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000c7;
}

.venue-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.venue-cta-wrap p {
  width: 73%;
  margin: 0 auto;
}

/* CTA Sec Css Ends */

/* Earnings Sec Css Starts */

.earnings-sec {
  padding: 90px 0;
}

.earnings-wrap {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 0;
}

.earnings-txt-main {
  width: 50%;
  /* max-width: 560px; */
  background-color: #000;
  border-radius: 20px;
  padding: 34px 28px 32px 28px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
  margin: 110px 0 0 100px;
}

.earnings-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.earnings-heading h2 {
  font-size: 42px;
  line-height: 0.95;
}

.earnings-heading h3 {
  font-size: 22px;
  line-height: 1;
  color: var(--wt);
}

.earnings-txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
  width: 80%;
}

.earnings-txt p {
  font-size: 12px;
  line-height: 22px;
  opacity: 0.82;
}

.earnings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.earnings-list li {
  position: relative;
  padding-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: var(--wt);
  opacity: 0.92;
}

.earnings-list li::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  background-image: url("../images/arrow-right1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 10px;
  width: 10px;
}

.earnings-img-main {
  width: 40%;
  background-color: var(--wt);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgb(0 0 0 / 15%);
  position: absolute;
  top: 0;
  right: 9%;
  height: 530px;
}

.earnings-img {
  width: 100%;
  height: 100%;
}

.earnings-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.earnings-img-main:hover img {
  transform: scale(1.03);
}

/* Earnings Sec Css Ends */

/* Blog Sec Css Starts */

.blog-sec {
  padding: 50px 0 90px 0;
}

.blog-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 35px;
}

.blog-heading h2 {
  font-size: 50px;
  line-height: 0.95;
}

.blog-heading p {
  width: 74%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 22px;
  opacity: 0.8;
}

.blog-main-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 34px;
}

.blog-left-wrap {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-list-card {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 122px;
  background-color: #050505;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.45s ease;
}

.blog-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgb(0 0 0 / 18%);
}

.blog-list-img {
  width: 38%;
  min-height: 122px;
  overflow: hidden;
}

.blog-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.blog-list-card:hover .blog-list-img img {
  transform: scale(1.05);
}

.blog-list-txt {
  width: 55%;
  padding: 18px 12px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.blog-list-txt h5 {
  text-transform: uppercase;
  max-width: 235px;
}

.blog-bookmark {
  width: 7%;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 18px;
  color: var(--ct1);
  font-size: 11px;
  opacity: 0.8;
}

.blog-author-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 28px;
}

.blog-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-author-txt span,
.blog-author-txt small {
  font-family: "Montserrat", sans-serif;
  color: var(--wt);
  display: block;
}

.blog-author-txt span {
  font-size: 14px;
  line-height: 1;
  text-transform: lowercase;
  opacity: 0.95;
}

.blog-author-txt small {
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
}

.blog-feature-card {
  position: relative;
  width: 52%;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  transition: 0.45s ease;
}

.blog-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgb(0 0 0 / 22%);
}

.blog-feature-img {
  width: 100%;
  height: 100%;
}

.blog-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.65s ease;
}

.blog-feature-card:hover .blog-feature-img img {
  transform: scale(1.05);
}

.blog-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 58%) 0%,
    rgb(0 0 0 / 10%) 55%,
    rgb(0 0 0 / 0%) 100%
  );
  padding: 0 0 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 14px;
}

.blog-feature-overlay h5 {
  text-transform: uppercase;
  max-width: 245px;
}

/* Blog Sec Css Ends */

/* Partner Sec Css Starts */

.partner-sec {
  padding: 30px 0 95px 0;
}

.partner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.partner-img-main {
  width: 40%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #050505;
}

.partner-img {
  width: 100%;
  height: 100%;
}

.partner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-form-side {
  width: 60%;
  padding-top: 8px;
}

.partner-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.partner-heading p {
  width: 90%;
}

.partner-form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.partner-input {
  width: calc(50% - 7px);
}

.partner-input-full {
  width: 100%;
}

.partner-input input,
.partner-input textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 12%);
  background-color: transparent;
  color: var(--wt);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  transition: 0.4s ease;
  border-radius: 5px;
}

.partner-input input {
  height: 55px;
  padding: 0 20px;
}

.partner-input textarea {
  height: 125px;
  padding: 12px 14px;
  resize: none;
}

.partner-input input::placeholder,
.partner-input textarea::placeholder {
  color: rgb(255 255 255 / 55%);
}

.partner-input input:focus,
.partner-input textarea:focus {
  border-color: rgb(144 133 116 / 70%);
}

.partner-form-btn {
  margin-top: 18px;
}

/* Partner Sec Css Ends */

/* Footer Css Starts */

.footer-main {
  padding: 55px 0 18px 0;
  background-color: #00000054;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.footer-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.footer-left {
  width: 32%;
  padding: 0 35px 30px 0;
}

.footer-right {
  width: 68%;
  /* padding-left: 34px; */
  border-left: 1px solid rgb(255 255 255 / 12%);
}

.footer-logo {
  margin-bottom: 26px;
}

.footer-logo img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 150px;
  object-fit: contain;
}

.footer-links-wrap {
  display: flex;
  align-items: flex-start;
  gap: 44px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-links-col h5,
.footer-newsletter-box h5,
.footer-follow-box h5 {
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  /* margin-bottom: 16px; */
}

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

.footer-links-space {
  margin-top: 50px;
}

.footer-links li a {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 18px;
  color: var(--wt);
  text-transform: uppercase;
  transition: 0.35s ease;
  opacity: 0.85;
}

.footer-links li a:hover {
  color: var(--ct1);
}

.footer-newsletter-box {
  padding: 30px 0 30px 30px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-newsletter-box p {
  font-size: 14px;
  /* line-height: 22px; */
  /* opacity: 0.78; */
  /* max-width: 760px; */
  /* margin-bottom: 16px; */
}

.footer-newsletter {
  position: relative;
  width: 100%;
}

.footer-newsletter input {
  width: 100%;
  height: 60px;
  border: 1px solid rgb(255 255 255 / 16%);
  background-color: transparent;
  color: var(--wt);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  line-height: 16px;
  padding: 0 150px 0 20px;
  border-radius: 5px;
}

.footer-newsletter input::placeholder {
  color: rgb(255 255 255 / 55%);
  text-transform: uppercase;
}

.footer-newsletter button {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 52px;
  border: 0;
  background-color: var(--ct1);
  color: var(--wt);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  transition: 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 30px;
}

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

.footer-follow-box {
  padding: 30px 0 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 12%);
  color: var(--wt);
  font-size: 14px;
  transition: 0.35s ease;
}

.footer-social a:hover {
  background-color: var(--ct1);
  border-color: var(--ct1);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  font-size: 14px;
  line-height: 25px;
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

/* Footer Css Ends */
