@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=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&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: #131212;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  position: relative;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-family: "Barlow", sans-serif;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 72px;
  line-height: 80px;
  font-weight: bold;
}

h2 {
  font-size: 55px;
  line-height: 65px;
  font-weight: bold;
}

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

h4 {
  font-size: 24px;
  line-height: 32px;
}

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

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

p {
  color: #131212;
  opacity: 70%;
}

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

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

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

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 80px;
}

.margBottom {
  margin-bottom: 80px;
}

.bt {
  display: inline-block;
}

.pbtn {
  background: #ffffff;
  padding: 6px 10px 6px 20px;
  border-radius: 50px;
  border: 1px solid #999;
  color: #0a0a0a;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: fit-content;
  text-transform: uppercase;
}

.pbtn span {
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
}

.pbtn span img {
  width: 18px;
  height: 9px;
}

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

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 29px;
  padding-left: 40px;
}

.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: #000000;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.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: #051c2c;
  text-decoration: underline;
}

.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-caption {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  left: 0;
  right: 0;
  background: #051c2c;
  top: 0;
}

/*banner css end*/

.container {
  max-width: 1440px;
}

/* services start  */

.ssWp {
  margin: 0px auto;
  position: relative;
  width: 92%;
}

.s-card {
  position: relative;
  padding: 20px;
  background: #efefef;
  transition: 0.2s;
  transform: scale(0.9);
}

img.s-cd-img {
  width: 100%;
  object-fit: cover;
  height: 350px;
  margin-bottom: 14px;
}

.s-card-txt p {
  padding-top: 10px;
}

.s-card h4 {
  font-weight: bold;
  color: #292929;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.s-card h4:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #0000003b;
}

