@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin-Regular.eot");
  src: url("../fonts/Cabin-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Cabin-Regular.woff2") format("woff2"),
    url("../fonts/Cabin-Regular.woff") format("woff"),
    url("../fonts/Cabin-Regular.ttf") format("truetype"),
    url("../fonts/Cabin-Regular.svg#Cabin-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin-Italic.eot");
  src: url("../fonts/Cabin-Italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Cabin-Italic.woff2") format("woff2"),
    url("../fonts/Cabin-Italic.woff") format("woff"),
    url("../fonts/Cabin-Italic.ttf") format("truetype"),
    url("../fonts/Cabin-Italic.svg#Cabin-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Play";
  src: url("../fonts/Play-Regular.eot");
  src: url("../fonts/Play-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Play-Regular.woff2") format("woff2"),
    url("../fonts/Play-Regular.woff") format("woff"),
    url("../fonts/Play-Regular.ttf") format("truetype"),
    url("../fonts/Play-Regular.svg#Play-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Play";
  src: url("../fonts/Play-Bold.eot");
  src: url("../fonts/Play-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Play-Bold.woff2") format("woff2"),
    url("../fonts/Play-Bold.woff") format("woff"),
    url("../fonts/Play-Bold.ttf") format("truetype"),
    url("../fonts/Play-Bold.svg#Play-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Cabin";
}
:root {
  --white: #ffffff;
  --background-one: #f6f6f2;
  --blue: #214b6c;
  --dark-blue: #0e273a;
  --color-red: #ce242e;
  --dark-red: #ba0d17;
  --black: #000000;

  /* fonts */
  --play-font: "Play" !important;
}

a {
  text-decoration: none !important;
}
img {
  width: 100%;
}
.blue-button {
  border-radius: 50px;
  line-height: 14px;
  background-color: var(--blue);
  color: var(--white);
  padding: 15px 37px;
  transition: 0.5s;
}
.blue-button:hover {
  background: var(--dark-blue);
}
.red-button {
  display: inline-block;
  border-radius: 50px;
  line-height: 16px;
  background-color: var(--color-red);
  color: var(--white);
  padding: 15px 37px;
  font-weight: 500;
  transition: 0.5s;
}
.red-button:hover {
  background: var(--dark-red);
}
.border-button {
  display: inline-block;
  border-radius: 50px;
  line-height: 16px;
  background-color: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 15px 37px;
  font-weight: 500;
  transition: 0.5s;
}
.border-button:hover {
  background: var(--blue);
  color: var(--white);
}
/* header start  */
.header-sec{
  position: fixed;
  width: 100%;
  z-index: 9;
}

.navbar-brand {
  width: 12.5rem;
}
.header-sec .navbar {
  height: 6.25rem;
}
.header-sec .nav-item a {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--blue) !important;
  white-space: inherit;
  padding: 10px 16px;
}
.header-sec .navbar-expand-lg .navbar-nav {
  gap: 1.2rem;
}
.header-sec .dropdown-menu {
  width: 400px;
  margin-top: 27px;
  padding: 0;
  border-radius: 0;
  position: relative;
  z-index: 9;
}
.header-sec .dropdown-menu::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: -35px;
  background-color: transparent;
  position: absolute;
  z-index: -9;
}
.header-sec .dropdown-item:hover {
  color: var(--white) !important;
  background: var(--color-red);
}
.navbar-expand-lg .navbar-nav .nav-link{
  position: relative;
}
.navbar-expand-lg .navbar-nav .nav-link::before{
  content: "";
  bottom: -28px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 50px;
  transition: 0.3s;
  position: absolute;
  background-color: var(--dark-red);
}
.navbar-expand-lg .navbar-nav .nav-link:hover::before{
  content: "";
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 50px;
  position: absolute;
  background-color: var(--dark-red);
}
.nav-item.active .nav-link{
  position: relative;
}
.nav-item.active .nav-link::after {
  content: "";
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 50px;
  transition: 0.3s;
  position: absolute;
  background-color: var(--dark-red);
}
/* header end  */
/* first section start */
.first-sec {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}
.banner-content-text {
  display: flex;
  flex-direction: column;
  max-width: 75%;
  width: 100%;
  gap: 10px;
  margin-bottom: 20px;
}
.banner-content-text h1 {
  font-size: 3.3rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--play-font)
}
.banner-content-text p {
  font-size: 2rem;
  color: var(--white);
  font-weight: normal;
  font-weight: 400;
}
/* first section end */
/* secound section start */
.secound-sec {
  position: relative;
  position: relative;
  padding: 100px 0 500px 0;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
}
.secound-sec::after{
    position: absolute;
    left: 0;
    top: -70px;
    z-index: 0;
    content: '';
    width: 43%;
    height: 100%;
    background: url(../images/img2.png) left top no-repeat;
    background-size: 100%;
}
.secound-sec-bg {
  position: absolute;
  top: -47px;
  left: 0;
  width: 100%;
}
.secound-sec-bg img {
  width: 100%;
}
.secound-sec-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.secound-sec-row p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--blue);
}
.secound-sec-right p:nth-of-type(2) {
  margin-bottom: 0;
}
.secound-sec-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
  position: relative;
  z-index: 3;
  margin-bottom: 100px;
}
.secound-sec-right {
  width: 50%;
}
.learn-more-button {
  margin-top: 2rem;
}
.secound-sec-left h2 {
  color: white;
  font-size: 2.6rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--play-font);
}
.sec-line {
  width: 130px;
  height: 1px;
  background-color: var(--blue);
}
/* secound section end */
/* third section start */
.third-sec {
  background-color: var(--background-one);
  padding: 5rem 0;
}
.third-sec-wrapper {
  display: flex;
  gap: 100px;
}
.third-wrapper-left {
  width: 50%;
}
.third-wrapper-right {
  width: 50%;
}
.third-heading h3 {
  font-size: 3rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--play-font);
}
.third-line {
  width: 200px;
  height: 1px;
  background-color: var(--color-red);
}
.third-heading {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}
.third-sec-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  margin-top: 2rem;
  transition: 0.5s;
}
.third-sec-card-top-img {
  width: 86px;
  border-radius: 50%;
  overflow: hidden;
}
.third-sec-card-top-name h4 {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-red);
}
.third-sec-card-top-name h5 {
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
}
.third-sec-card-top {
  display: flex;
  align-items: center;
  gap: 22px;
}
.third-sec-card-top-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.third-sec-card-btm p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--blue);
}
.third-sec-card-btm {
  margin-top: 1.3rem;
}
.third-sec-card-btm a {
  font-size: 15px;
  color: var(--color-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.third-sec-card-btm a img {
  width: 17px;
}

/* fourth section start */
.fourth-sec {
  padding: 5rem 0;
  background-color: var(--dark-blue);
  overflow: hidden;
}
.heading h2 {
  font-size: 3rem;
  color: var(--white);
  font-family: var(--play-font);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.heading h2::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 100%;
  top: 18px;
  left: 0;
  border-bottom: 1px solid rgb(255 255 255 / 78%);
}
/* .fourth-sec .owl-carousel{
    width: 120vw;
} */
.fourth-sec-slider {
  margin-top: 3rem;
  position: relative;
}
.fourth-sec-slider .owl-item {
  background-color: white;
}
.fourth-sec-slider .owl-carousel{
  width: 180vw;
  margin-left: -40%;
}
/* .fourth-sec-slider .owl-carousel .owl-stage-outer{
 overflow:visible;
} */
.slider-img {
  height: 450px;
  width: 100%;
}
.slider-img img {
  height: 100%;
  object-fit: cover;
}
.slide-content h3 {
  font-size: 2rem;
  font-family: var(--play-font);
  font-weight: 700;
  color: var(--blue);
}
.slide-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
}
.slide-content {
  display: flex;
  align-items: center;
  position: relative;
  height: 170px;
  background-color: white;
  padding-top: 25px;
}
.slider-right-err {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: brightness(0) invert(1);
  width: 90px;
}
.slide-content-text {
  width: 100%;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-right-err a img {
  width: 25px !important;
}
.icon-with-circle {
  width: 80px;
  height: 81px;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  top: -45px;
  left: 20px;
  padding: 17px;
  border: 3px solid var(--white);
}
.icon-with-circle img {
  width: 1005;
}
.fourth-sec .owl-nav{
  margin: 0 auto;
  margin-top: 60px;
  width: 200px;
  height: auto;
}

.fourth-sec-slider .owl-nav button {
  border: 2px solid #ffffffb3 !important;
}
.fourth-sec-slider .owl-nav button:hover {
  border: 2px solid var(--white) !important;
}
.fourth-sec-slider .owl-nav i {
  padding: 20px;
  color: var(--white);
}
.fourth-sec-slider .owl-nav {
  text-align: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
/* fourth section end */
/* fifth section start */
.fifth-sec {
  padding: 5rem 0;
  background-color: var(--background-one);
}
.heading-cration {
  text-align: center;
}
.heading-cration h2 {
  font-size: 3rem;
  color: var(--blue);
  font-family: var(--play-font);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 17px;
  border-bottom: 2px solid var(--blue);
}
.our-value-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.our-value-left {
  width: 50%;
}
.our-value-right {
  width: 50%;
}
.our-value-right-card-content {
  margin-top: 20px;
}
.our-value-right-card {
  padding: 20px;
  background-color: var(--white);
}
.our-value-right-card-img {
  width: 100%;
}
.our-value-right-card-content h3 {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--play-font);
  color: var(--color-red);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.our-value-right-card-content h4 {
  font-size: 16px;
  margin-bottom: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  font-family: "Cabin" !important;
}
.our-value-right-card-content a {
  background-color: var(--blue);
}
#valueTabs {
  position: relative;
  border: none;
}
#valueTabs::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 17px;
  width: 100%;
  height: 87%;
  border-left: 1px solid var(--blue);
}
.our-value-left-list li {
  font-size: 16px;
  font-family: var(--play-font);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--blue);
}
.fifth-sec .nav-tabs {
  list-style-type: none; /* Remove default bullets */
  padding: 0;
}

