@import url("https://fonts.googleapis.com/css2?family=Barlow: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&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

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

body {
  word-break: break-word;
  font-family: "Montserrat", sans-serif;

  color: #c2c2c2;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
  background-color: #121212;
}

/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-family: "Barlow", sans-serif;
}

h1 {
  font-size: 60px;
  line-height: 65px;
  text-transform: uppercase;
}

h2 {
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
}

h3 {
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
}

h4 {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 14px;
  line-height: 24px;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.flx {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bt {
  display: inline-block;
}

.pbtn {
  display: flex;
  justify-content: center;
  align-items: start;
  height: 48px;
  border: 0px;
  background: #fff;
  border-radius: 5px;
  padding: 1px;
  position: relative;
  filter: drop-shadow(2px 4px 6px #99999917);
}

.maxWidth {
  max-width: 1500px;
}

/* general btn css start  */

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

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

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 20px;
  padding: 0;
  list-style-type: none;
}

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

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

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

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

/*header css start */

.menuSec {
  padding: 10px 0;
  border-bottom: 1px solid #ffffff1a;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #fff;
  text-decoration: underline;
}
.menuSec ul li a:hover i {
    transform: rotate(180deg);
}

.menuSec ul li a i {
    margin: 0 0 0 10px;
    font-size: 18px;
    transition: .5s all;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

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

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  /* background: rgba(0, 0, 0, 0.1); */
  flex-direction: column;
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.pbtn span {
  background: #14245a;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  border-radius: 4px 0 0px 4px;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.2s;
}

.pbtn span.arro {
  background: #fff;
}

.pbtn span.arro img {
  width: 20px;
}

.pbtn:hover span.arro {
  background: #fff;
}

.pbtn:hover span {
  background: #000;
}

/*banner css end*/

/* Banner Start   */

section.main_slider {
  position: relative;
}

header {
  position: absolute;
  width: 100%;
  z-index: 12;
}

.banner_img {
  position: absolute;
  right: 0;
  top: 0;
  width: 59%;
  height: 100%;
}

img.ban-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.banner_text {
  position: relative;
  margin-top: 80px;
}

.banner_text h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 60px;
}

.banner_text h1 span {
  font-size: 48px;
  display: block;
}

.bn-suhb p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Barlow";
  padding-bottom: 12px;
  border-bottom: 1px solid #ffffff24;
  margin: 20px 0 20px;
}

.banner_text .bt {
  position: relative;
  margin-top: 10px;
  padding-right: 32px;
  border-right: 1px solid #ffffff1f;
}

section.main_slider .banslider {
  height: 100%;
}

section.main_slider .banslider .slick-slide {
  position: relative;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0px 0 5px;
  background: linear-gradient(3deg, #131416, transparent);
}

section.main_slider .banslider .slick-list {
  height: 100%;
}

section.main_slider .carousel-item .container-fluid {
  height: 100%;
  max-width: 1600px;
  padding: 0px;
}
/* Banner End  */

.baner-nav-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
}

.progress {
  flex: 1;
  height: 1px;
  background: #333;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  transition: width 0.4s ease;
}

.baner-nav {
  width: 90%;
  margin-top: 20px;
}

.baner-nav-items button {
  border: 0px;
  background: transparent;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ban-left-items {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ban-right-items {
  display: flex;
  gap: 10px;
  align-items: center;
}

.baner-nav-items span {
  font-size: 19px;
  font-family: "Barlow";
  text-transform: uppercase;
  font-weight: 700;
  line-height: 22px;
}

.baner-nav-items button img {
  display: inline-block;
  transition: 0.3s;
}

.baner-nav-items button:hover img {
  filter: drop-shadow(2px 1px 3px #fff);
  transform: scale(1.1);
}

/* About Start  */

.abtWrap {
  position: relative;
  width: 92%;
  padding: 0px 20px 60px 80px;
  margin: 0px auto;
}

.ab-right {
  position: relative;
}

.ab-right h2.text-light {
  font-weight: bold;
  padding-bottom: 5px;
}

.info-lbo h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}

.more-info {
  display: flex;
  gap: 50px;
  margin: 40px 0px 20px;
  position: relative;
}

.more-info:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 74%;
  right: 0px;
  left: -8px;
  margin: 0px auto;
  display: table;
  background: #ffffff3b;
  top: 3px;
}

.abSlider .slick-slide {
  margin: 0px 10px;
}

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

.abt-img {
  height: 600px;
  width: 100%;
  object-fit: fill;
  padding-right: 20px;
  margin-left: 20px;
  border-radius: 10px;
}

.abtWrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 84%;
  background: #14245a;
  border-radius: 10px;
  left: 0;
  bottom: 0;
}

.abSlider ul.slick-dots {
  display: flex;
  flex-direction: column;
  left: -20px;
  bottom: 0;
  gap: 7px;
}

.abSlider ul.slick-dots li button {
  display: none;
}

.abSlider ul.slick-dots li {
  margin: 0px;
  width: 8px;
  height: 8px;
  background: #ffffff54;
  opacity: 1;
  border-radius: 45px;
}

.abSlider ul.slick-dots li.slick-active {
  background: #fff;
}

/* About Start  */

span.suheading {
  text-transform: uppercase;
  font-weight: bold;
  color: #ffff;
  font-family: "Barlow";
  display: inline-block;
  padding-bottom: 14px;
}

.bussWrap {
  width: 85%;
  margin: 0px auto 0px;
}

.bussWrap h2 {
  font-size: 37px;
  line-height: 46px;
  font-weight: 700;
  padding-bottom: 32px;
}

.bussWrap h2 span {
  background: #fff;
  color: #14245a;
}

.bus-para {
  text-align: left;
  padding-top: 10px;
  border-top: 1px solid #ffffff21;
  width: 96%;
  margin: 0px auto;
}

.bus-para p {
  padding-top: 10px;
}

.businer {
  width: 90%;
  margin: 0px auto;
}

/* invest sec  */

.invest-text h2 {
  font-weight: bold;
  margin: 32px 0px 50px;
  border-bottom: 1px solid #ffffff1f;
  padding-bottom: 14px;
}

.invesWp {
  width: 82%;
  margin: 0px auto;
}

ul.invest {
  margin: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

ul.invest li {
  width: 100%;
  position: relative;
  text-align: center;
  justify-content: center;
  display: flex;
}

ul.invest li span {
  height: 80px;
  background: #ffffff1f;
  width: 1px;
}

/* invest sec  */

/* profit start  */

section.profit-sec .maxWidth {
  max-width: 1400px;
}

.pfcard {
  margin: 0px 14px;
  position: relative;
}

img.pf-cd-img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.pfcard-txt {
  background: #121212;
  padding: 40px 32px 48px;
  border-radius: 0px 0px 10px 10px;
}

.pfcard-txt h3 {
  font-size: 25px;
  line-height: 24px;
  padding-bottom: 10px;
}

.pfcard-txt .bt {
  padding-top: 10px;
}

/* profit start  */

/* milston start  */

section.miles-sec {
  margin-top: 100px;
}

.milestion {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0 80px;
}

.mils-img {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff29;
  border-radius: 55px;
}

.mils-text span.mileston-counter {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  font-family: "Barlow";
}

.milestion:before {
  position: absolute;
  content: "";
  right: 20px;
  height: 100%;
  width: 1px;
  background: #ffffff0f;
  top: 0;
}

section.profit-sec {
  position: relative;
}

section.profit-sec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 39%;
  bottom: 0;
  background: #14245a;
}

.milestion.endbox:before {
  display: none;
}

.milestion.seconlast {
  position: relative;
  left: 50px;
}

.milestion.second {
  left: 30px;
}
/* milston start  */

/* newslatter start  */

.newsWp {
  width: 90%;
  margin: 0px auto;
  padding: 50px;
  background: #1a1a1a;
  border-radius: 12px;
}

.news-imgsWp {
  position: relative;
  height: 100%;
  padding: 90px 20px;
  margin-right: 30px;
}

img.contact-img-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  left: 0;
}