ul.s-listing {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

ul.s-listing li span {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  font-size: 13px;
}

.ssSlider .slick-slide {
  opacity: 1;
  margin: 20px 10px;
}

.ssSlider .slick-current .s-card {
  transform: unset;
}

ul.s-listing li img {
  width: auto;
}

section.absec {
  position: relative;
  overflow: hidden;
  background: #051c2c;
}

.abLeft {
  position: relative;
}

img.ab-igm1 {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

section.absec .container {
  max-width: 1600px;
  padding: 0;
}

.abright {
  position: relative;
  padding: 40px 50px 40px 20px;
}

.ab-txt {
  position: relative;
}

img.talk-img {
  position: absolute;
  right: -10px;
  top: -10px;
}

img.abelips {
  position: absolute;
  right: -90px;
  bottom: -230px;
  height: 80%;
  width: 46%;
  object-fit: fill;
}

.ablttxt {
  width: 230px;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  text-align: center;
  padding: 30px 20px 24px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 30px 0px 0px 0px;
}

.ablttxt h6 {
  font-weight: bold;
  margin: 20px 0px 10px;
  color: #fff;
}

.ablttxt p {
  color: #fff;
  line-height: 23px;
}
/* services end  */

/* plan start  */

section.pln-sec .container {
  max-width: 1600px;
  padding: 0;
  position: relative;
}

.plantxt {
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  padding: 50px 40px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.planWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  margin: 0px auto;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img.flexsible-bg {
  height: 570px;
  width: 100%;
  object-fit: cover;
}

.plantxt p {
  opacity: 80%;
}

.planWrap .row {
  height: 100%;
}

.pbtn:hover {
  background: #000;
}

/* plan end  */

/* why choose us */

.wcu_left_txt h2 {
  color: #292929;
  line-height: 60px;
  padding-bottom: 10px;
}

.wcu_left_txt p {
  margin-bottom: 10px;
}

.wcu_left {
  position: relative;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  width: 100%;
  height: 100%;
}

.wcu_left_txt {
  position: absolute;
  background-color: #ffffff;
  padding: 30px 30px 36px;
  top: 76px;
  width: 600px;
  right: 80px;
  filter: drop-shadow(2px 4px 16px #99999957);
}

.wcu_right {
  background-color: #6c6c63;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.wcu_right img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.wcubtm_left img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}

.wcubtm_right {
  padding: 70px 40px 0px 0px;
}

.wcubtm_right ul li::before {
  position: absolute;
  width: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}

.wcubtm_right ul.s-listing li span {
  font-size: 15px;
  line-height: 33px;
}

/* why choose us */

/* serve section start  */

.ban-right-items {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-right: 12px;
}

.ban-right-items button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  transition: 0.2s;
  border: 0;
}

.sstop {
  margin-bottom: 20px;
}

.ban-right-items button img {
  width: 16px;
  object-fit: contain;
  transition: 0.2s;
}

.ban-right-items button:hover {
  background: #000;
  border-color: transparent;
}

.sstopleft {
  margin-left: 10px;
}

.ssSlider .slick-slide {
  opacity: 1;
  margin: 0px 10px;
}

.ss-card {
  position: relative;
  background: #02010e;
  transition: 0.2s;
  border-radius: 14px;
}

img.ss-card-img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: inline-block;
  transition: 0.2s;
}

a.serve-cd-link:hover {
  transform: rotate(0deg) scale(1.1);
}

.serve-cd-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: #000;
  transition: 0.2s;
  border: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  transform: rotate(-25deg);
}

.serve-cd-link img {
  width: auto;
}

.serve-cd {
  position: relative;
}

img.serve-card-img {
  height: 490px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.servSlider .slick-slide {
  opacity: 1;
  margin: 0 10px;
}

.ss-card-txt {
  text-align: center;
  position: absolute;
  bottom: 17px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0px auto;
  display: table;
}

.ss-card-txt a {
  color: #000000;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  font-family: "Barlow";
  text-transform: uppercase;
  padding: 18px 20px;
  width: 100%;
  display: block;
  border-radius: 5px;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  transition: 0.2s;
}

.ss-card-txt a:hover:before {
  width: 100%;
  color: #fff;
}

.ss-card-txt a span {
  position: relative;
}

.ss-card-txt a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  border-radius: 5px;
  background: #000;
  transition: 0.3s;
  left: 0;
  bottom: 0;
}

.ss-card-txt a:hover span {
  color: #fff;
}

section.ss-sec .container {
  max-width: 1540px;
}

/* serve section end  */

/* blogs start  */

section.blog .container {
  max-width: 1530px;
  position: relative;
}

section.blog .heading {
  margin-left: 10px;
  margin-bottom: 24px;
}

section.blog .slick-slide {
  opacity: 1;
  margin: 0 12px;
}

.blog-img {
  position: relative;
}

img.resource-img1 {
  width: 100%;
  object-fit: cover;
  height: 360px;
}

.blog-detail {
  padding: 24px 20px 22px;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  box-shadow: 0 0 4px #80808073;
  width: 340px;
  height: auto;
  margin: -110px auto 0;
  color: #ffffff9e;
  z-index: 12;
  position: relative;
  left: -32px;
  transition: 0.3s;
  opacity: 0;
}

h3.blog-title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 24px;
  padding-bottom: 10px;
}

.cons p {
  margin: 0;
  color: #000;
  opacity: 1;
}

.blog-detail .cons i {
  border: solid 1px #000000;
  border-radius: 20px;
  color: #000000;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.blog ul.slick-dots {
  display: flex;
  justify-content: flex-end;
  bottom: unset;
  top: -11%;
  right: 10px;
  display: flex;
  gap: 14px;
}

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

section.blog ul.slick-dots li {
  width: 6px;
  height: 6px;
  background: #d0d0d0;
  border-radius: 45px;
  opacity: 1;
}

section.blog ul.slick-dots li.slick-active {
  outline: 1px solid #000;
  outline-offset: 8px;
  background: #000;
}

section.blog .slick-current .blog-detail {
  opacity: 1;
}

/* blogs end  */

/* Footer sectrion css */

footer {
  background: #051c2c;
  overflow: hidden;
}
.footerSec {
  position: relative;
  padding: 60px 50px 0px;
}

.footerSec p {
  color: #fff;
  opacity: 70%;
}

footer ul.social {
  gap: 6px;
}

footer ul.social li a i {
  width: 35px;
  height: 35px;
  border-radius: 45px;
  color: #000;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
  border: 1px solid transparent;
  opacity: 1;
}

footer ul.social li a i:hover {
  background: transparent;
  transform: rotate(360deg) scale(1.1);
  border: 1px solid #fff;
  color: #fff;
}

footer ul li a {
  color: #fff;
  opacity: 0.5;
  transition: 0.3s;
  font-weight: 400;
  line-height: 35px;
}

footer ul.social li a {
  color: #fff;
  opacity: 1;
  transition: 0.6s;
}

footer ul.social li a:hover {
  opacity: 1;
  color: #fff;
  color: #000;
}

.footerSec .footer-btm .row {
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 40px;
  position: relative;
}

.footerSec .footer-btm .row p {
  opacity: 49%;
  font-weight: 400;
  font-size: 14px;
  font-weight: 500;
}

.footerSec .footer-btm .row:before {
  position: absolute;
  content: "";
  width: 124%;
  height: 1px;
  top: 0;
  right: -148px;
  margin: 0px auto;
  background: #fff;
  opacity: 0.2;
}

.news-letter ul li a {
  gap: 20px;
  line-height: 28px;
  margin: 14px 0;
  opacity: 0.6;
}

.news-letter ul li a:hover {
  transform: translate(3px, 0px);
}

footer ul li a:hover {
  opacity: 1;
  color: #fff !important;
}

footer ul.social li a:hover {
  text-decoration: unset !important;
}

h5.subscribe {
  text-transform: uppercase;
  margin: 14px 0 10px;
  font-size: 16px;
}

.ft-header {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 25px;
  font-weight: bold;
}

.footer-about h4.text-light.ft-header {
  text-transform: unset;
}

.ft-header:before {
  position: absolute;
  content: "";
  width: 65%;
  height: 1px;
  bottom: 0;
  background: #ffffff21;
}

.foot-products {
  position: relative;
  width: 70%;
}

.foot-products ul {
  position: relative;
  margin: 0px;
}

footer .news-letter {
  position: relative;
  left: 50px;
}

footer .foot-quick-links {
  position: relative;
  left: 30px;
}

.foot-products .ft-header:before {
  width: 80%;
}

.ft-two-cols {
  display: flex;
  justify-content: space-between;
}

.foot-useful-link ul li a {
  font-weight: 400;
}

.foot-useful-link {
  position: relative;
}

.blogsSlider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.copyrite-txt {
  z-index: 1;
  padding: 32px 50px;
  margin-top: 35px;
  border-top: 1px solid #bababa36;
}

.footer-copyright-button a {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 90px;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  transition: 0.2s;
}

.footer-copyright-button i {
  font-size: 22px;
}

.footer-copyright-button a:hover {
  background: #fff;
}

.footer-copyright-button {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999;
}

.copyrite-txt p {
  color: #fff;
  opacity: 50%;
  font-weight: 400;
}

.pbtn:focus {
  color: #000 !important;
}

/* Footer section end */
.lang-dropdown {
  width: 90px;
  position: absolute;
  right: 252px;
  top: 26px;
}

.selected {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.selected img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

/* Dropdown */
.menuSec ul.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 5px 0;
  margin: 0;
  display: none;
  z-index: 100;
}

.menuSec ul.dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px;
  cursor: pointer;
  font-size: 13px;
}