.fifth-sec .nav-tabs li {
  position: relative; /* Needed for positioning the custom bullet */
  padding-left: 30px; /* Space for the custom bullet */
  display: flex;
  align-items: center;
  width: 100%;
}

.fifth-sec .nav-tabs li a::before {
  content: ""; /* Required for custom bullet */
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; /* Size of the bullet */
  height: 12px; /* Size of the bullet */
  background-color: var(--blue); /* Color of the bullet */
  border-radius: 50%; /* Makes it a circle */
  border: 1px dashed transparent;
  background: url(../images/ellipse.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.fifth-sec .nav-item {
  margin-bottom: 20px;
}
.nav-tabs .nav-link.active {
  background-color: initial;
  color: var(--color-red) !important;
  font-size: 17px !important;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
}
.our-value-wrapper .row {
  justify-content: space-between;
}
.fifth-sec .nav-tabs li a{
  color: var(--blue);
  text-transform: uppercase;
  font-size: 15px;
  font-family: var(--play-font);
}
.fifth-sec .nav-tabs li a::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px dashed transparent;
}
.nav-tabs .nav-link.active::after{
  left: 5px;
  width: 25px;
  height: 25px;
  border: 1px dotted var(--color-red);
}
.nav-tabs .nav-link.active::before{
  left: -4px;
  width: 43px;
  height: 43px;
  background-color: var(--background-one);
  border-radius: 50%;
  /* border: 1px dashed var(--color-red); */
}
/* fifth section end */
/* Sixth section start */
.sixth-sec {
  padding: 5rem 0;
  background-color: #214b6c;
}
.sixth-sec h2 {
  color: var(--white);
}
.sixth-sec-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 41px;
  margin-top: 4rem;
}
.sixth-sec-card-all {
  border: 1px solid #ffffff59;
  width: 30%;
  padding: 23px;
  background-color: #1a4668;
  transition: 0.5s;
}
.sixth-sec-card-all:hover{
  transform: scale(1.02);
}
.sixth-sec-card-content {
  color: var(--white);
}
.sixth-sec-card-content h3 {
  font-size: 21px;
  font-family: var(--play-font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.sixth-sec-card-content p {
  font-size: 16px;
  font-weight: 400;
}
.sixth-sec-card-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: var(--color-red);
  margin-bottom: 1.5rem;
  padding: 14px;
}
.nav-tabs .nav-link {
  border: none;
}
.sixth-sec .heading-cration h2{
  position: relative;
}
.sixth-sec .heading-cration h2::before{
  content: "";
  width: 210px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background-color: var(--white);
  position: absolute;
}

/* Sixth section end */
/* Seventh section start  */
.seventh-sec {
  padding: 5rem 0;
}
.seventh-card-wrapper-content h3 img {
  width: 18px !important;
}
.seventh-card-wrapper-content {
  border: 1px solid #00000026;
  padding: 22px;
}
.seventh-card-wrapper-content h3 {
  display: flex;
  gap: 13px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Cabin" !important;
  color: var(--blue);
}
.seventh-card-wrapper-content p {
  font-size: 21px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--play-font);
  font-weight: 700;
  margin-top: 16px;
}
.seventh-card-wrapper-content p img {
  width: 17px !important;
}
.seventh-sec-slid {
  margin-top: 3rem;
}
.seventh-sec-slid .owl-nav {
  text-align: right;
  display: flex;
  gap: 5px;
  justify-content: end;
  margin-top: 3rem;
}
.seventh-sec-slid .owl-nav button:hover {
  border: 2px solid var(--blue) !important;
}
.seventh-sec-slid .owl-nav button {
  border: 2px solid #214b6c96 !important;
}
.seventh-sec-slid .owl-nav i {
  padding: 20px;
  color: var(--blue);
}


