@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: #b80000;
  --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;
}

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

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

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

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

.heading p {
  width: 75%;
  margin: 0 auto;
}

/***** 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: "jersey";
  src: url("../fonts/jersey.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 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: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 30px;
  border-radius: 100px;
  overflow: hidden;
  background-color: var(--ct1);
  border: 2px solid transparent;
  transition-duration: 0.5s;
}

.theme1:hover {
  border: 2px solid var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

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

.theme1:hover::before {
  height: 110%;
  width: 110%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 16px;
  line-height: 1;
  color: var(--wt);
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
}

/* 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: "jersey";
  font-size: 71px;
  line-height: 76px;
  color: var(--wt);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

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

h3 {
  font-family: "jersey";
  font-size: 42px;
  line-height: 47px;
  color: var(--bk);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

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

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

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

p {
  font-family: "Poppins", serif;
  font-size: 14px;
  line-height: 25px;
  color: var(--bk);
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  border-bottom: 1px solid #ffffff33;
}
.menuSec {
  padding: 0px 0;
}

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

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins";
  color: var(--bk);
  font-weight: 400;
}

.menu-box ul li a:hover,
.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 Css Ends */

/*Banner Sec Css Starts */

section.banner-sec {
  position: relative;
  height: 120vh;
}

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

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

section.banner-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0000003b;
}

section.banner-sec .container {
  position: relative;
  z-index: 1;
}

.banner-wrap {
  margin: 50px 0 0 0;
}

.banner-txt-main {
  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;
  gap: 10px;
}

.banner-txt h5 {
  font-family: "Poppins";
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  color: var(--wt);
  text-transform: capitalize;
}

.banner-txt p {
  color: var(--wt);
  width: 80%;
  margin: 0 auto;
}

.banner-testi-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
}

.banner_testi .slick-slide {
  margin: 0 5px;
  opacity: 1;
}

.banner-testi-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ffffff45;
}

.banner-testi-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff3b;
  filter: blur(10px);
  backdrop-filter: blur(10px);
}

.banner-testi-card-headimg,
.banner-testi-card-txt {
  position: relative;
  z-index: 9;
}

.banner-testi-card-headimg h4 {
  font-size: 30px;
  line-height: 35px;
  color: var(--wt);
}

.banner-testi-card-txt p {
  color: var(--wt);
}

.banner_testi .slick-prev,
.banner_testi .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid var(--wt);
  border-radius: 100px;
  overflow: hidden;
  top: 20%;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner_testi .slick-prev:hover,
.banner_testi .slick-next:hover {
  background-color: var(--wt);
  border: 1px solid transparent;
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner_testi .slick-prev {
  left: unset;
  right: 17%;
}

.banner_testi .slick-next {
  right: 5%;
}

.banner_testi .slick-prev:before {
  content: "\f060";
  font-family: "Font Awesome 7 Free";
  color: var(--wt);
  font-weight: 900;
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner_testi .slick-next:before {
  content: "\f061";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--wt);
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner_testi .slick-prev:hover::before,
.banner_testi .slick-next:hover::before {
  color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Banner Sec Css Ends */

/* Pre Sec Css Starts */

.pre-heading h2 {
  width: 100%;
  max-width: 1225px;
  margin: 0 auto;
  font-size: 50px;
  line-height: 55px;
  color: var(--bk);
}

.pre-heading p {
  width: 100%;
  max-width: 1065px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #8b8b8b;
  opacity: 1;
}

.pre-cards-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
}

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

.pre-card-img {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
}

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

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

.pre-card-txt h3 {
  font-size: 35px;
  line-height: 1;
}

/* Pre Sec Css Ends */

/* Foundation Sec Css Starts */

section.foundation-sec {
  padding: 10px 0 70px;
  background-color: var(--wt);
}

.foundation-top-row {
  margin-bottom: 34px;
}

.foundation-bottom-row {
  margin-bottom: 30px;
}

.foundation-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
}

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

.foundation-img-top {
  height: 345px;
}

.foundation-img-bottom {
  width: 88%;
  height: 495px;
  margin-left: auto;
  background-color: #d7d4d1;
}

.foundation-content {
  width: 100%;
}

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

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

.foundation-content-top p {
  max-width: 98%;
}

.foundation-content-bottom h2 {
  font-size: 42px;
}

.foundation-para-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 97%;
}

.foundation-awards h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
}

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

.foundation-awards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 52px;
  row-gap: 0;
}