.dropdown-menu li img {
  width: 20px;
  height: 14px;
}

.dropdown-menu li:hover {
  background: #f2f2f2;
}

/* Active */
.lang-dropdown.active .dropdown-menu {
  display: block;
  padding: 10px;
}

/* bannner css start  */

header {
  position: absolute;
  top: 0;
  z-index: 12;
  width: 100%;
  left: 0;
  padding-top: 21px;
}

header .container {
  max-width: 1530px;
}

header a.pbtn {
  width: 160px;
  justify-content: space-between;
  padding-left: 27px;
}

.inerHeader {
  background: #fff;
  padding: 8px;
  border-radius: 85px;
  position: relative;
}

/* banner start  */

section.main_slider {
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 20px 20px;
}

.banner_text {
  padding: 60px 30px 0px 40px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img.banerLeft-img {
  height: 840px;
  width: 100%;
  object-fit: cover;
  border-radius: 0px 0px 20px 0px;
}

.banner_text h1 {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid #ffffff26;
  display: inline-block;
}

.banner_img {
  position: relative;
}

.banbox {
  width: 80%;
  position: absolute;
  bottom: 40px;
  background: linear-gradient(to right, #aeb9bd, #9fb1b5, #90a8ad);
  right: 40px;
  border-radius: 5px;
  overflow: hidden;
  padding: 14px 16px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banbox .row {
  height: 100%;
}

.banbox .bus-bx {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banbox h6 {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
}

.bxu-bx a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.bxu-bx a span {
  text-transform: uppercase;
  color: #000;
  text-decoration: underline;
  display: block;
}

.bxu-bx a .arsn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 35px;
  transition: 0.3s;
}

.bxu-bx a .arsn img {
  width: 14px;
  filter: brightness(0);
}

.consult-bx {
  height: 100%;
  background: #051c2c;
  padding: 20px 14px;
  border-radius: 5px;
}

.consult-bx h6 {
  color: #fff;
}

.consult-bx .consult-i {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2px;
  position: relative;
  align-items: flex-start;
}

.consult-imgs {
  height: 100%;
  object-fit: cover;
}

img.cuns-img {
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

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

.homeslide img {
  width: auto;
}

.homeslide span {
  text-transform: uppercase;
  font-family: "Barlow";
  font-weight: bold;
}

.baneSSWp {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 30px;
}

.baneSSWp .slick-list {
  overflow: visible;
  padding-right: 140px;
}

.baneSSWp .slick-list .slick-slide {
  opacity: 1;
  margin: 0 10px;
}

img.banabelips {
  position: absolute;
  top: 96px;
  height: 60%;
  width: 57%;
  object-fit: fill;
  left: -310px;
}

/* banner end  */

.bxu-bx a:hover div {
  transform: translate(10px, 0px);
}