.heading-cration h2{
  position: relative;
  border: none;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
}
.heading-cration h2::before{
  content: "";
  width: 185px;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background-color: var(--blue);
  position: absolute;
}
.seventh-card-wrapper-content p a img{
  display: inline-block !important;
    position: relative !important;
    left: 4px !important;
    top: -2px !important;
}
/* Seventh section end */
/* Eighth section start */
.eighth-sec {
  padding: 4rem 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: var(--color-red);
}
.eighth-sec .heading-cration h2 {
  color: var(--white);
  border-bottom: none;
  padding-bottom: 0;
}
.eighth-sec .heading-cration h2::before{
  display: none;
}
.eighth-sec .heading-cration {
  text-align: left;
}
.eighth-sec .row {
  justify-content: right;
}
.form-wrapper {
  margin-top: 3rem;
}
.form-wrapper input {
  border: none;
  width: 100%;
  border-bottom: 1px solid var(--white);
  background-color: var(--color-red);
  color: var(--white);
  outline: none;
  padding-bottom: 15px;
}
.form-wrapper input::placeholder {
  color: rgb(255, 255, 255);
  opacity: 1; /* Firefox */
}

.form-wrapper input::-ms-input-placeholder {
  /* Edge 12-18 */
  color: rgb(255, 255, 255);
}
.form-wrapper .form .row {
  margin-bottom: 3rem;
}
.form-wrapper .form .row:nth-child(3) {
  margin-bottom: 5rem;
}
.form-wrapper a {
  background-color: var(--white);
  color: var(--blue);
}
.follow-num {
  padding: 1.2rem 0;
  background-color: #214b6c;
  margin-top: 2.5rem;
}
.follow-num-content {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 3rem;
}
.follow-num a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.follow-num a img {
  width: 27px;
}
.contact-img {
  position: absolute;
  bottom: -106px;
  width: 30rem;
  left: 0;
  z-index: 8;
}
.eighth-sec .container {
  position: relative;
}
.eighth-sec .sec-line {
  width: 119px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  float: right;
  margin-top: 29px;
  margin-right: 53px;
}
.form-wrapper .red-button:hover {
  background-color: var(--blue);
  color: var(--white);
}
/* Eighth section end */
/* footer start */
.footer-sec-top{
  padding: 65px 0;
}
.footer-sec-top ul{
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 0;
  gap: 25px;
}
.footer-sec-top ul li{
  list-style-type: none;
}
.footer-sec-top ul li a{
  color: var(--dark-blue);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-logo{
  width: 200px;
}
.footer-logo img{
  width: initial;
  padding-left: calc(var(--bs-gutter-x)* .5);
}
.footer-sec-btm ul li{
  list-style-type: none;
}
.footer-sec-btm ul li a{
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
}
.footer-sec-btm{
  border-top: 1px solid #00000038;
}
.footer-sec-btm ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 0;
  margin-bottom: 0;
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
  display: block !important;
}