.foundation-awards-list ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foundation-awards-list ul li {
  position: relative;
  padding: 0 0 0 30px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.foundation-awards-list ul li::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-image: url("../images/check1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/* Foundation Sec Css Ends */

/* Invest Sec Css Starts */

section.invest-sec {
  position: relative;
  padding: 84px 0 86px;
  background-image: url("../images/inv-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
}

.invest-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

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

.invest-content h2 {
  font-size: 58px;
  line-height: 65px;
  color: var(--wt);
}

.invest-content > p {
  color: var(--wt);
}

.invest-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.invest-point {
  position: relative;
  padding-left: 34px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.invest-point::before {
  font-weight: 900;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-image: url(../images/check1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(45deg) brightness(104%) contrast(104%);
}

.invest-point h6 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--wt);
  font-weight: 400;
}

.invest-point p {
  color: var(--wt);
  font-weight: 400;
}

.invest-bottom-txt p {
  color: var(--wt);
}

.invest-side-img {
  position: absolute;
  top: -86px;
  right: -132px;
  width: 565px;
  z-index: 1;
}

.invest-side-img img {
  width: 100%;
  display: block;
}

/* Invest Sec Css Ends */

/* Offer Sec Css Starts */

.offer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.offer-head {
  padding: 0 6px 4px 6px;
}

.offer-head h2 {
  font-size: 46px;
  line-height: 0.95;
  margin: 0 0 10px;
}

.offer-head p {
  max-width: 92%;
  font-size: 11px;
  line-height: 1.72;
  color: #8f8f8f;
  opacity: 1;
}

.offer-card {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 15px;
  overflow: hidden;
  background-color: transparent;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background-color 0.45s ease;
}

.offer-info-card {
  min-height: 92px;
  padding: 15px 15px 13px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 6px;
}

.offer-info-card h6 {
  font-family: "jersey";
  font-size: 30px;
  line-height: 1;
  color: var(--bk);
  text-transform: uppercase;
  margin: 0;
}

.offer-image-card {
  position: relative;
  background-color: #000;
}

.offer-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

.offer-image-card-top {
  height: 465px;
}

.offer-image-card-large {
  height: 495px;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 0, 0, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
  background-color: #f8f8f8;
}

.offer-image-card:hover {
  background-color: #000;
}

.offer-image-card:hover img {
  transform: scale(1.05);
}

.offer-info-card:hover h6 {
  color: var(--ct1);
}

.offer-info-card:hover p {
  color: #666666;
}

/* Offer Sec Css Ends */

/* Testimonials Sec Css Starts */

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

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

.testimonials-heading {
  margin: 0 0 40px 0;
}

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

.testimonials-card-comma {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  gap: 20px;
}

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

.testimonials-card-star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.testimonials-card-star ul li i {
  color: #f9ae0e;
  font-size: 20px;
}

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

.testimonials-card-txt h5 {
  font-family: "Poppins";
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  font-weight: 500;
}

.testimonials-card-txt p {
  width: 90%;
}

.testimonials_slider .slick-slide {
  margin: 0;
}

.testimonials_slider .slick-prev,
.testimonials_slider .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: 1px solid var(--ct1);
  border-radius: 100px;
  overflow: hidden;
  top: unset;
  bottom: -5%;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonials_slider .slick-prev:hover,
.testimonials_slider .slick-next:hover {
  background-color: var(--ct1);
  border: 1px solid transparent;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonials_slider .slick-prev {
  left: unset;
  right: 12%;
}

.testimonials_slider .slick-next {
  right: 5%;
}

.testimonials_slider .slick-prev:before {
  content: "\f060";
  font-family: "Font Awesome 7 Free";
  color: var(--ct1);
  font-weight: 900;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonials_slider .slick-next:before {
  content: "\f061";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--ct1);
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonials_slider .slick-prev:hover::before,
.testimonials_slider .slick-next:hover::before {
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Testimonials Sec Css Ends */

/* Contact Sec Css Starts */

section.contact-sec {
  position: relative;
  z-index: 3;
  padding: 80px 0 0 0;
  margin: 0 0 -250px 0;
}

.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);
  margin-bottom: -118px;
}

.contact-form-side {
  padding: 40px 32px 34px;
  background-color: var(--wt);
}

.contact-form-head {
  margin: 0 0 22px;
}

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

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

.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: 96px;
  padding-top: 18px;
  resize: none;
}

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

.contact-btn {
  margin: 24px 0 0;
}

.contact-info-side {
  background-color: var(--ct1);
  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;
}

.contact-info-head {
  margin: 0 0 22px;
}

.contact-info-head h2 {
  font-size: 56px;
  line-height: 0.96;
  color: var(--wt);
  margin: 0 0 12px;
}

.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%;
  margin: 0 0 18px;
}

.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(--ct1);
}

.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 Css Starts */

.site-footer {
  background: linear-gradient(180deg, #201a1d 0%, #1a1619 100%);
  padding: 350px 0 22px;
  position: relative;
  overflow: hidden;
}

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

.footer-contact-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 28px;
}

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

.footer-contact-icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon i {
  color: var(--wt);
  font-size: 16px;
}

.footer-contact-txt a {
  font-size: 14px;
  line-height: 1.4;
  color: var(--wt);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-logo img {
  max-width: 300px;
  object-fit: contain;
}

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

.footer-social a {
  height: 48px;
  width: 48px;
  min-width: 48px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wt);
  font-size: 22px;
  transition: ease-in;
  transition-duration: 0.5s;
}

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

.footer-middle {
  margin: 0 0 26px;
}

.footer-middle p {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  text-align: center;
  width: 100%;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  font-size: 13px;
  line-height: 1.5;
}

/* Footer Css Ends */