.news-imgsWp h2 {
  color: #fff;
  position: relative;
  font-weight: 700;
  padding-bottom: 24px;
  margin-bottom: 22px;
}

.news-imgsWp h2 span {
  position: relative;
}

.news-imgsWp h2:before {
  position: absolute;
  content: "";
  width: 40%;
  bottom: 0;
  background: #ffffff7a;
  right: 130px;
  height: 1px;
}

.news-cont {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.con-from {
  position: relative;
  margin-bottom: 32px;
}

.con-from input {
  width: 100%;
  border: 0px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border-bottom: 1px solid #ffffff1f;
  padding: 5px 40px 5px 0px;
}

.con-from i {
  position: absolute;
  right: 6px;
  bottom: 6px;
  color: #fff;
}

/* newslatter start  */

/* defense start  */

.defenseWp {
  position: relative;
  padding: 140px 0;
}

img.defese-bg-img {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: -1;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* defense end */

/*Footer Sec Css Starts*/

footer {
  background: #101010;
  position: relative;
  overflow: hidden;
}

.main-ftr {
  position: relative;
  padding: 80px 20px;
  height: 100%;
}

.main-ftr ul li h3 {
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  text-transform: capitalize;
  font-weight: bold;
}

.main-ftr ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-ftr ul li p,
.main-ftr ul li p a {
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
}

.main-ftr ul li i {
  font-size: 20px;
  color: #fff;
}

.main-ftr:after {
  position: absolute;
  content: "";
  background: #ffffff52;
  width: 1px;
  height: 0px;
  bottom: 0;
  right: 10px;
  transition: 0.7s ease-in-out;
}

.middle-ftr:hover .main-ftr:after {
  height: 100%;
}

.middle-ftr:hover {
  border-color: #a3a58f;
}

.middle-ftr {
  border-bottom: 1px solid #ffffff29;
  background: #1a1a1a;
  transition: 0.7s ease-in-out;
  border-top: 1px solid #ffffff29;
  position: relative;
}

.main-ftr ul {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.ftr-req {
  text-align: center;
}

.ftr-req input {
  width: 70%;
  border: 1px solid #ffffffba;
  background: transparent;
  border-radius: 5px;
  color: #fff;
  height: 50px;
  padding: 0 20px;
  text-align: center;
  outline: none;
}

.ftr-req input::placeholder {
  color: #ffffff94;
  text-transform: capitalize;
  font-size: 14px;
}

.main-ftr:before {
  position: absolute;
  content: "";
  background: #ffffff52;
  width: 1px;
  height: 100%;
  top: 0;
  right: 10px;
}

.bottm-ftr ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 10px 0;
  width: 90%;
}

.bottm-ftr ul li ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottm-ftr p,
.bottm-ftr p a {
  margin-bottom: 0;
  color: #ffffff7d;
  text-align: center;
  transition: ease-in;
  transition-duration: 0.5s;
}

.bottm-ftr p a:hover {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.bottm-ftr ul li ul a i {
  color: #9d9fa4;
  font-size: 18px;
  width: 35px;
  height: 35px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  transition: 0.5s;
  animation: scale-up-center 1s cubic-bezier(0.39, 0.575, 0.565, 1) infinite
    both;
}

.bottm-ftr ul li ul a i:hover {
  background: #138eed;
  color: #fff;
}

.get-touchh {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: -60px;
  height: 125%;
  width: 13%;
}

.get-touchh h5 {
  writing-mode: tb;
  transform: rotate(180deg);
  color: #fff;
  font-size: 42px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: "Barlow";
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
}

.get-touchh:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  background: #14245a;
  border-radius: 10px 0px 10px 0px;
}

.ftr-req h5 a {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

.ftr-req.pade-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  height: 100%;
}

ul.botm-list {
  width: 200px;
}

ul.botm-list a {
  color: #fff;
}

.main-ftr ul li ul.phon-list li {
  display: block;
}

.copy {
  background-color: #1a1a1a;
  padding: 20px 0;
}

.middle-ftr .container {
  margin-left: 50px;
}

/*Footer Sec Css Ends*/