/* footer end */


/* //////////////////////////////////////////////////////////////// about start //////////////////////////////////////////////////////////////////// */
main{
  padding-top: 100px;
}
/* banner start  */
.banner-sec{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.banner-sec h1{
  font-size: 53px;
  text-transform: uppercase;
  max-width: 70%;
  font-weight: 700;
  font-family: var(--play-font);
  color: var(--white);
  position: relative;
  z-index: 8;
}
.banner-sec::before{
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #102536a3;
  position: absolute;
}
/* banner end */
/* Company Overview start  */
.company-overview{
  padding: 80px 0;
  background-color: var(--background-one);
}
.company-overview-wrapper {
  margin-top: 55px;
}
.company-overview .heading-cration h2::before{
  background-color: var(--color-red);
}
.company-overview-img{
  position: relative;
  width: 90%;
}
.company-overview-img-inner{
  display: flex;
  width: 25%;
  height: 25%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--background-one);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.company-overview-content{
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.company-overview-content p{
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
}
.our-vision-sec{
  background-position: center;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Company Overview end  */
/* our vision start */
.our-vision-card{
  background-color: var(--blue);
  color: var(--white);
  padding: 60px;
  position: relative;
  margin-top: -368px;
  margin-bottom: 40px;
}
.our-vision-card h3{
  font-size: 3rem;
    color: var(--white);
    font-family: var(--play-font);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.our-vision-card h3::before{
  content: "";
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
}
.our-vision-card p{
  font-size: 16px;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 30px;
}
.our-vision-card p:last-child{
  margin-bottom: 0;
}
/* our vision end */

/* Management team start  */
.management-team{
  padding: 80px 0 130px 0;
  background-color: var(--background-one);
}
.management-team .heading-cration h2::before{
  background-color: var(--color-red);
}
.management-team-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}
.management-team-card{
  background-color: var(--white);
  padding: 25px;
  width: 48%;
  position: relative;
  transition: 0.5s;
}
.management-team-card:hover{
  transform: scale(1.02);
}
.third-sec-card:hover{
  transform: scale(1.02);
}
.management-team-top{
  display: flex;
  align-items: center;
  gap: 22px;
}
.management-team-top-img{
  width: 86px;
  border-radius: 50%;
  overflow: hidden;
}
.management-team-top-name{
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 50%;
  width: 100%;
}
.management-team-top-name h4{
  font-size: 21px;
  font-weight: 700;
  color: var(--color-red);
}
.management-team-top-name h5{
  font-size: 16px;
    font-weight: 400;
    color: var(--blue);
}
.management-team-btm{
  margin-top: 1.3rem;
}
.management-team-btm p{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--blue);
}
.management-team-btm a{
  font-size: 15px;
  color: var(--color-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.link-lnkdin{
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-red);
  position: absolute;
  right: 25px;
  top: 25px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Management team end  */


/* ///////////////////////////////////////////////// service ////////////////////////////////////////////////////////////////// */

/* Capex Evaluation start */
.capex-evaluation-sec{
  padding: 80px 0 130px 0;
  background-color: var(--background-one);
}
.capex-evaluation-wrapper{
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.capex-evaluation-wrapper .row{
  background-color: var(--white);
  padding: 30px;
}
.capex-evaluation-texts h2{
  font-size: 48px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--play-font);
  position: relative;
}
.capex-evaluation-texts h2::before{
  content: "";
  width: 35%;
  height: 100%;
  bottom: -15px;
  left: 0;
  position: absolute;
  border-bottom: 2px solid var(--color-red);
}
.capex-evaluation-texts ul li{
  font-size: 16px;
  font-weight: 400;
  list-style-type: none;
  background-image: url(../images/check.svg);
  color: var(--blue);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 24px;
  padding-left: 37px;
}
.capex-evaluation-texts ul{
  margin-top: 49px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
  padding-left: 0;
}
.capex-evaluation-texts p{
  font-size: 16px;
  font-weight: 400;
  list-style-type: none;
  color: var(--blue);
  margin-bottom: 20px;
}
.capex-evaluation-texts p:last-child{
  margin-bottom: 0;
}
.capex-evaluation-img{
  position: relative;
  padding-right: 30px;
}
.capex-evaluation-cnter-img{
  display: flex;
  width: 130px;
  height: 130px;
  position: absolute;
  bottom: 0;
  right: 30px;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.capex-evaluation-wrapper .row:nth-child(even){
  flex-direction: row-reverse;
}
.capex-evaluation-wrapper .row:nth-child(even) .capex-evaluation-img {
  padding-left: 30px;
  padding-right: 0;
  right: 0;
}
.capex-evaluation-wrapper .row:nth-child(even) .capex-evaluation-img .capex-evaluation-cnter-img{
  right: 0;
}
/* Capex Evaluation end */

/* ///////////////////////////////////////////////////////////////////////////////// Pre Bid Advisory ////////////////////////////////////////////////////////////////// */

/* Pre-Bid Services Executed start */

.services-executed-sec{
  margin-top: -50px;
  padding: 80px 0;
  background-color: white;
}
.services-executed-sec .heading-cration h2::before{
  background-color: var(--color-red);
}
.services-executed-sec .tables thead tr th{
  background-color: var(--blue);
  color: var(--white);
  font-weight: 400;
  padding: 12px 15px;
  text-transform: uppercase;
}
.services-executed-sec .tables{
  width: 100%;
}
.services-executed-sec .tables tbody tr{
  border: 1px solid transparent;
  border-bottom: transparent;
  border-left: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
}
.services-executed-sec .tables tbody tr td{
color: var(--blue);
font-weight: 400;
padding: 12px 15px;
}
.services-executed-sec .tables tbody tr:nth-child(even) {
  background-color: #F8FAFB;
}
.services-executed-sec .tables thead, .services-executed-sec .tables tbody{
  border: 1px solid var(--blue);
}
.services-executed-sec .tables thead tr th:first-child{
  width: 500px;
}
.services-executed-sec .tables thead tr th:last-child{
  width: 200px;
}
.capex-evaluation-sec.pre-bid {
  padding: 80px 0;
}
.services-executed-sec .tables tbody tr:hover{
  border: 1px solid var(--blue);
}
.table-wrapper{
  overflow-x: auto;
  margin-top: 40px;
  margin-bottom: 100px;
}
/* Pre-Bid Services Executed end */

/* //////////////////////////////////////////////////////////////////// Investors ////////////////////////////////////////////////////////// */
/* Ativir start  */
.ativir-ses{
  padding: 80px 0 0;
  background-color: var(--background-one);
}
.ativir-card-text h2{
  font-size: 3rem;
    color: var(--blue);
    font-family: var(--play-font);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 17px;
}
.ativir-card-text p{
  font-size: 16px;
  font-weight: 400;
  list-style-type: none;
  color: var(--blue);
  margin-top: 30px;
}
.ativir-card-img {
  padding: 46px;
}
.ativir-ses-card{    
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 25px;
  border: 1px solid #0000001f;
}
.ativir-card-text h2::before {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  border-bottom: 2px solid var(--color-red);
}
.ativir-card-text{
  width: 100%;
}
.ativir-bgLast{
  background-position: center;
  background-size: cover;
  margin-top: 80px;
}
.ativir-bgLast-text{
  width: 800px;
  padding: 35px 30px;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ativir-bgLast-text p{
  font-size: 16px;
  font-weight: 400;
  list-style-type: none;
  color: var(--white);
}
.ativir-bgLast-wrapper{
  position: relative;
  height: 600px;
}

/* Ativir end */
/* Success Story start */
.success-story-sec{
  padding: 80px 0;
}
.success-story-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}
.success-story-left{
  width: 50%;
  padding-right: 85px;
}
.success-story-right{
  width: 50%;
  padding: 0 50px;
}
.success-story-left h2{
  font-size: 3rem;
  color: var(--blue);
  font-family: var(--play-font);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 17px;
}
.success-story-left h3{
  font-size: 21px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 25px;
  line-height: 39px;
}
.success-story-left h2::before{
  content: "";
  width: 185px;
  height: 2px;
  left: 0;
  bottom: 2px;
  background-color: var(--color-red);
  position: absolute;
}
.success-story-content p{
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
}
.success-story-content{
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.project-value-wrapper{
  display: flex;
  gap: 25px;
  margin-top: 25px;
}
.project-value{
  padding: 22px;
}
.project-value-wrapper .project-value:first-child{
  background-color: var(--blue);
  width: 40%;
}
.project-value-wrapper .project-value:last-child{
  background-color: var(--color-red);
  width: 60%;
}
.project-value h4{
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: "Cabin" !important;
}
.project-value h5{
  font-size: 16px;
  color: var(--white);
  font-family: "Cabin" !important;
}
/* Success Story end */

/* Partnership & Collaborations start */
.partnership-collaborations{
  padding: 180px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}
.partnership-collaborations::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #00000085;
}
.partnership-collaborations-wrapper h2{
  font-size: 3rem;
  color: var(--white);
  font-family: var(--play-font);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 17px;
}
.partnership-collaborations-wrapper h2::before{
  content: "";
    width: 185px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background-color: var(--white);
    position: absolute;
}
.partnership-collaborations-wrapper p{
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 25px;
  font-weight: 400;
  z-index: 1;
  position: relative;
  color: var(--white);
}
.partnership-collaborations-wrapper a{
  position: relative;
  z-index: 1;
}
/* Partnership & Collaborations end */


/* /////////////////////////////////////////////////////////////////// Our clients ///////////////////////////////////////////////////////////////////// */
.brand-sec{
  padding: 80px 0 100px 0;
}
.brand-sec-erapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.brand-sec-logos{
  border: 1px solid #1b2f4342;
  display: flex;
  border-radius: 10px;
  width: 247px;
  height: 90px;
  padding: 10px 72px;
  cursor: pointer;
  transition: 0.2s;
}
.brand-sec-logos:hover{
 border-color: var(--color-red);
}
/* ////////////////////////////////////////////////////////////////////// Career //////////////////////////////////////////////// */

/* Life at Transplex start */
.life-transplex-sec{
  padding: 80px 0;
}
.life-transplex-heading{
  display: flex;
  justify-content: center;
}
.life-transplex-left{
  margin-top: 15px;
}
.life-transplex-left, .life-transplex-right{
  width: 50%;
}
.life-transplex-left h2{
  font-size: 48px;
  color: var(--blue);
  font-family: var(--play-font);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.life-transplex-left h2::before{
  content: "";
    position: absolute;
    width: 65%;
    height: 100%;
    top: 18px;
    left: 0;
    border-bottom: 1px solid var(--color-red);
}
.life-transplex-right p{
  font-size: 16px;
  margin-bottom: 1.4rem;
  font-weight: 400;
  color: var(--blue);
}
.life-transplex-images-all{
  border-radius: 36px;
  overflow: hidden;
}
.life-transplex-images{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 9px;
}

.life-transplex-images-all:nth-child(1) {
  flex: 2 1 calc(15% - 26px);
  box-sizing: border-box;
  margin: 10px;
}
.life-transplex-images-all:nth-child(2) {
  flex: 1 1 calc(28% - 20px);
  box-sizing: border-box;
  margin: 10px;
}
.life-transplex-images-all:nth-child(3) {
  flex: 1 1 calc(28% - 20px);
  box-sizing: border-box;
  margin: 10px;
}
.life-transplex-images-all:nth-child(4) {
  flex: 1 1 calc(28% - 20px);
  box-sizing: border-box;
  margin: 10px;
}
.life-transplex-images-all:nth-child(5) {
  flex: 1 1 calc(28% - 20px);
  box-sizing: border-box;
  margin: 10px;
}
.life-transplex-images-all:nth-child(6) {
  flex: 2 1 calc(15% - 26px);
  box-sizing: border-box;
  margin: 10px;
}
.life-transplex-images img {
  width: 100%;
  height: 351px;
  object-fit: cover;
  transition: 0.5s;
}
.life-transplex-images img:hover{
  transform: scale(1.3);
  transition: all .5s;
  cursor: pointer;
}
/* Life at Transplex end */
/* Advantages of Choosing Transplex start */
.advantages-choosing-sec{
  padding: 80px 0;
  background-color: var(--blue);
}
.advantages-choosing-sec .heading-cration h2{
  color: var(--white);
}
.advantages-choosing-sec .heading-cration h2::before{
  background-color: var(--white);
}
.advantages-choosing-all{
  width: 48%;
  background-color: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: 0.5s;
}
.advantages-choosing-all:hover{
  transform: scale(1.02);
}
.advantages-choosing-left{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 20px;
  background-color: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.advantages-choosing-img{
  display: flex;
  align-items: center;
  gap: 25px;
}
.advantages-choosing-right{
  max-width: 75%;
  width: 100%;
}
.advantages-choosing-right h3{
  font-size: 32px;
  color: var(--blue);
  font-family: var(--play-font);
  text-transform: uppercase;
  font-weight: 700;
}
.advantages-choosing-text p{
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
}
.advantages-choosing-card{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}
/* Advantages of Choosing Transplex end */
/* Job Openings start */
.job-openings-sec{
  padding: 80px 0 100px 0;
  background-color: var(--background-one);
}
.job-openings-sec .heading-cration h2::before {
  background-color: var(--color-red);
}
.job-openings-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 25px;
  margin-top: 50px;
}
.job-openings-card{
  background-color: var(--white);
  width: 32%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.job-openings-card h3{
  font-size: 21px;
  font-weight: 700;
  font-family: var(--play-font);
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 30px;
}
.job-openings-table{
  display: flex;
  background-color: #FBFBFB;
}
.job-openings-table:nth-child(even) {
  background-color: #F4F4F4;
}
.job-openings-table-left{
  width: 50%;
  padding: 17px;
}
.job-openings-table-right{
  width: 50%;
  padding: 17px;
}
.job-openings-table h4{
  font-size: 16px;
  font-weight: 400;
  color: var(--blue);
  font-family: "Cabin" !important;
}
.job-openings-card p{
  font-size: 16px;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 40px;
  color: var(--blue);
}

/* Job Openings end */

/* ///////////////////////////////////////////////////////// BLOG ////////////////////////////////////////////////////////////////////////////////////////// */


.blog-start{
  padding: 80px 0 130px 0;
}
.blog-start .blog-cards-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 35px;
}
.blog-start .seventh-card-wrapper {
  width: 31%;
}
.pagination-blog{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 60px;
}
.pagination-blog li{
  list-style-type: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1c3c5545;
  cursor: pointer;
  transition: 0.5s
}
.pagination-blog li:hover{
  transition: 0.5s;
  background-color: var(--color-red);
}
.pagination-blog li a{
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--play-font);
}
.pagination-blog li:hover a{
  color: var(--white);
}
.pagination-blog ul{
  margin: 0;
  padding: 0;
  display: flex;
  gap: 17px;
}
.pagination-blog-icon{
  width: 10px;
}

/* /////////////////////////////////////////////////////////////////////////// Contact us //////////////////////////////////////////// */

/* Lets get in touch start */
.lets-get-touch-sec{
  padding: 80px 0;
  background-color: var(--blue);
}
.lets-get-form-wrapper{
  margin-top: 80px;
}
.lets-get-touch-sec h3{
  color: var(--white);
}
.lets-get-touch-sec .third-line{
  background-color: var(--white);
}
.lets-get-touch-sec .form-wrapper {
  margin-top: 0;
}
.lets-get-touch-sec .form-wrapper input {
  background-color: var(--blue);
}
.lets-get-touch-sec .form-wrapper input.red-button{
  background-color: var(--white);
}
.lets-get-touch-sec .form-wrapper .red-button:hover {
  background-color: var(--dark-blue);
}
.lets-get-contact-left p{
  display: flex;
  align-items: center;
}
.lets-get-contact-left .lets-get-touch-details h4{
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 15px;
}
.lets-get-contact-left p span{
  width: 20px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -3px;
  margin-right: 7px;
}
.lets-get-contact-left p a{
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.lets-get-contact-left{
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
.lets-get-touch-left{
  padding-right: 30px;
}
/* Lets get in touch end */
/* map section start */
.map-sec{
  padding: 30px 0 0 0;
  background-color: var(--color-red);
}
.map-wrapper iframe{
  width: 100%;
  height: 500px;
  border-radius: 15px;
  margin-bottom: 40px;
}
.information-wrap{
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  padding: 21px 38px;
  transition: 0.5s all ease-in-out;
}
.information-wrap:hover{
  background-color: #fff;
}
.information-wrap:hover h4,
.information-wrap:hover p{
  color: #0E273A;
}
.information-wrap:hover img{
  filter: invert(0);
}
.transplex-address img{
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: invert(1) brightness(100);
   transition: 0.2s all ease-in-out;
}
.transplex-address h4{
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
  padding: 20px 0;
  color: #fff;
   transition: 0.5s all ease-in-out;
}
.transplex-address p{
  font-size: 16px;
  color: #fff;
   transition: 0.5s all ease-in-out;
}
/* map section end */

.form-wrapper .red-button{
  display: inline-block;
    border-radius: 50px;
    line-height: 16px;
    /* padding: 15px 0 12px 0; */
    font-weight: 500;
    transition: 0.5s;
    background-color: var(--white);
    color: var(--blue);
    border: none;
}
.form-wrapper p:last-child{
  width: 100%;
}
.form-wrapper p{
  display: inline-block;
}
.dropdown{
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.dropdown::before{
  content: "";
  left: 0;
  top: -1px;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../images/down.svg);
  background-repeat: no-repeat;
  background-position: center right;
  transition: transform 0.3s ease;
  cursor:pointer;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffffff !important;
  color: #fff;
}
.wpcf7-not-valid-tip {
  color: #ffffff !important;
}
.seventh-card-wrapper-img{
  overflow: hidden;
}
.seventh-card-wrapper-img img{
  object-fit: cover;
}
.custompager{
  margin: 0;
  padding: 0;
  display: flex;
  gap: 17px;
}
.custompager .page-numbers{
  list-style-type: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1c3c5545;
  cursor: pointer;
  transition: 0.5s;
  color: var(--black);
}
.custompager .page-numbers:hover{
  transition: 0.5s;
  background-color: var(--color-red);
  color: var(--white);
}
.custompager .next.page-numbers{
  background-image: url(../images/right.svg) !important;
  background-repeat: no-repeat;
  background-position: left;
  color: transparent;
  border: none;
}
.custompager .prev.page-numbers{
  background-image: url(../images/left.svg) !important;
  background-repeat: no-repeat;
  background-position: right;
  color: transparent;
  border: none;
}
.custompager .next.page-numbers:hover, .custompager .prev.page-numbers:hover{
  background-color: initial;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-numbers.current{
  transition: 0.5s;
  background-color: var(--color-red);
  color: var(--white);
}

.fourth-sec-slider .owl-prev{
  margin-right: 10px;
}
.fourth-sec-slider .owl-next{
  margin-left: 10px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--white) !important;
  color: var(--white) !important;
}







.dropdown.rotate::before {
  background-image: url(../images/up.png) !important;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 12px;
  margin-top: 15px;
}

.dropdown-menu {
  display: none; /* Initially hidden */
  position: absolute; /* Position dropdown items */
  /* Additional styles for your dropdown menu */
}

.image-post{
	width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 140px;
    margin-bottom: 40px;
}
.icon-phones img{
  width: 27px;
}
.icon-phones{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--white);
}



#animated-heading {
  opacity: 0; /* Start hidden */
  transform: translateY(-20px); /* Start slightly above */
  animation: fadeIn 2s forwards; /* Animation */
}

@keyframes fadeIn {
  to {
      opacity: 1; /* End visible */
      transform: translateY(0); /* Move to original position */
  }
}

.banner-sec p{
  font-size: 19px;
  /* text-transform: capitalize; */
  font-weight: 500;
  margin-top: 20px;
  color: var(--white);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 70%;
}
.ativir-bgLast-text h2{
  font-size: 32px;
  color: var(--white);
  font-family: var(--play-font);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}



.dropdown.nav-item.active .nav-link::after {
  bottom: -28px;
  width: 115%;
}

.navbar-expand-lg .navbar-nav .dropdown .nav-link:hover::before {
  content: "";
  bottom: -28px;
  left: 0;
  width: 115%;
  height: 4px;
  border-radius: 50px;
  position: absolute;
  background-color: var(--dark-red);
}

/* //////////////////////Privacy Policy//////////////////// */

.content-body{
  margin-top: 20px;
}
.content-body h2{
  font-size: 27px;
  color: var(--blue);
  font-family: var(--play-font);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}
.content-body p{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--blue);
}
.privacy-policy{
  margin-top: 30px;
}



.wpcf7 form .wpcf7-response-output {
  bottom: -40px;
  position: absolute;
}
/* ///// */
.eighth-sec .wpcf7 form .wpcf7-response-output {
    bottom: -20px !important;
    position: absolute !important;
    margin: 0 !important;
}
.eighth-sec form{
	margin-bottom: 46px !important; 
}
.lets-get-form-wrapper .wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
}
.lets-get-form-wrapper .wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    margin-top: 20px !important;
}
/* ///// */
.dropdown-menu .current_page_item.active{
    background: var(--color-red);
}
.dropdown-menu .current_page_item.active a{
	color: var(--white) !important;
}

.manage-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;  
        overflow: hidden;
        transition: max-height 0.3s ease;
	    margin-bottom: 10px;
}


.manage-text.expanded {
    -webkit-line-clamp: unset; /* Show all lines when expanded */
}

.management-team-btm ul li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--blue);
}

.company-overview .capex-evaluation-texts ul {
  margin-top: 0;
  margin-bottom: 0;
}
.company-overview-content h4{
  font-size: 25px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--play-font);
    position: relative;
}
.wpcf7 form .wpcf7-response-output {
  position: absolute;
  bottom: initial;
}
.wpcf7 form .wpcf7-response-output {
  margin: -0.5em 0.5em 1em !important;
}
.job-form-submit .wpcf7-not-valid-tip{
color: var(--color-red) !important;
font-size: 12px;
}
input.job-head-form {
  width: 100%;
  font-size: 15px;
  height: 39px;
  padding-left: 10px;
}
input.job-head-form:focus{
  border-color: var(--blue);
}
.job-form-submit .wpcf7-form p{
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  margin: 20px 0;
}
.form-modal-submit input{
  /* width: 50%; */
  height: 43px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 17px;
}
.wpcf7-spinner{
  display: none;
}
.job_head{
  font-size: 19px;
    font-weight: 700;
    font-family: var(--play-font);
    text-transform: uppercase;
    color: var(--blue);
}
.map-wrapper{
  padding: 0 325px;
  margin: 64px 0;
}
.job-form-submit .wpcf7 form.invalid .wpcf7-response-output, .job-form-submit .wpcf7 form.unaccepted .wpcf7-response-output, .job-form-submit .wpcf7 form.payment-required .wpcf7-response-output{
  color: var(--color-red);
  font-size: 12px;
  padding-bottom: 20px;
  padding-left: 0;
}
.job-form-submit .wpcf7 form.sent .wpcf7-response-output {
  color: var(--blue) !important;
  font-size: 14px !important;
  padding-bottom: 30px !important;
}
.investors-sec .success-story-left {
  width: 100%;
}
.investors-sec .company-overview-content {
  margin-top: 30px;
}
.investors-sec .capex-evaluation-texts p {
  margin-bottom: 0;
}
.investors-sec .capex-evaluation-texts ul {
  margin-top: 0;
  margin-bottom: 0;
}
.investors-sec .success-story-left {
  padding-right: 0;
}
.success-story-wrapper.investors-sec {
  margin-bottom: 35px;
}
.success-story-sec .success-story-right {
  width: 100%;
  padding: 0 100px;
}
.seventh-card-wrapper p a{
	color: var(--blue);
}